diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..2738918 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,11 @@ +FROM mcr.microsoft.com/devcontainers/anaconda:1-3 + +# Copy environment.yml (if found) to a temp location so we update the environment. Also +# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists. +COPY environment.yml* .devcontainer/noop.txt /tmp/conda-tmp/ +RUN if [ -f "/tmp/conda-tmp/environment.yml" ]; then umask 0002 && /opt/conda/bin/conda env update -n base -f /tmp/conda-tmp/environment.yml; fi \ + && rm -rf /tmp/conda-tmp + +# [Optional] Uncomment this section to install additional OS packages. +# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ +# && apt-get -y install --no-install-recommends diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..122c0f0 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,31 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/debian +{ + "name": "Debian", + "build": { + "context": "..", + "dockerfile": "Dockerfile" + }, + + "customizations": { + "vscode": { + "extensions": [ + "ms-dotnettools.vscode-dotnet-runtime", + "svelte.svelte-vscode", + "syler.sass-indented", + "dbaeumer.vscode-eslint", + "ms-dotnettools.csharp" + ], + "settings": { + "python.defaultInterpreterPath": "/opt/conda/bin/python", + "dotnet.dotnetPath": "/opt/conda/lib/dotnet/", + "omnisharp.dotNetCliPaths": [ + "/opt/conda/lib/dotnet/dotnet" + ] + } + } + }, + + "postCreateCommand": "bash -i -c 'conda init'" + +} \ No newline at end of file diff --git a/.devcontainer/noop.txt b/.devcontainer/noop.txt new file mode 100644 index 0000000..abee195 --- /dev/null +++ b/.devcontainer/noop.txt @@ -0,0 +1,3 @@ +This file is copied into the container along with environment.yml* from the +parent folder. This is done to prevent the Dockerfile COPY instruction from +failing if no environment.yml is found. \ No newline at end of file diff --git a/.gitignore b/.gitignore index 21a3504..c13d5e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ - -# Created by https://www.toptal.com/developers/gitignore/api/vscode,aspnetcore -# Edit at https://www.toptal.com/developers/gitignore?templates=vscode,aspnetcore +# Created by https://www.toptal.com/developers/gitignore/api/aspnetcore,visualstudiocode,dotnetcore,python,database,node +# Edit at https://www.toptal.com/developers/gitignore?templates=aspnetcore,visualstudiocode,dotnetcore,python,database,node ### ASPNETCore ### ## Ignore Visual Studio temporary files, build results, and @@ -30,7 +29,7 @@ bld/ # Visual Studio 2015 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot -#wwwroot/ +wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ @@ -272,7 +271,287 @@ __pycache__/ # Cake - Uncomment if you are using it # tools/ -### vscode ### +### Database ### +*.accdb +*.db +*.dbf +*.mdb +*.sqlite3 + +### DotnetCore ### +# .NET Core build folders +bin/ +obj/ + +# Common node modules locations +/node_modules +/wwwroot/node_modules + +### Node ### +# Logs +logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test +.env.production + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### Node Patch ### +# Serverless Webpack directories +.webpack/ + +# Optional stylelint cache +.stylelintcache + +# SvelteKit build / generate output +.svelte-kit + +### Python ### +# Byte-compiled / optimized / DLL files +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +### VisualStudioCode ### .vscode/* !.vscode/settings.json !.vscode/tasks.json @@ -280,4 +559,20 @@ __pycache__/ !.vscode/extensions.json *.code-workspace -# End of https://www.toptal.com/developers/gitignore/api/vscode,aspnetcore \ No newline at end of file +# Local History for Visual Studio Code +.history/ + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +# Support for Project snippet scope +!.vscode/*.code-snippets + +# End of https://www.toptal.com/developers/gitignore/api/aspnetcore,visualstudiocode,dotnetcore,python,database,node + +# Props +shop-data +Props/shops +output diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..e69de29 diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..a0b88e1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + "version": "0.2.0", + "configurations": [ + { + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/Props.Shop/Adafruit.Tests/bin/Debug/net8.0/Props.Shop.Adafruit.Tests.dll", + "args": [], + "cwd": "${workspaceFolder}/Props.Shop/Adafruit.Tests", + // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6d74b7c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.defaultInterpreterPath": "/opt/conda/bin/python", + "dotnet.dotnetPath": "/opt/conda/lib/dotnet/", + "omnisharp.dotNetCliPaths": [ + "/opt/conda/lib/dotnet/dotnet" + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..3270acc --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/Props.Shop/Props.Shop.sln", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary;ForceNoAlign" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/Props.Shop/Props.Shop.sln", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary;ForceNoAlign" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/Props.Shop/Props.Shop.sln" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/.woodpecker.yaml b/.woodpecker.yaml new file mode 100644 index 0000000..97ec5c2 --- /dev/null +++ b/.woodpecker.yaml @@ -0,0 +1,9 @@ +steps: + - name: build + image: debian + commands: + - echo "This is the build step" + - name: a-test-step + image: debian + commands: + - echo "Testing.." \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..29de938 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,56 @@ +pipeline { + agent { + kubernetes { + cloud 'Reslate Systems' + defaultContainer 'conda' + } + } + environment { + DOTNET_SYSTEM_GLOBALIZATION_INVARIANT = "1" + } + stages { + stage("Install") { + steps { + sh 'conda update conda -y -q' + sh 'conda env update -n base --file environment.yml' + sh 'conda run -n base dotnet restore props.sln' + sh 'npm install --prefix ./Props' + } + } + stage("Test Props.Shop") { + steps { + sh returnStatus: true, script: 'conda run -n base dotnet test --logger xunit --no-restore Props.Shop/**/*.Tests.csproj' + xunit([xUnitDotNet(excludesPattern: '', pattern: 'Props.Shop/*.Tests/TestResults/*.xml', stopProcessingIfError: true)]) + } + } + stage("Publish Props.Shop") { + steps { + sh '''#!/bin/bash + for file in Props.Shop/**/*.csproj + do + conda run -n base dotnet publish --configuration Release --output output/shop-modules $file + done + ''' + fingerprint 'output/shop-modules/**/Props.Shop.*' + sh 'mkdir -p ./Props/shops/' + sh 'cp ./output/shop-modules/*.dll ./output/shop-modules/*.deps.json ./Props/shops/.' + } + } + stage("Test Props") { + steps { + sh returnStatus: true, script: 'conda run -n base dotnet test --logger xunit --no-restore Props.Tests/Props.Tests.csproj' + xunit([xUnitDotNet(excludesPattern: '', pattern: 'Props.Tests/TestResults/*.xml', stopProcessingIfError: true)]) + } + } + stage("Publish Props") { + steps { + sh 'conda run -n base dotnet publish --configuration Release --output output/props/props-linux-x64 --runtime linux-x64 --self-contained Props' + sh 'conda run -n base dotnet publish --configuration Release --output output/props/props-win-x64 --runtime win-x64 --self-contained Props' + fingerprint 'output/props/**/Props*' + sh 'conda run -n base tar -czf output/props-linux-x64.tar.gz output/props/props-linux-x64' + sh 'conda run -n base zip -r output/props-win-x64.zip output/props/props-win-x64' + archiveArtifacts artifacts: 'output/*.tar.gz,output/*.zip', followSymlinks: false + } + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit.Tests/AdafruitShopTest.cs b/Props.Shop/Adafruit.Tests/AdafruitShopTest.cs new file mode 100644 index 0000000..e6c72eb --- /dev/null +++ b/Props.Shop/Adafruit.Tests/AdafruitShopTest.cs @@ -0,0 +1,21 @@ +using System.Linq; +using Microsoft.Extensions.Logging; +using Props.Shop.Framework; +using Xunit; + +namespace Props.Shop.Adafruit.Tests +{ + public class AdafruitShopTest + { + [Fact] + public async void TestSearch() + { + AdafruitShop mockAdafruitShop = new AdafruitShop(); + await mockAdafruitShop.Initialize(null, LoggerFactory.Create(builder => + { + builder.AddXUnit(); + })); + Assert.NotEmpty(mockAdafruitShop.Search("raspberry pi", new Filters()).ToEnumerable()); + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit.Tests/Api/FakeProductListingManager.cs b/Props.Shop/Adafruit.Tests/Api/FakeProductListingManager.cs new file mode 100644 index 0000000..39bf71d --- /dev/null +++ b/Props.Shop/Adafruit.Tests/Api/FakeProductListingManager.cs @@ -0,0 +1,89 @@ +using System; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.IO; +using System.Threading; +using System.Threading.Tasks; +using Props.Shop.Adafruit.Api; +using Props.Shop.Framework; + +namespace Props.Shop.Adafruit.Tests.Api +{ + public class FakeProductListingManager : IProductListingManager + { + private bool disposedValue; + public DateTime? LastDownload { get; private set; } + private ProductListingsParser parser = new ProductListingsParser(); + private readonly ConcurrentDictionary activeProductListingUrls = new ConcurrentDictionary(); + + + public Task>> ProductListings { get; private set; } + + public async Task GetProductListingFromIdentifier(string url) + { + if (disposedValue) throw new ObjectDisposedException("ProductListingManager"); + await ProductListings; + return activeProductListingUrls[url]; + } + + public void RefreshProductListings() + { + if (disposedValue) throw new ObjectDisposedException("ProductListingManager"); + if ((LastDownload != null && DateTime.UtcNow - LastDownload <= TimeSpan.FromMilliseconds(5 * 60 * 1000)) || (ProductListings != null && !ProductListings.IsCompleted)) return; + ProductListings = DownloadListings(); + } + + private Task>> DownloadListings() + { + if (disposedValue) throw new ObjectDisposedException("ProductListingManager"); + LastDownload = DateTime.UtcNow; + using (Stream stream = File.OpenRead("./Assets/products.json")) + { + parser.BuildProductListings(stream); + + } + Dictionary> listingNames = new Dictionary>(); + activeProductListingUrls.Clear(); + foreach (ProductListing product in parser.ProductListings) + { + activeProductListingUrls.TryAdd(product.URL, product); + IList sameProducts = listingNames.GetValueOrDefault(product.Name); + if (sameProducts == null) + { + sameProducts = new List(); + listingNames.Add(product.Name, sameProducts); + } + + sameProducts.Add(product); + } + return Task.FromResult>>(listingNames); + } + + public void StartUpdateTimer(int delay = 300000, int period = 300000) + { + RefreshProductListings(); + } + + public void StopUpdateTimer() + { + } + + protected virtual void Dispose(bool disposing) + { + if (!disposedValue) + { + if (disposing) + { + } + + disposedValue = true; + } + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit.Tests/Api/ListingParserTest.cs b/Props.Shop/Adafruit.Tests/Api/ListingParserTest.cs new file mode 100644 index 0000000..108bdfe --- /dev/null +++ b/Props.Shop/Adafruit.Tests/Api/ListingParserTest.cs @@ -0,0 +1,21 @@ +using System; +using System.IO; +using Props.Shop.Adafruit.Api; +using Xunit; + +namespace Props.Shop.Adafruit.Tests +{ + public class ListingParserTest + { + [Fact] + public void TestParsing() + { + ProductListingsParser mockParser = new ProductListingsParser(); + using (Stream stream = File.OpenRead("./Assets/products.json")) + { + mockParser.BuildProductListings(stream); + } + Assert.NotEmpty(mockParser.ProductListings); + } + } +} diff --git a/Props.Shop/Adafruit.Tests/Api/LiveProductListingManagerTest.cs b/Props.Shop/Adafruit.Tests/Api/LiveProductListingManagerTest.cs new file mode 100644 index 0000000..b0c8a75 --- /dev/null +++ b/Props.Shop/Adafruit.Tests/Api/LiveProductListingManagerTest.cs @@ -0,0 +1,47 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging; +using Props.Shop.Adafruit.Api; +using Props.Shop.Adafruit.Persistence; +using Props.Shop.Framework; +using Xunit; + +namespace Props.Shop.Adafruit.Tests.Api +{ + public class LiveProductListingManagerTest + { + [Fact] + public async Task CacheTest() + { + // TODO: Improve testability of caching system, IProductListingManager, and implement here. + //Given + ProductListingsParser parser = new ProductListingsParser(); + using (Stream stream = File.OpenRead("./Assets/products.json")) + { + parser.BuildProductListings(stream); + } + Dictionary> listingNames = new Dictionary>(); + foreach (ProductListing product in parser.ProductListings) + { + IList sameProducts = listingNames.GetValueOrDefault(product.Name); + if (sameProducts == null) + { + sameProducts = new List(); + listingNames.Add(product.Name, sameProducts); + } + + sameProducts.Add(product); + } + ProductListingCacheData cache = new ProductListingCacheData(listingNames); + await Task.Delay(500); + LiveProductListingManager mockLiveProductListingManager = new LiveProductListingManager(null, new Logger(LoggerFactory.Create((builder) => builder.AddXUnit())), cache); + //When + mockLiveProductListingManager.RefreshProductListings(); + //Then + Assert.True(cache.LastUpdatedUtc.Equals(mockLiveProductListingManager.LastDownload)); + Assert.NotEmpty(await mockLiveProductListingManager.ProductListings); + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit.Tests/Api/SearchManagerTest.cs b/Props.Shop/Adafruit.Tests/Api/SearchManagerTest.cs new file mode 100644 index 0000000..c7b1399 --- /dev/null +++ b/Props.Shop/Adafruit.Tests/Api/SearchManagerTest.cs @@ -0,0 +1,21 @@ +using System.Linq; +using System.Threading.Tasks; +using Props.Shop.Adafruit.Api; +using Xunit; + +namespace Props.Shop.Adafruit.Tests.Api +{ + public class SearchManagerTest + { + [Fact] + public void SearchTest() + { + FakeProductListingManager stubProductListingManager = new FakeProductListingManager(); + SearchManager searchManager = new SearchManager(stubProductListingManager); + stubProductListingManager.RefreshProductListings(); + searchManager.Similarity = 0.8f; + Assert.NotEmpty(searchManager.Search("Raspberry Pi").ToEnumerable()); + searchManager.Dispose(); + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit.Tests/Assets/products.json b/Props.Shop/Adafruit.Tests/Assets/products.json new file mode 100644 index 0000000..50de80a --- /dev/null +++ b/Props.Shop/Adafruit.Tests/Assets/products.json @@ -0,0 +1,158548 @@ +[ + { + "product_id": "1", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1-01.jpg", + "image_is_video": "0", + "product_name": "MiniPOV 2 Kit", + "product_model": "V 2.1a", + "product_mpn": "ADA1", + "product_master_category": "5", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "11.88", + "discounted_percent": "5", + "show_qty": "5-9", + "min_qty": 5 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "20", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/20-00.jpg", + "image_is_video": "0", + "product_name": "MiniPOV 3 Kit", + "product_model": "V 3.0", + "product_mpn": "ADA20", + "product_master_category": "5", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "40.3", + "product_url": "https:\/\/www.adafruit.com\/product\/20", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "16.63", + "discounted_percent": "5", + "show_qty": "5-9", + "min_qty": 5 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1776", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1776-05.jpg", + "image_is_video": "0", + "product_name": "MiniPOV 4 Kit - DIY Full-Color POV and Light Painting Kit", + "product_model": "v4.0", + "product_mpn": "ADA1776", + "product_master_category": "5", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "45.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1776", + "product_stock": "10", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "23.70", + "discounted_percent": "5", + "show_qty": "5-9", + "min_qty": 5 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "534", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/534-00.jpg", + "image_is_video": "0", + "product_name": "SpokePOV Kit", + "product_model": "v1.1 - Yellow", + "product_mpn": "ADA534", + "product_master_category": "6", + "product_manufacturer": "Adafruit", + "product_price": "37.50", + "product_shipping_weight": "88.6", + "product_url": "https:\/\/www.adafruit.com\/product\/534", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "5", + "discount_pricing": [ + { + "discounted_price": "37.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "33.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "535", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/535-00.jpg", + "image_is_video": "0", + "product_name": "SpokePOV Kit", + "product_model": "v1.1 - Blue", + "product_mpn": "ADA535", + "product_master_category": "6", + "product_manufacturer": "Adafruit", + "product_price": "45.00", + "product_shipping_weight": "90.2", + "product_url": "https:\/\/www.adafruit.com\/product\/535", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "5", + "discount_pricing": [ + { + "discounted_price": "45.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "36.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "541", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/541-00.jpg", + "image_is_video": "0", + "product_name": "Triple SpokePOV Kit + Dongle + 2 Magnets", + "product_model": "v1.1 - Yellow, USB", + "product_mpn": "ADA541", + "product_master_category": "6", + "product_manufacturer": "Adafruit", + "product_price": "113.00", + "product_shipping_weight": "328.1", + "product_url": "https:\/\/www.adafruit.com\/product\/541", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "19", + "discount_pricing": [ + { + "discounted_price": "113.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "101.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "90.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "533", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/533-00.jpg", + "image_is_video": "0", + "product_name": "SpokePOV Kit", + "product_model": "v1.1 - Red", + "product_mpn": "ADA533", + "product_master_category": "6", + "product_manufacturer": "Adafruit", + "product_price": "37.50", + "product_shipping_weight": "91.0", + "product_url": "https:\/\/www.adafruit.com\/product\/533", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "5", + "discount_pricing": [ + { + "discounted_price": "37.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "33.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "542", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/542-00.jpg", + "image_is_video": "0", + "product_name": "Triple SpokePOV Kit + Dongle + 2 Magnets", + "product_model": "v1.1 - Blue, USB", + "product_mpn": "ADA542", + "product_master_category": "6", + "product_manufacturer": "Adafruit", + "product_price": "133.00", + "product_shipping_weight": "333.1", + "product_url": "https:\/\/www.adafruit.com\/product\/542", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "19", + "discount_pricing": [ + { + "discounted_price": "133.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "119.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "106.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "540", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/540-00.jpg", + "image_is_video": "0", + "product_name": "Triple SpokePOV Kit + Dongle + 2 Magnets", + "product_model": "v1.1 - Red, USB", + "product_mpn": "ADA540", + "product_master_category": "6", + "product_manufacturer": "Adafruit", + "product_price": "113.00", + "product_shipping_weight": "335.3", + "product_url": "https:\/\/www.adafruit.com\/product\/540", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "19", + "discount_pricing": [ + { + "discounted_price": "113.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "101.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "90.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3804", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3804-05.jpg", + "image_is_video": "0", + "product_name": "Large Clear Practice Padlock", + "product_model": "", + "product_mpn": "ADA3804", + "product_master_category": "8", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "135.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3804", + "product_stock": "91", + "products_hts": "8301.10.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "14", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/14-00.jpg", + "image_is_video": "0", + "product_name": "MintyBoost Kit", + "product_model": "v3.0", + "product_mpn": "ADA14", + "product_master_category": "10", + "product_manufacturer": "Adafruit", + "product_price": "19.50", + "product_shipping_weight": "18.9", + "product_url": "https:\/\/www.adafruit.com\/product\/14", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.50", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "18.50", + "discounted_percent": "5", + "show_qty": "5-9", + "min_qty": 5 + }, + { + "discounted_price": "17.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "97", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/97-01.jpg", + "image_is_video": "0", + "product_name": "Altoids mints sized tin", + "product_model": "", + "product_mpn": "ADA97", + "product_master_category": "10", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "55.0", + "product_url": "https:\/\/www.adafruit.com\/product\/97", + "product_stock": "in stock", + "products_hts": "7326.90.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "16", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/16-02.jpg", + "image_is_video": "0", + "product_name": "Altoids Gum sized tin", + "product_model": "", + "product_mpn": "ADA16", + "product_master_category": "10", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "45.0", + "product_url": "https:\/\/www.adafruit.com\/product\/16", + "product_stock": "in stock", + "products_hts": "7326.90.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "30", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/30-00.jpg", + "image_is_video": "0", + "product_name": "$20 Gift certificate", + "product_model": "", + "product_mpn": "ADA30", + "product_master_category": "14", + "product_manufacturer": null, + "product_price": "20.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/30", + "product_stock": "0", + "products_hts": "0", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3331", + "discount_pricing": [] + }, + { + "product_id": "31", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/31-00.jpg", + "image_is_video": "0", + "product_name": "$50 Gift certificate", + "product_model": "", + "product_mpn": "ADA31", + "product_master_category": "14", + "product_manufacturer": null, + "product_price": "50.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/31", + "product_stock": "0", + "products_hts": "0", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3331", + "discount_pricing": [] + }, + { + "product_id": "32", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/32-00.jpg", + "image_is_video": "0", + "product_name": "$100 Gift certificate", + "product_model": "", + "product_mpn": "ADA32", + "product_master_category": "14", + "product_manufacturer": null, + "product_price": "100.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/32", + "product_stock": "0", + "products_hts": "0", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3331", + "discount_pricing": [] + }, + { + "product_id": "141", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/141-00.jpg", + "image_is_video": "0", + "product_name": "$1 Gift Certificate", + "product_model": "", + "product_mpn": "ADA141", + "product_master_category": "14", + "product_manufacturer": null, + "product_price": "1.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/141", + "product_stock": "0", + "products_hts": "0", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "2", + "parent_pid": "3331", + "discount_pricing": [] + }, + { + "product_id": "4572", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4572-02.jpg", + "image_is_video": "0", + "product_name": "Engineering and Logistics Services - $1,000", + "product_model": "", + "product_mpn": "ADA4572", + "product_master_category": "14", + "product_manufacturer": null, + "product_price": "1,000.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4572", + "product_stock": "0", + "products_hts": "0", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4577", + "discount_pricing": [] + }, + { + "product_id": "4573", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4573-02.jpg", + "image_is_video": "0", + "product_name": "Engineering and Logistics Services - $10,000", + "product_model": "", + "product_mpn": "ADA4573", + "product_master_category": "14", + "product_manufacturer": null, + "product_price": "10,000.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4573", + "product_stock": "0", + "products_hts": "0", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4577", + "discount_pricing": [] + }, + { + "product_id": "296", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/296-00.jpg", + "image_is_video": "0", + "product_name": "Atmega32u4 Breakout Board", + "product_model": "", + "product_mpn": "ADA296", + "product_master_category": "16", + "product_manufacturer": "Adafruit", + "product_price": "19.90", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/296", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.90", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.91", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.92", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1465", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1465-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 6-pin AVR ISP Breadboard Adapter Mini Kit", + "product_model": "", + "product_mpn": "ADA1465", + "product_master_category": "16", + "product_manufacturer": "Adafruit", + "product_price": "0.95", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1465", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3675", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3675-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit ItsyBitsy 32u4 - 3V 8MHz", + "product_model": "", + "product_mpn": "ADA3675", + "product_master_category": "16", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3675", + "product_stock": "in stock", + "products_hts": "9030.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "54", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/54-02.jpg", + "image_is_video": "0", + "product_name": "USBtinyISP microcontroller", + "product_model": "", + "product_mpn": "ADA54", + "product_master_category": "16", + "product_manufacturer": null, + "product_price": "4.00", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/54", + "product_stock": "16", + "products_hts": "8542.31.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "174", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/174-00.jpg", + "image_is_video": "0", + "product_name": "Barebones AVR dev. board", + "product_model": "", + "product_mpn": "ADA174", + "product_master_category": "16", + "product_manufacturer": null, + "product_price": "12.00", + "product_shipping_weight": "15.6", + "product_url": "https:\/\/www.adafruit.com\/product\/174", + "product_stock": "15", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "731", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/731-02.jpg", + "image_is_video": "0", + "product_name": "Teensy++ (AT90USB1286 USB dev board) + header", + "product_model": "AT90USB1286", + "product_mpn": "ADA731", + "product_master_category": "16", + "product_manufacturer": null, + "product_price": "27.50", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/731", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.38", + "discounted_percent": "15", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "199", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/199-02.jpg", + "image_is_video": "0", + "product_name": "Teensy (ATmega32u4 USB dev board) 2.0", + "product_model": "ATmega32u4", + "product_mpn": "ADA199", + "product_master_category": "16", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "14.5", + "product_url": "https:\/\/www.adafruit.com\/product\/199", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "46", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/46-00.jpg", + "image_is_video": "0", + "product_name": "USBtinyISP AVR Programmer Kit (USB SpokePOV Dongle)", + "product_model": "v2.0", + "product_mpn": "ADA46", + "product_master_category": "16", + "product_manufacturer": "Adafruit", + "product_price": "22.00", + "product_shipping_weight": "49.8", + "product_url": "https:\/\/www.adafruit.com\/product\/46", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "73", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/73-07.jpg", + "image_is_video": "0", + "product_name": "TV-B-Gone Kit", + "product_model": "Universal v1.2", + "product_mpn": "ADA73", + "product_master_category": "20", + "product_manufacturer": "Adafruit", + "product_price": "19.50", + "product_shipping_weight": "20.2", + "product_url": "https:\/\/www.adafruit.com\/product\/73", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3418", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3418-00.jpg", + "image_is_video": "0", + "product_name": "Digital Loggers PLDuino - ATmega2560 + ESP8266 Customizable PLC", + "product_model": "", + "product_mpn": "ADA3418", + "product_master_category": "22", + "product_manufacturer": "Digital Loggers", + "product_price": "194.95", + "product_shipping_weight": "616.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3418", + "product_stock": "0", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "95", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/95-00.jpg", + "image_is_video": "0", + "product_name": "YBox2 Kit", + "product_model": "v1.1", + "product_mpn": "ADA95", + "product_master_category": "26", + "product_manufacturer": "Adafruit", + "product_price": "65.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/95", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "65.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "52.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1371", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1371-00.jpg", + "image_is_video": "0", + "product_name": "Parallax Propeller Activity Board", + "product_model": "", + "product_mpn": "ADA1371", + "product_master_category": "26", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "62.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1371", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "791", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/791-03.jpg", + "image_is_video": "0", + "product_name": "Parallax Propeller Quickstart USB Development Board", + "product_model": "", + "product_mpn": "ADA791", + "product_master_category": "26", + "product_manufacturer": null, + "product_price": "35.00", + "product_shipping_weight": "21.9", + "product_url": "https:\/\/www.adafruit.com\/product\/791", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "124", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/124-02.jpg", + "image_is_video": "0", + "product_name": "Drawdio kit", + "product_model": "v1.1", + "product_mpn": "ADA124", + "product_master_category": "28", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "20.2", + "product_url": "https:\/\/www.adafruit.com\/product\/124", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1127", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1127-00.jpg", + "image_is_video": "0", + "product_name": "Copper Foil Tape with Conductive Adhesive - 25mm x 15 meter roll", + "product_model": "", + "product_mpn": "ADA1127", + "product_master_category": "28", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "171.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1127", + "product_stock": "38", + "products_hts": "7409.11.5050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1128", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1128-00.jpg", + "image_is_video": "0", + "product_name": "Copper Foil Tape with Conductive Adhesive - 6mm x 15 meter roll", + "product_model": "", + "product_mpn": "ADA1128", + "product_master_category": "28", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "46.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1128", + "product_stock": "in stock", + "products_hts": "7409.11.5050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "197", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/197-00.jpg", + "image_is_video": "0", + "product_name": "Assembled Drawdio fun pack", + "product_model": "v1.1", + "product_mpn": "ADA197", + "product_master_category": "28", + "product_manufacturer": "Adafruit", + "product_price": "25.00", + "product_shipping_weight": "130.0", + "product_url": "https:\/\/www.adafruit.com\/product\/197", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "25.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "20.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "247", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/247-02.jpg", + "image_is_video": "0", + "product_name": "USB XBee Adapter", + "product_model": "", + "product_mpn": "ADA247", + "product_master_category": "29", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/247", + "product_stock": "25", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "967", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/967-03.jpg", + "image_is_video": "0", + "product_name": "XBee Pro Module - ZB Series 2SC - 63mW with Wire Antenna", + "product_model": "XBP24CZ7WIT-004", + "product_mpn": "ADA967", + "product_master_category": "29", + "product_manufacturer": null, + "product_price": "37.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/967", + "product_stock": "0", + "products_hts": "8517.62.0010", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "968", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/968-04.jpg", + "image_is_video": "0", + "product_name": "XBee Module - ZB Series S2C - 2mW with Wire Antenna", + "product_model": "XB24CZ7WIT-004", + "product_mpn": "ADA968", + "product_master_category": "29", + "product_manufacturer": null, + "product_price": "22.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/968", + "product_stock": "28", + "products_hts": "8517.62.0010", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "964", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/964-00.jpg", + "image_is_video": "0", + "product_name": "XBee Pro Module - Series 1 - 60mW with Wire Antenna", + "product_model": "XBP24-AWI-001", + "product_mpn": "ADA964", + "product_master_category": "29", + "product_manufacturer": null, + "product_price": "37.95", + "product_shipping_weight": "5.2", + "product_url": "https:\/\/www.adafruit.com\/product\/964", + "product_stock": "-3", + "products_hts": "8517.62.0010", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "126", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/126-03.jpg", + "image_is_video": "0", + "product_name": "XBee Adapter kit", + "product_model": "v1.1", + "product_mpn": "ADA126", + "product_master_category": "29", + "product_manufacturer": "Adafruit", + "product_price": "10.00", + "product_shipping_weight": "11.3", + "product_url": "https:\/\/www.adafruit.com\/product\/126", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.00", + "discounted_percent": "10", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "8.00", + "discounted_percent": "20", + "show_qty": "50-99", + "min_qty": 50 + }, + { + "discounted_price": "7.50", + "discounted_percent": "25", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "128", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/128-01.jpg", + "image_is_video": "0", + "product_name": "XBee Module - Series 1 - 1mW with Wire Antenna", + "product_model": "XB24-AWI-001", + "product_mpn": "ADA128", + "product_master_category": "29", + "product_manufacturer": null, + "product_price": "22.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/128", + "product_stock": "-10", + "products_hts": "8517.62.0010", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "131", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/131-01.jpg", + "image_is_video": "0", + "product_name": "SNES Controller", + "product_model": "", + "product_mpn": "ADA131", + "product_master_category": "30", + "product_manufacturer": null, + "product_price": "5.00", + "product_shipping_weight": "103.2", + "product_url": "https:\/\/www.adafruit.com\/product\/131", + "product_stock": "0", + "products_hts": "9504.50.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1291", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1291-00.jpg", + "image_is_video": "0", + "product_name": "Uzebox Starter Kit", + "product_model": "v1.0", + "product_mpn": "ADA1291", + "product_master_category": "30", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "298.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1291", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "144", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/144-01.jpg", + "image_is_video": "0", + "product_name": "Tweet-a-Watt add-on outlet kit", + "product_model": "", + "product_mpn": "ADA144", + "product_master_category": "32", + "product_manufacturer": "Adafruit", + "product_price": "40.00", + "product_shipping_weight": "30.8", + "product_url": "https:\/\/www.adafruit.com\/product\/144", + "product_stock": "-10", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "40.00", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "38.00", + "discounted_percent": "5", + "show_qty": "5-9", + "min_qty": 5 + }, + { + "discounted_price": "36.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "32.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "143", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/143-01.jpg", + "image_is_video": "0", + "product_name": "Tweet-a-Watt starter pack", + "product_model": "", + "product_mpn": "ADA143", + "product_master_category": "32", + "product_manufacturer": "Adafruit", + "product_price": "90.00", + "product_shipping_weight": "82.9", + "product_url": "https:\/\/www.adafruit.com\/product\/143", + "product_stock": "-5", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "90.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "81.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "72.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "749", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/749-00.jpg", + "image_is_video": "0", + "product_name": "Parallax BOEBot Robot for Arduino Kit", + "product_model": "", + "product_mpn": "ADA749", + "product_master_category": "34", + "product_manufacturer": "Parallax", + "product_price": "148.95", + "product_shipping_weight": "403.8", + "product_url": "https:\/\/www.adafruit.com\/product\/749", + "product_stock": "41", + "products_hts": "9503.90.0045", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1006", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1006-00.jpg", + "image_is_video": "0", + "product_name": "Hummingbird Robotics Kit", + "product_model": "", + "product_mpn": "ADA1006", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "199.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1006", + "product_stock": "-3", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1108", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1108-00.jpg", + "image_is_video": "0", + "product_name": "Kovan - Open source smart robotics controller", + "product_model": "", + "product_mpn": "ADA1108", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "249.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1108", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2012", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2012-02.jpg", + "image_is_video": "1", + "product_name": "Phenoptix MeArm Pocket Sized Robot Arm Kit - Powder Blue v0.4", + "product_model": "PBLU v0.4", + "product_mpn": "ADA2012", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "55.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2012", + "product_stock": "-3", + "products_hts": "9503.90.0045", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2388", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2388-02.jpg", + "image_is_video": "0", + "product_name": "iRobot Create\u00ae 2 Programmable Robot", + "product_model": "", + "product_mpn": "ADA2388", + "product_master_category": "34", + "product_manufacturer": "iRobot", + "product_price": "199.99", + "product_shipping_weight": "4,808.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2388", + "product_stock": "14", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2939", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2939-08.jpg", + "image_is_video": "1", + "product_name": "Mini Robot Rover Chassis Kit - 2WD with DC Motors", + "product_model": "", + "product_mpn": "ADA2939", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "166.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2939", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2943", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2943-01.jpg", + "image_is_video": "0", + "product_name": "Anodized Aluminum Metal Chasis for a Mini Robot Rover", + "product_model": "", + "product_mpn": "ADA2943", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "51.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2943", + "product_stock": "in stock", + "products_hts": "7606.91.00.81", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2944", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2944-00.jpg", + "image_is_video": "0", + "product_name": "Top Metal Plate for a Mini Robot Rover Chassis", + "product_model": "", + "product_mpn": "ADA2944", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2944", + "product_stock": "in stock", + "products_hts": "7606.91.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3216", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3216-09.jpg", + "image_is_video": "1", + "product_name": "Mini Round Robot Chassis Kit - 2WD with DC Motors", + "product_model": "", + "product_mpn": "ADA3216", + "product_master_category": "34", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "192.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3216", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3244", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3244-02.jpg", + "image_is_video": "0", + "product_name": "Mini 3-Layer Round Robot Chassis Kit - 2WD with DC Motors", + "product_model": "", + "product_mpn": "ADA3244", + "product_master_category": "34", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "220.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3244", + "product_stock": "-4", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3640", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3640-02.jpg", + "image_is_video": "1", + "product_name": "mBot Robot Kit - Bluetooth Version", + "product_model": "by Makeblock", + "product_mpn": "ADA3640", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "1,027.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3640", + "product_stock": "-3", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3641", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3641-02.jpg", + "image_is_video": "1", + "product_name": "mBot Robot Kit - 2.4GHz Version", + "product_model": "by Makeblock", + "product_mpn": "ADA3641", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "1,027.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3641", + "product_stock": "0", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3796", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3796-09.jpg", + "image_is_video": "1", + "product_name": "Purple Aluminum Chassis for TT Motors - 2WD", + "product_model": "", + "product_mpn": "ADA3796", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "120.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3796", + "product_stock": "41", + "products_hts": "7606.91.3090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4225", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4225-01.jpg", + "image_is_video": "0", + "product_name": "NVIDIA Jetbot Parts Pack", + "product_model": "", + "product_mpn": "ADA4225", + "product_master_category": "34", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "136.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4225", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4386", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4386-16.jpg", + "image_is_video": "0", + "product_name": "RVR - Hackable All-Terrain Robotic Tank by Sphero", + "product_model": "", + "product_mpn": "ADA4386", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "249.99", + "product_shipping_weight": "2,301.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4386", + "product_stock": "1", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4442", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4442-06.jpg", + "image_is_video": "1", + "product_name": "micro:bit Ring:Bit Buggy Car Robot (without micro:bit)", + "product_model": "", + "product_mpn": "ADA4442", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "194.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4442", + "product_stock": "56", + "products_hts": "8529.90.7500", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4466", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4466-04.jpg", + "image_is_video": "0", + "product_name": "Octagon Chassis Frame - Blue Plastic - 16cm x 16cm x 4cm", + "product_model": "", + "product_mpn": "ADA4466", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "140.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4466", + "product_stock": "36", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4575", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4575-08.jpg", + "image_is_video": "1", + "product_name": "Smart Car Cutebot Robot for micro:bit", + "product_model": "", + "product_mpn": "ADA4575", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "250.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4575", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4967", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4967-00.jpg", + "image_is_video": "0", + "product_name": "ScoutMakes Robot Kit", + "product_model": "", + "product_mpn": "ADA4967", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "83.00", + "product_shipping_weight": "103.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4967", + "product_stock": "9", + "products_hts": "8529.90.7500", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1546", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1546-00.jpg", + "image_is_video": "0", + "product_name": "3DR Iris - autonomous multicopter", + "product_model": "", + "product_mpn": "ADA1546", + "product_master_category": "34", + "product_manufacturer": "KittenBot", + "product_price": "649.99", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1546", + "product_stock": "0", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2199", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2199-12.png", + "image_is_video": "0", + "product_name": "3DR Iris+ \u2014 Autonomous multicopter", + "product_model": "", + "product_mpn": "ADA2199", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "749.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2199", + "product_stock": "-3", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2438", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2438-02.jpg", + "image_is_video": "0", + "product_name": "Mini-DIN Connector Cable for iRobot Create 2 - 7 Pins - 6 feet", + "product_model": "", + "product_mpn": "ADA2438", + "product_master_category": "34", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "78.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2438", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2320", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2320-02.jpg", + "image_is_video": "0", + "product_name": "Hummingbird Duo Premium Robotics Kit", + "product_model": "", + "product_mpn": "ADA2320", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "275.00", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2320", + "product_stock": "0", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1529", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1529-00.jpg", + "image_is_video": "0", + "product_name": "Hexy - Programmable Hexapod Kit", + "product_model": "", + "product_mpn": "ADA1529", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "249.95", + "product_shipping_weight": "1,270.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1529", + "product_stock": "0", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "548", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/548-00.jpg", + "image_is_video": "0", + "product_name": "OWI Robotic Arm Edge - Robot arm", + "product_model": "OWI-535", + "product_mpn": "ADA548", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "1,088.6", + "product_url": "https:\/\/www.adafruit.com\/product\/548", + "product_stock": "0", + "products_hts": "9503.90.0045", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1715", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1715-08.jpg", + "image_is_video": "0", + "product_name": "Sparki \u2013 The Easy Robot for Everyone", + "product_model": "", + "product_mpn": "ADA1715", + "product_master_category": "34", + "product_manufacturer": "ArcBotics", + "product_price": "159.95", + "product_shipping_weight": "583.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1715", + "product_stock": "-1", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1639", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1639-00.jpg", + "image_is_video": "0", + "product_name": "Zumo Robot for Arduino", + "product_model": "v1.2", + "product_mpn": "ADA1639", + "product_master_category": "34", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "216.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1639", + "product_stock": "26", + "products_hts": "9503.90.0045", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "235", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/235-00.jpg", + "image_is_video": "0", + "product_name": "Ice Tube clear acrylic enclosure", + "product_model": "", + "product_mpn": "ADA235", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "10.00", + "product_shipping_weight": "97.2", + "product_url": "https:\/\/www.adafruit.com\/product\/235", + "product_stock": "-3", + "products_hts": "3926.90.9996", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "236", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/236-01.jpg", + "image_is_video": "0", + "product_name": "MONOCHRON enclosure", + "product_model": "", + "product_mpn": "ADA236", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "10.00", + "product_shipping_weight": "110.5", + "product_url": "https:\/\/www.adafruit.com\/product\/236", + "product_stock": "0", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "242", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/242-01.jpg", + "image_is_video": "0", + "product_name": "Ice tube clock replacement tube", + "product_model": "IV-18", + "product_mpn": "ADA242", + "product_master_category": "39", + "product_manufacturer": null, + "product_price": "10.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/242", + "product_stock": "-3", + "products_hts": "8540.89.0020", + "products_coo": "RU", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "620", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/620-00.jpg", + "image_is_video": "0", + "product_name": "Alpha Clock Five - RED - From Evil Mad Scientist Labs!", + "product_model": "", + "product_mpn": "ADA620", + "product_master_category": "39", + "product_manufacturer": "EMSL", + "product_price": "145.00", + "product_shipping_weight": "907.2", + "product_url": "https:\/\/www.adafruit.com\/product\/620", + "product_stock": "-1", + "products_hts": "9105.11.8000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1224", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1224-04.jpg", + "image_is_video": "1", + "product_name": "TIMESQUARE DIY Watch Kit - Lime Display Matrix", + "product_model": "", + "product_mpn": "ADA1224", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "28.95", + "product_shipping_weight": "97.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1224", + "product_stock": "-3", + "products_hts": "9102.12.8000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1225", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1225-05.jpg", + "image_is_video": "1", + "product_name": "TIMESQUARE DIY Watch Kit - Blue Display Matrix", + "product_model": "", + "product_mpn": "ADA1225", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "38.95", + "product_shipping_weight": "97.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1225", + "product_stock": "-3", + "products_hts": "9102.12.8000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3117", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3117-03.jpg", + "image_is_video": "1", + "product_name": "Fibonacci Clock Kit", + "product_model": "", + "product_mpn": "ADA3117", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "84.95", + "product_shipping_weight": "1,193.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3117", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "194", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/194-03.jpg", + "image_is_video": "0", + "product_name": "Ice Tube Clock kit", + "product_model": "v1.1", + "product_mpn": "ADA194", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "85.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/194", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "85.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.50", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1718", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1718-00.jpg", + "image_is_video": "0", + "product_name": "Xronos Clock Kit v2.1", + "product_model": "", + "product_mpn": "ADA1718", + "product_master_category": "39", + "product_manufacturer": null, + "product_price": "150.00", + "product_shipping_weight": "907.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1718", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "343", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/343-00.jpg", + "image_is_video": "0", + "product_name": "Ice Tube replacement side-PCB and male header", + "product_model": "", + "product_mpn": "ADA343", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/343", + "product_stock": "-3", + "products_hts": "8534.00.0040", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1223", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1223-04.jpg", + "image_is_video": "1", + "product_name": "TIMESQUARE DIY Watch Kit - Tangerine Display Matrix", + "product_model": "", + "product_mpn": "ADA1223", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "28.95", + "product_shipping_weight": "97.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1223", + "product_stock": "-3", + "products_hts": "9102.12.8000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1226", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1226-04.jpg", + "image_is_video": "1", + "product_name": "TIMESQUARE DIY Watch Kit - White Display Matrix", + "product_model": "", + "product_mpn": "ADA1226", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "38.95", + "product_shipping_weight": "97.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1226", + "product_stock": "-3", + "products_hts": "9102.12.8000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1198", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1198-00.jpg", + "image_is_video": "0", + "product_name": "Alpha Clock Five - WHITE - From Evil Mad Scientist Labs!", + "product_model": "", + "product_mpn": "ADA1198", + "product_master_category": "39", + "product_manufacturer": "EMSL", + "product_price": "175.00", + "product_shipping_weight": "997.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1198", + "product_stock": "-3", + "products_hts": "9105.11.8000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "950", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/950-00.jpg", + "image_is_video": "0", + "product_name": "Solder:Time II DIY watch kit", + "product_model": "", + "product_mpn": "ADA950", + "product_master_category": "39", + "product_manufacturer": "Spikenzie Labs", + "product_price": "59.95", + "product_shipping_weight": "95.0", + "product_url": "https:\/\/www.adafruit.com\/product\/950", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1530", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1530-00.jpg", + "image_is_video": "0", + "product_name": "Solder:Time Desk Clock", + "product_model": "", + "product_mpn": "ADA1530", + "product_master_category": "39", + "product_manufacturer": "Spikenzie Labs", + "product_price": "89.95", + "product_shipping_weight": "587.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1530", + "product_stock": "16", + "products_hts": "8542.90.00 00", + "products_coo": "CA", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1106", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1106-06.jpg", + "image_is_video": "1", + "product_name": "TIMESQUARE DIY Watch Kit - Red Display Matrix", + "product_model": "", + "product_mpn": "ADA1106", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "100.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1106", + "product_stock": "-3", + "products_hts": "9102.12.8000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "495", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/495-06.jpg", + "image_is_video": "0", + "product_name": "Solder:Time DIY watch kit", + "product_model": "", + "product_mpn": "ADA495", + "product_master_category": "39", + "product_manufacturer": "Spikenzie Labs", + "product_price": "29.95", + "product_shipping_weight": "95.0", + "product_url": "https:\/\/www.adafruit.com\/product\/495", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "240", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/240-00.jpg", + "image_is_video": "0", + "product_name": "Bulbdial Clock kit", + "product_model": "color LED with black\/smoke case", + "product_mpn": "ADA240", + "product_master_category": "39", + "product_manufacturer": "EMSL", + "product_price": "85.00", + "product_shipping_weight": "488.4", + "product_url": "https:\/\/www.adafruit.com\/product\/240", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "204", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/204-00.jpg", + "image_is_video": "0", + "product_name": "MONOCHRON Clock kit - Open source clock platform, make clocks!", + "product_model": "v1.0", + "product_mpn": "ADA204", + "product_master_category": "39", + "product_manufacturer": "Adafruit", + "product_price": "80.00", + "product_shipping_weight": "392.4", + "product_url": "https:\/\/www.adafruit.com\/product\/204", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "80.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "72.00", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3754", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3754-01.jpg", + "image_is_video": "0", + "product_name": "The 3D Printing Handbook", + "product_model": "by 3D Hubs", + "product_mpn": "ADA3754", + "product_master_category": "40", + "product_manufacturer": null, + "product_price": "49.00", + "product_shipping_weight": "765.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3754", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3755", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3755-01.jpg", + "image_is_video": "0", + "product_name": "Toolshed Coloring Book", + "product_model": "by Lee John Phillips", + "product_mpn": "ADA3755", + "product_master_category": "40", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "357.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3755", + "product_stock": "20", + "products_hts": "4903.00.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3756", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3756-01.jpg", + "image_is_video": "0", + "product_name": "Toolshed Journal", + "product_model": "by Lee John Phillips", + "product_mpn": "ADA3756", + "product_master_category": "40", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "236.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3756", + "product_stock": "-3", + "products_hts": "4911.99.8000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "717", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/717-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit IoT Printer Project Pack \"Internet of Things\" printer", + "product_model": "", + "product_mpn": "ADA717", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/717", + "product_stock": "-3", + "products_hts": "8471.60.6500", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "934", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/934-00.jpg", + "image_is_video": "0", + "product_name": "LED Bike Handlebar Pack - 2 meters", + "product_model": "", + "product_mpn": "ADA934", + "product_master_category": "41", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "188.7", + "product_url": "https:\/\/www.adafruit.com\/product\/934", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "932", + "discount_pricing": [] + }, + { + "product_id": "1401", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1401-00.jpg", + "image_is_video": "0", + "product_name": "Sous-vide powered by Arduino kit pack - The SousViduino!", + "product_model": "", + "product_mpn": "ADA1401", + "product_master_category": "41", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "433.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1401", + "product_stock": "-12", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1454", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1454-00.jpg", + "image_is_video": "0", + "product_name": "Punk LED Collar Kit - Red LEDs", + "product_model": "", + "product_mpn": "ADA1454", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "156.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1454", + "product_stock": "-3", + "products_hts": "7117.90.9000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1657", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1657-02.jpg", + "image_is_video": "0", + "product_name": "Gemma Starter Pack", + "product_model": "", + "product_mpn": "ADA1657", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "27.95", + "product_shipping_weight": "120.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1657", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "25.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1783", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1783-02.jpg", + "image_is_video": "0", + "product_name": "Cupcade: the Raspberry Pi-Powered Micro Arcade Cabinet Kit", + "product_model": "Rev 3", + "product_mpn": "ADA1783", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "94.95", + "product_shipping_weight": "727.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1783", + "product_stock": "2", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "94.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "1916", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1916-02.jpg", + "image_is_video": "0", + "product_name": "Cupcade V1 Adapter PCB + Parts Pack", + "product_model": "", + "product_mpn": "ADA1916", + "product_master_category": "41", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "27.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1916", + "product_stock": "9", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2706", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2706-10.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Picade Cabinet Kit", + "product_model": "PIM468", + "product_mpn": "ADA2706", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "214.95", + "product_shipping_weight": "4,263.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2706", + "product_stock": "19", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2707", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2707-06.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Picade Console Controller Kit for Raspberry Pi 4", + "product_model": "PIM488", + "product_mpn": "ADA2707", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "89.95", + "product_shipping_weight": "937.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2707", + "product_stock": "43", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2975", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2975-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Parts Pal", + "product_model": "", + "product_mpn": "ADA2975", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "143.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2975", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3015", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3015-03.jpg", + "image_is_video": "0", + "product_name": "PiGRRL 2.0 Custom Gamepad PCB", + "product_model": "", + "product_mpn": "ADA3015", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3015", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3247", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3247-01.jpg", + "image_is_video": "0", + "product_name": "Flotilla Mega Treasure Chest Starter Kit", + "product_model": "", + "product_mpn": "ADA3247", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "149.95", + "product_shipping_weight": "812.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3247", + "product_stock": "7", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3281", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3281-00.jpg", + "image_is_video": "0", + "product_name": "BubbleSort Zine Project Pack - Literal Twitter Bot Kit", + "product_model": "", + "product_mpn": "ADA3281", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "198.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3281", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3477", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3477-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Pirate Radio - Pi Zero W with Headers Project Kit", + "product_model": "", + "product_mpn": "ADA3477", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "49.95", + "product_shipping_weight": "293.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3477", + "product_stock": "16", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3478", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3478-00.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Mood Light - Pi Zero WH Project Kit", + "product_model": "V2", + "product_mpn": "ADA3478", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "59.95", + "product_shipping_weight": "290.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3478", + "product_stock": "30", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3479", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3479-00.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Scroll Bot - Pi Zero W Project Kit", + "product_model": "", + "product_mpn": "ADA3479", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "49.95", + "product_shipping_weight": "210.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3479", + "product_stock": "4", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3480", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3480-00.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Pi Zero W Starter Kit", + "product_model": "", + "product_mpn": "ADA3480", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "44.95", + "product_shipping_weight": "167.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3480", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3579", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3579-02.jpg", + "image_is_video": "0", + "product_name": "Pimoroni OctoCam - Pi Zero W Project Kit (Pi Included!)", + "product_model": "", + "product_mpn": "ADA3579", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "54.95", + "product_shipping_weight": "293.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3579", + "product_stock": "26", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3744", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3744-04.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Bearables Fox Kit", + "product_model": "", + "product_mpn": "ADA3744", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "17.50", + "product_shipping_weight": "49.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3744", + "product_stock": "13", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3745", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3745-03.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Bearables Bear Kit", + "product_model": "", + "product_mpn": "ADA3745", + "product_master_category": "41", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "50.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3745", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4011", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4011-00.jpg", + "image_is_video": "1", + "product_name": "Circuit Playground Snow Globe Kit", + "product_model": "", + "product_mpn": "ADA4011", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "119.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4011", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4812", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4812-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Matrix Portal Starter Kit - ADABOX 016 Essentials", + "product_model": "", + "product_mpn": "ADA4812", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "595.9", + "product_url": "https:\/\/www.adafruit.com\/product\/4812", + "product_stock": "in stock", + "products_hts": "8473.30.5100", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4860", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4860-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Prop-Maker Starter Kit - Make your own Lightsaber!", + "product_model": "", + "product_mpn": "ADA4860", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "290.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4860", + "product_stock": "9", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4968", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4968-00.jpg", + "image_is_video": "0", + "product_name": "ScoutMakes FM Radio Kit", + "product_model": "", + "product_mpn": "ADA4968", + "product_master_category": "41", + "product_manufacturer": null, + "product_price": "62.00", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4968", + "product_stock": "7", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "332", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/332-00.jpg", + "image_is_video": "0", + "product_name": "Digital programmable LED belt kit", + "product_model": "", + "product_mpn": "ADA332", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "60.00", + "product_shipping_weight": "121.5", + "product_url": "https:\/\/www.adafruit.com\/product\/332", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "60.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "54.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "48.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2934", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2934-00.jpg", + "image_is_video": "0", + "product_name": "PiGrrl Zero Custom Gamepad PCB", + "product_model": "", + "product_mpn": "ADA2934", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "5.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2934", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "933", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/933-00.jpg", + "image_is_video": "0", + "product_name": "LED Bike Handlebar Pack - 1 meter", + "product_model": "", + "product_mpn": "ADA933", + "product_master_category": "41", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "123.7", + "product_url": "https:\/\/www.adafruit.com\/product\/933", + "product_stock": "6", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "932", + "discount_pricing": [] + }, + { + "product_id": "2418", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2418-02.jpg", + "image_is_video": "1", + "product_name": "BlinkyTile - Light Sculpture Kit", + "product_model": "", + "product_mpn": "ADA2418", + "product_master_category": "41", + "product_manufacturer": "Blinkinlabs", + "product_price": "49.95", + "product_shipping_weight": "365.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2418", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "241", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/241-00.jpg", + "image_is_video": "0", + "product_name": "USB game pad with accelerometer project pack", + "product_model": "", + "product_mpn": "ADA241", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "45.00", + "product_shipping_weight": "164.0", + "product_url": "https:\/\/www.adafruit.com\/product\/241", + "product_stock": "4", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "45.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "36.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "855", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/855-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Ohm Sweet Ohm Cross-Stitch Kit", + "product_model": "", + "product_mpn": "ADA855", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "228.2", + "product_url": "https:\/\/www.adafruit.com\/product\/855", + "product_stock": "0", + "products_hts": "6308.00.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1775", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1775-03.jpg", + "image_is_video": "0", + "product_name": "Companion Parts Pack for Adventures in Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1775", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "247.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1775", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "461", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/461-00.jpg", + "image_is_video": "0", + "product_name": "Adalight - DIY Ambient Monitor Lighting Project Pack", + "product_model": "", + "product_mpn": "ADA461", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "270.7", + "product_url": "https:\/\/www.adafruit.com\/product\/461", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1289", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1289-02.jpg", + "image_is_video": "1", + "product_name": "Adafruit IoT Pi Printer Project Pack", + "product_model": "v2", + "product_mpn": "ADA1289", + "product_master_category": "41", + "product_manufacturer": "Adafruit", + "product_price": "114.95", + "product_shipping_weight": "1,179.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1289", + "product_stock": "61", + "products_hts": "8471.60.6500", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "114.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "103.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "91.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3119", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3119-04.jpg", + "image_is_video": "0", + "product_name": "HDMI Plug Breakout Board", + "product_model": "", + "product_mpn": "ADA3119", + "product_master_category": "42", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "12.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3119", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3121", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3121-00.jpg", + "image_is_video": "0", + "product_name": "Panel Mount HDMI Socket Breakout", + "product_model": "", + "product_mpn": "ADA3121", + "product_master_category": "42", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3121", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "278", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/278-00.jpg", + "image_is_video": "0", + "product_name": "Chumby Hacker Board", + "product_model": "v1.0", + "product_mpn": "ADA278", + "product_master_category": "46", + "product_manufacturer": null, + "product_price": "89.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/278", + "product_stock": "-3", + "products_hts": "8473.30.1180", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "834", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/834-00.jpg", + "image_is_video": "0", + "product_name": "mbed + extras - LPC1768 development board", + "product_model": "v5.1", + "product_mpn": "ADA834", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "64.95", + "product_shipping_weight": "86.1", + "product_url": "https:\/\/www.adafruit.com\/product\/834", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "836", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/836-00.jpg", + "image_is_video": "0", + "product_name": "mbed and NFC\/RFID Starter Pack", + "product_model": "", + "product_mpn": "ADA836", + "product_master_category": "47", + "product_manufacturer": "Adafruit", + "product_price": "134.99", + "product_shipping_weight": "254.1", + "product_url": "https:\/\/www.adafruit.com\/product\/836", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "134.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "121.49", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "107.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1044", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1044-00.jpg", + "image_is_video": "0", + "product_name": "Teensy 3.0 + header", + "product_model": "", + "product_mpn": "ADA1044", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1044", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "16.96", + "discounted_percent": "15", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1342", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1342-00.jpg", + "image_is_video": "0", + "product_name": "LPCXpresso LPC1347 Development Board with LPC-Link", + "product_model": "", + "product_mpn": "ADA1342", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "25.00", + "product_shipping_weight": "39.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1342", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1366", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1366-00.jpg", + "image_is_video": "0", + "product_name": "Xively Jumpstart Kit: ARM\u00ae mbed Edition", + "product_model": "", + "product_mpn": "ADA1366", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "124.95", + "product_shipping_weight": "172.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1366", + "product_stock": "-3", + "products_hts": "8534.00.0040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1369", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1369-05.jpg", + "image_is_video": "0", + "product_name": "SEGGER J-Link EDU - JTAG\/SWD Debugger", + "product_model": "", + "product_mpn": "ADA1369", + "product_master_category": "47", + "product_manufacturer": "Segger", + "product_price": "69.95", + "product_shipping_weight": "222.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1369", + "product_stock": "25", + "products_hts": "8542.31.99", + "products_coo": "DE", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1902", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1902-08.jpg", + "image_is_video": "1", + "product_name": "SmartMatrix SmartLED Shield (V4) for Teensy 3", + "product_model": "", + "product_mpn": "ADA1902", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "22.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1902", + "product_stock": "40", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2417", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2417-06.jpg", + "image_is_video": "0", + "product_name": "Arduino M0 Pro - 32 bit Cortex M0 with Debug Interface", + "product_model": "", + "product_mpn": "ADA2417", + "product_master_category": "47", + "product_manufacturer": "Arduino", + "product_price": "39.95", + "product_shipping_weight": "32.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2417", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2743", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2743-00.jpg", + "image_is_video": "0", + "product_name": "SWD (2x5 1.27mm) Cable Breakout Board", + "product_model": "", + "product_mpn": "ADA2743", + "product_master_category": "47", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2743", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2756", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2756-00.jpg", + "image_is_video": "0", + "product_name": "Teensy 3.2 + header", + "product_model": "", + "product_mpn": "ADA2756", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "14.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2756", + "product_stock": "16", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2764", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2764-06.jpg", + "image_is_video": "0", + "product_name": "IBDAP - CMSIS-DAP JTAG\/SWD Debug Adapter Kit", + "product_model": "", + "product_mpn": "ADA2764", + "product_master_category": "47", + "product_manufacturer": "Armstart", + "product_price": "29.95", + "product_shipping_weight": "19.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2764", + "product_stock": "0", + "products_hts": "8473.10.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3086", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3086-00.jpg", + "image_is_video": "0", + "product_name": "PJRC Prop Shield-LC for Teensy 3.2 and Teensy-LC", + "product_model": "", + "product_mpn": "ADA3086", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "9.50", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3086", + "product_stock": "-3", + "products_hts": "8543.90.1500", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3266", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3266-00.jpg", + "image_is_video": "0", + "product_name": "Teensy 3.6 without headers", + "product_model": "", + "product_mpn": "ADA3266", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3266", + "product_stock": "86", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3267", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3267-00.jpg", + "image_is_video": "0", + "product_name": "Teensy 3.5 without headers", + "product_model": "", + "product_mpn": "ADA3267", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3267", + "product_stock": "87", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3514", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3514-01.jpg", + "image_is_video": "0", + "product_name": "Espruino WiFi", + "product_model": "", + "product_mpn": "ADA3514", + "product_master_category": "47", + "product_manufacturer": "Espruino", + "product_price": "34.95", + "product_shipping_weight": "9.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3514", + "product_stock": "2", + "products_hts": "8471.50.0150", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3571", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3571-05.jpg", + "image_is_video": "0", + "product_name": "SEGGER J-Link EDU Mini - JTAG\/SWD Debugger", + "product_model": "", + "product_mpn": "ADA3571", + "product_master_category": "47", + "product_manufacturer": "Segger", + "product_price": "19.95", + "product_shipping_weight": "15.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3571", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "DE", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3839", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3839-07.jpg", + "image_is_video": "0", + "product_name": "Black Magic Probe with JTAG Cable and Serial Cable", + "product_model": "V2.1", + "product_mpn": "ADA3839", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3839", + "product_stock": "45", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3855", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3855-03.jpg", + "image_is_video": "0", + "product_name": "Espruino Pixl.js - Javascript Microcontroller with LCD", + "product_model": "", + "product_mpn": "ADA3855", + "product_master_category": "47", + "product_manufacturer": "Espruino", + "product_price": "44.95", + "product_shipping_weight": "38.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3855", + "product_stock": "-1", + "products_hts": "8526.92.5000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4050", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4050-08.jpg", + "image_is_video": "0", + "product_name": "Tomu", + "product_model": "", + "product_mpn": "ADA4050", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "27.50", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4050", + "product_stock": "24", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4323", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4323-03.jpg", + "image_is_video": "0", + "product_name": "PJRC Teensy 4.0 USB Development Board", + "product_model": "", + "product_mpn": "ADA4323", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4323", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4384", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4384-00.jpg", + "image_is_video": "0", + "product_name": "Audio Adapter Board for Teensy 4.0", + "product_model": "", + "product_mpn": "ADA4384", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4384", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4418", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4418-02.jpg", + "image_is_video": "0", + "product_name": "Sony Spresense Extension Board", + "product_model": "", + "product_mpn": "ADA4418", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "45.00", + "product_shipping_weight": "33.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4418", + "product_stock": "45", + "products_hts": "8542.31.0001", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4419", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4419-06.jpg", + "image_is_video": "0", + "product_name": "Sony Spresense Main Board", + "product_model": "CXD5602", + "product_mpn": "ADA4419", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "65.00", + "product_shipping_weight": "20.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4419", + "product_stock": "16", + "products_hts": "8543.90.8885", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4622", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4622-03.jpg", + "image_is_video": "0", + "product_name": "PJRC Teensy 4.1 Development Board", + "product_model": "", + "product_mpn": "ADA4622", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "26.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4622", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1341", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1341-00.jpg", + "image_is_video": "0", + "product_name": "LPCXpresso LPC1769 Development Board with LPC-Link", + "product_model": "", + "product_mpn": "ADA1341", + "product_master_category": "47", + "product_manufacturer": "Embedded Artists AB", + "product_price": "29.95", + "product_shipping_weight": "38.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1341", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1625", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1625-00.jpg", + "image_is_video": "0", + "product_name": "Teensy 3.1 + header", + "product_model": "", + "product_mpn": "ADA1625", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "14.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1625", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2548", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2548-01.jpg", + "image_is_video": "0", + "product_name": "ST-Link STM8\/STM32 v2 Compatible Programmer & Emulator", + "product_model": "", + "product_mpn": "ADA2548", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "12.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2548", + "product_stock": "in stock", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2621", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2621-06.jpg", + "image_is_video": "0", + "product_name": "Espruino Pico", + "product_model": "", + "product_mpn": "ADA2621", + "product_master_category": "47", + "product_manufacturer": "Espruino", + "product_price": "24.95", + "product_shipping_weight": "34.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2621", + "product_stock": "22", + "products_hts": "8471.50.0150", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2094", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2094-00.jpg", + "image_is_video": "0", + "product_name": "JTAG (2x10 2.54mm) to SWD (2x5 1.27mm) Cable Adapter Board", + "product_model": "", + "product_mpn": "ADA2094", + "product_master_category": "47", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2094", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2419", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2419-00.jpg", + "image_is_video": "0", + "product_name": "Teensy-LC Without Pins", + "product_model": "", + "product_mpn": "ADA2419", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "12.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2419", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1336", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1336-00.jpg", + "image_is_video": "0", + "product_name": "LPC810 Mini Starter Pack", + "product_model": "", + "product_mpn": "ADA1336", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "30.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1336", + "product_stock": "0", + "products_hts": "85.42.9000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1780", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1780-00.jpg", + "image_is_video": "0", + "product_name": "Audio Adapter Board for Teensy 3.0 - 3.2, 3.5 and 3.6", + "product_model": "", + "product_mpn": "ADA1780", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1780", + "product_stock": "72", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.88", + "discounted_percent": "15", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2209", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2209-00.jpg", + "image_is_video": "0", + "product_name": "SEGGER J-Link BASE - JTAG\/SWD Debugger", + "product_model": "", + "product_mpn": "ADA2209", + "product_master_category": "47", + "product_manufacturer": "Segger", + "product_price": "449.95", + "product_shipping_weight": "224.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2209", + "product_stock": "22", + "products_hts": "8542.31.99", + "products_coo": "DE", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1323", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1323-00.jpg", + "image_is_video": "0", + "product_name": "mbed Application Board", + "product_model": "", + "product_mpn": "ADA1323", + "product_master_category": "47", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "85.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1323", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1526", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1526-00.jpg", + "image_is_video": "0", + "product_name": "\"Three Fives\" Discrete 555 Timer Kit", + "product_model": "v2.0", + "product_mpn": "ADA1526", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "34.95", + "product_shipping_weight": "208.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1526", + "product_stock": "38", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2086", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2086-04.jpg", + "image_is_video": "0", + "product_name": "Evil Mad Scientist Labs XL741 Discrete Op-Amp Kit", + "product_model": "v2.0", + "product_mpn": "ADA2086", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "37.50", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2086", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "37.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "33.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2131", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2131-00.jpg", + "image_is_video": "0", + "product_name": "The EggBot Pro", + "product_model": "", + "product_mpn": "ADA2131", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "325.00", + "product_shipping_weight": "1,814.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2131", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3509", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3509-04.jpg", + "image_is_video": "0", + "product_name": "AxiDraw V3 by Evil Mad Scientist Labs", + "product_model": "", + "product_mpn": "ADA3509", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "475.00", + "product_shipping_weight": "3,477.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3509", + "product_stock": "-3", + "products_hts": "9017.10.4000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4457", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4457-01.jpg", + "image_is_video": "0", + "product_name": "\"Three Fives\" 555SE Discrete Timer SMT Soldering Kit", + "product_model": "", + "product_mpn": "ADA4457", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "29.95", + "product_shipping_weight": "105.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4457", + "product_stock": "11", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2291", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2291-00.jpg", + "image_is_video": "0", + "product_name": "Evil Mad Scientist Labs Mega Menorah 9000", + "product_model": "", + "product_mpn": "ADA2291", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "44.95", + "product_shipping_weight": "192.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2291", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2467", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2467-01.jpg", + "image_is_video": "0", + "product_name": "Super Awesome Sylvia's WaterColorBot", + "product_model": "2.0", + "product_mpn": "ADA2467", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "295.95", + "product_shipping_weight": "3,265.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2467", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1038", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1038-00.jpg", + "image_is_video": "0", + "product_name": "Art Controller Relay Board Kit", + "product_model": "", + "product_mpn": "ADA1038", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "17.95", + "product_shipping_weight": "38.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1038", + "product_stock": "0", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "304", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/304-00.jpg", + "image_is_video": "0", + "product_name": "The Original Egg-Bot! - Deluxe Kit!", + "product_model": "", + "product_mpn": "ADA304", + "product_master_category": "49", + "product_manufacturer": "EMSL", + "product_price": "220.00", + "product_shipping_weight": "1,270.1", + "product_url": "https:\/\/www.adafruit.com\/product\/304", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "351", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/351-00.jpg", + "image_is_video": "0", + "product_name": "netduino Plus (.NET-programmable microcontroller with Ethernet)", + "product_model": "", + "product_mpn": "ADA351", + "product_master_category": "52", + "product_manufacturer": "Netduino", + "product_price": "60.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/351", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "60.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "54.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "48.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "800", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/800-00.jpg", + "image_is_video": "0", + "product_name": "Netduino Go! Starter Pack (Modular .NET microcontroller)", + "product_model": "", + "product_mpn": "ADA800", + "product_master_category": "52", + "product_manufacturer": "Netduino", + "product_price": "99.95", + "product_shipping_weight": "186.5", + "product_url": "https:\/\/www.adafruit.com\/product\/800", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1228", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1228-00.jpg", + "image_is_video": "0", + "product_name": "NETduino 2 (.NET-programmable microcontroller)", + "product_model": "", + "product_mpn": "ADA1228", + "product_master_category": "52", + "product_manufacturer": "Netduino", + "product_price": "34.95", + "product_shipping_weight": "55.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1228", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1887", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1887-01.jpg", + "image_is_video": "0", + "product_name": "Espruino 1.4 - Open Source Javascript Microcontroller", + "product_model": "", + "product_mpn": "ADA1887", + "product_master_category": "52", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "9.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1887", + "product_stock": "15", + "products_hts": "8471.50.0150", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2486", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2486-00.jpg", + "image_is_video": "0", + "product_name": "NETduino 3 WiFi (.NET-programmable microcontroller)", + "product_model": "", + "product_mpn": "ADA2486", + "product_master_category": "52", + "product_manufacturer": "Netduino", + "product_price": "69.95", + "product_shipping_weight": "33.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2486", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2682", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2682-00.jpg", + "image_is_video": "0", + "product_name": "NETduino 3", + "product_model": "", + "product_mpn": "ADA2682", + "product_master_category": "52", + "product_manufacturer": "Netduino", + "product_price": "39.95", + "product_shipping_weight": "30.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2682", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2683", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2683-00.jpg", + "image_is_video": "0", + "product_name": "NETduino 3 Ethernet", + "product_model": "", + "product_mpn": "ADA2683", + "product_master_category": "52", + "product_manufacturer": "Netduino", + "product_price": "59.95", + "product_shipping_weight": "33.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2683", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4877", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4877-00.jpg", + "image_is_video": "0", + "product_name": "STM32F411 \"BlackPill\" Development Board", + "product_model": "", + "product_mpn": "ADA4877", + "product_master_category": "52", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4877", + "product_stock": "in stock", + "products_hts": "8456.11.7000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "336", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/336-00.jpg", + "image_is_video": "0", + "product_name": "netduino (.NET-programmable microcontroller)", + "product_model": "", + "product_mpn": "ADA336", + "product_master_category": "52", + "product_manufacturer": "Netduino", + "product_price": "30.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/336", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "30.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "27.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "24.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1104", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1104-03.jpg", + "image_is_video": "0", + "product_name": "netduino Plus 2 (.NET-programmable microcontroller)", + "product_model": "", + "product_mpn": "ADA1104", + "product_master_category": "52", + "product_manufacturer": "Netduino", + "product_price": "59.95", + "product_shipping_weight": "61.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1104", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "359", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/359-00.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Card - Classic 1K", + "product_model": "", + "product_mpn": "ADA359", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/359", + "product_stock": "in stock", + "products_hts": "8523.52.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "360", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/360-00.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC White Tag - Classic 1K", + "product_model": "", + "product_mpn": "ADA360", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/360", + "product_stock": "in stock", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "361", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/361-01.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Clear Tag - Classic 1K", + "product_model": "", + "product_mpn": "ADA361", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/361", + "product_stock": "75", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "362", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/362-01.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Sticker - Classic 1K", + "product_model": "", + "product_mpn": "ADA362", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/362", + "product_stock": "in stock", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "363", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/363-02.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Clear Keychain Fob - Classic 1K", + "product_model": "", + "product_mpn": "ADA363", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/363", + "product_stock": "in stock", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "364", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/364-05.jpg", + "image_is_video": "0", + "product_name": "PN532 NFC\/RFID controller breakout board", + "product_model": "v1.6", + "product_mpn": "ADA364", + "product_master_category": "55", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "26.7", + "product_url": "https:\/\/www.adafruit.com\/product\/364", + "product_stock": "82", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "365", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/365-00.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC tag assortment - Classic 1K", + "product_model": "", + "product_mpn": "ADA365", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "10.00", + "product_shipping_weight": "15.1", + "product_url": "https:\/\/www.adafruit.com\/product\/365", + "product_stock": "75", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "884", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/884-00.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Charm - Classic 1K", + "product_model": "", + "product_mpn": "ADA884", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/884", + "product_stock": "90", + "products_hts": "8523.52.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "921", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/921-02.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Bracelet - Classic 1K", + "product_model": "", + "product_mpn": "ADA921", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "17.5", + "product_url": "https:\/\/www.adafruit.com\/product\/921", + "product_stock": "in stock", + "products_hts": "8523.52.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "923", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/923-03.jpg", + "image_is_video": "0", + "product_name": "RFID RFID\/NFC S50 Card Reader - PS\/2 Interface", + "product_model": "", + "product_mpn": "ADA923", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "164.3", + "product_url": "https:\/\/www.adafruit.com\/product\/923", + "product_stock": "-3", + "products_hts": "8471.60.9050", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "999", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/999-00.jpg", + "image_is_video": "0", + "product_name": "Stainless Steel RFID Blocking Wallet", + "product_model": "", + "product_mpn": "ADA999", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "66.00", + "product_shipping_weight": "114.3", + "product_url": "https:\/\/www.adafruit.com\/product\/999", + "product_stock": "-3", + "products_hts": "4202.31.6000", + "products_coo": "IN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1482", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1482-02.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Leather Keychain Fob - Classic 1K", + "product_model": "", + "product_mpn": "ADA1482", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1482", + "product_stock": "23", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1483", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1483-00.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Plastic Nail - Classic 1K", + "product_model": "", + "product_mpn": "ADA1483", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1483", + "product_stock": "in stock", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2800", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2800-01.jpg", + "image_is_video": "0", + "product_name": "Micro NFC\/RFID Transponder - NTAG203 13.56MHz", + "product_model": "", + "product_mpn": "ADA2800", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "0.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2800", + "product_stock": "in stock", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2801", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2801-00.jpg", + "image_is_video": "0", + "product_name": "RFID \/ NFC Smart Ring - Size 7 - NTAG213", + "product_model": "", + "product_mpn": "ADA2801", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2801", + "product_stock": "16", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3041", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2802", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2802-00.jpg", + "image_is_video": "0", + "product_name": "RFID \/ NFC Smart Ring - Size 8 - NTAG213", + "product_model": "", + "product_mpn": "ADA2802", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2802", + "product_stock": "3", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3041", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2803", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2803-00.jpg", + "image_is_video": "0", + "product_name": "RFID \/ NFC Smart Ring - Size 9 - NTAG213", + "product_model": "", + "product_mpn": "ADA2803", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2803", + "product_stock": "11", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3041", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2804", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2804-00.jpg", + "image_is_video": "0", + "product_name": "RFID \/ NFC Smart Ring - Size 10 - NTAG213", + "product_model": "", + "product_mpn": "ADA2804", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2804", + "product_stock": "8", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3041", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2805", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2805-00.jpg", + "image_is_video": "0", + "product_name": "RFID \/ NFC Smart Ring - Size 11 - NTAG213", + "product_model": "", + "product_mpn": "ADA2805", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2805", + "product_stock": "11", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3041", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2806", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2806-00.jpg", + "image_is_video": "0", + "product_name": "RFID \/ NFC Smart Ring - Size 12 - NTAG213", + "product_model": "", + "product_mpn": "ADA2806", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "45.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2806", + "product_stock": "19", + "products_hts": "8543.90.8880", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3041", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3781", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3781-00.jpg", + "image_is_video": "0", + "product_name": "RFID\/NFC Nail Stickers - 5 Pack with White LEDs", + "product_model": "", + "product_mpn": "ADA3781", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "8.50", + "product_shipping_weight": "0.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3781", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4032", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4032-02.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Sticker - NTAG203 Tag", + "product_model": "", + "product_mpn": "ADA4032", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4032", + "product_stock": "0", + "products_hts": "8541.40.9500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4033", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4033-01.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC White Tag - NTAG203 Chip", + "product_model": "", + "product_mpn": "ADA4033", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4033", + "product_stock": "in stock", + "products_hts": "8523.52.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4034", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4034-00.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Card - NTAG203 Chip", + "product_model": "", + "product_mpn": "ADA4034", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4034", + "product_stock": "in stock", + "products_hts": "8523.52.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4043", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4043-00.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Bracelet - NTAG203 Chip", + "product_model": "", + "product_mpn": "ADA4043", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "15.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4043", + "product_stock": "17", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4429", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4429-01.jpg", + "image_is_video": "0", + "product_name": "13.56MHz RFID\/NFC Black Sewable Button - NTAG213", + "product_model": "24mm Diameter", + "product_mpn": "ADA4429", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4429", + "product_stock": "in stock", + "products_hts": "8541.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4701", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4701-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit ST25DV16K I2C RFID EEPROM Breakout - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4701", + "product_master_category": "55", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4701", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1091", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1091-00.jpg", + "image_is_video": "0", + "product_name": "Stainless Steel RFID Blocking Passport Sleeve", + "product_model": "", + "product_mpn": "ADA1091", + "product_master_category": "55", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "120.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1091", + "product_stock": "-3", + "products_hts": "4202.31.6000", + "products_coo": "IN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "385", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/385-00.jpg", + "image_is_video": "0", + "product_name": "DHT22 temperature-humidity sensor + extras", + "product_model": "", + "product_mpn": "ADA385", + "product_master_category": "56", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/385", + "product_stock": "in stock", + "products_hts": "9025.80.10.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3721", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3721-00.jpg", + "image_is_video": "0", + "product_name": "AM2320 Digital Temperature and Humidity Sensor", + "product_model": "", + "product_mpn": "ADA3721", + "product_master_category": "56", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3721", + "product_stock": "in stock", + "products_hts": "9025.90.0600", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5064", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5064-00.jpg", + "image_is_video": "0", + "product_name": "SHT30 Temperature And Humidity Sensor - Wired Enclosed Shell", + "product_model": "", + "product_mpn": "ADA5064", + "product_master_category": "56", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "14.7", + "product_url": "https:\/\/www.adafruit.com\/product\/5064", + "product_stock": "0", + "products_hts": "8543.89.9600", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "246", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/246-00.jpg", + "image_is_video": "0", + "product_name": "Sensirion Temperature\/Humidity Sensor", + "product_model": "SHT11", + "product_mpn": "ADA246", + "product_master_category": "56", + "product_manufacturer": "Parallax", + "product_price": "35.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/246", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "35.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.50", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "386", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/386-00.jpg", + "image_is_video": "0", + "product_name": "DHT11 basic temperature-humidity sensor + extras", + "product_model": "", + "product_mpn": "ADA386", + "product_master_category": "56", + "product_manufacturer": null, + "product_price": "5.00", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/386", + "product_stock": "in stock", + "products_hts": "9025.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "393", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/393-00.jpg", + "image_is_video": "0", + "product_name": "AM2302 (wired DHT22) temperature-humidity sensor", + "product_model": "", + "product_mpn": "ADA393", + "product_master_category": "56", + "product_manufacturer": null, + "product_price": "15.00", + "product_shipping_weight": "15.3", + "product_url": "https:\/\/www.adafruit.com\/product\/393", + "product_stock": "in stock", + "products_hts": "9025.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "99", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/99-00.jpg", + "image_is_video": "0", + "product_name": "EM-406A GPS Module", + "product_model": "", + "product_mpn": "ADA99", + "product_master_category": "58", + "product_manufacturer": "USGlobalSat", + "product_price": "60.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/99", + "product_stock": "-3", + "products_hts": "8526.91.20", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "60.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "54.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "48.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "652", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/652-00.jpg", + "image_is_video": "0", + "product_name": "Coobro Geo Kit - DIY GPS Geocaching Pendant", + "product_model": "", + "product_mpn": "ADA652", + "product_master_category": "58", + "product_manufacturer": null, + "product_price": "75.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/652", + "product_stock": "-3", + "products_hts": "8526.91.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "75.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "60.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "660", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/660-00.jpg", + "image_is_video": "0", + "product_name": "UP501 Breadboard-friendly 66 channel GPS module w\/10 Hz updates", + "product_model": "MTK3329", + "product_mpn": "ADA660", + "product_master_category": "58", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/660", + "product_stock": "-3", + "products_hts": "8526.91.2000", + "products_coo": "FI", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "746", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/746-11.jpg", + "image_is_video": "0", + "product_name": "Adafruit Ultimate GPS Breakout - 66 channel w\/10 Hz updates", + "product_model": "Version 3", + "product_mpn": "ADA746", + "product_master_category": "58", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/746", + "product_stock": "in stock", + "products_hts": "8526.91.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "790", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/790-03.jpg", + "image_is_video": "0", + "product_name": "Ultimate GPS Module - 66 channel w\/10 Hz updates", + "product_model": "MTK3339 chipset", + "product_mpn": "ADA790", + "product_master_category": "58", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/790", + "product_stock": "0", + "products_hts": "8526.91.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4279", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4279-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Ultimate GPS with USB - 66 channel w\/10 Hz updates", + "product_model": "", + "product_mpn": "ADA4279", + "product_master_category": "58", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4279", + "product_stock": "5", + "products_hts": "8526.10.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2122", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2122-00.jpg", + "image_is_video": "0", + "product_name": "Laser Break Beam Sensor", + "product_model": "", + "product_mpn": "ADA2122", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2122", + "product_stock": "-3", + "products_hts": "9031.49.8000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4081", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4081-00.jpg", + "image_is_video": "0", + "product_name": "Flat Vibration Switch - Breadboard friendly", + "product_model": "", + "product_mpn": "ADA4081", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4081", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2384", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2384-00.jpg", + "image_is_video": "0", + "product_name": "Medium Vibration Sensor Switch", + "product_model": "", + "product_mpn": "ADA2384", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2384", + "product_stock": "in stock", + "products_hts": "8536.50.90.65", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1767", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1767-00.jpg", + "image_is_video": "0", + "product_name": "Slow Vibration Sensor Switch (Hard to trigger)", + "product_model": "", + "product_mpn": "ADA1767", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1767", + "product_stock": "in stock", + "products_hts": "8536.50.90.65", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2167", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2167-05.jpg", + "image_is_video": "0", + "product_name": "IR Break Beam Sensors with Premium Wire Header Ends - 3mm LEDs", + "product_model": "", + "product_mpn": "ADA2167", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2167", + "product_stock": "0", + "products_hts": "9031.49.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2168", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2168-04.jpg", + "image_is_video": "0", + "product_name": "IR Break Beam Sensor with Premium Wire Header Ends - 5mm LEDs", + "product_model": "", + "product_mpn": "ADA2168", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2168", + "product_stock": "in stock", + "products_hts": "9031.49.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1766", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1766-00.jpg", + "image_is_video": "0", + "product_name": "Fast Vibration Sensor Switch (Easy to trigger)", + "product_model": "", + "product_mpn": "ADA1766", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1766", + "product_stock": "in stock", + "products_hts": "8536.50.90.65", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "173", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/173-02.jpg", + "image_is_video": "0", + "product_name": "Tilt ball switch", + "product_model": "", + "product_mpn": "ADA173", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/173", + "product_stock": "in stock", + "products_hts": "8536.50.90.65", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.75", + "discounted_percent": "13", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "1.50", + "discounted_percent": "25", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1733", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1733-00.jpg", + "image_is_video": "0", + "product_name": "Anemometer Wind Speed Sensor w\/Analog Voltage Output", + "product_model": "", + "product_mpn": "ADA1733", + "product_master_category": "59", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "247.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1733", + "product_stock": "in stock", + "products_hts": "9015.80.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "33.71", + "discounted_percent": "25", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "182", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/182-00.jpg", + "image_is_video": "0", + "product_name": "Long Flex sensor", + "product_model": "", + "product_mpn": "ADA182", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/182", + "product_stock": "in stock", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "419", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/419-05.jpg", + "image_is_video": "0", + "product_name": "Membrane 3x4 Matrix Keypad + extras", + "product_model": "3x4", + "product_mpn": "ADA419", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "10.5", + "product_url": "https:\/\/www.adafruit.com\/product\/419", + "product_stock": "in stock", + "products_hts": "8471.60.6000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1070", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1070-01.jpg", + "image_is_video": "0", + "product_name": "Short Flex Sensor", + "product_model": "", + "product_mpn": "ADA1070", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1070", + "product_stock": "in stock", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1362", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1362-03.jpg", + "image_is_video": "0", + "product_name": "Standalone 5-Pad Capacitive Touch Sensor Breakout - AT42QT1070", + "product_model": "", + "product_mpn": "ADA1362", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1362", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1374", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1374-04.jpg", + "image_is_video": "0", + "product_name": "Standalone Momentary Capacitive Touch Sensor Breakout", + "product_model": "AT42QT1010", + "product_mpn": "ADA1374", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1374", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1375", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1375-05.jpg", + "image_is_video": "0", + "product_name": "Standalone Toggle Capacitive Touch Sensor Breakout", + "product_model": "AT42QT1012", + "product_mpn": "ADA1375", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1375", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1602", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1602-00.jpg", + "image_is_video": "0", + "product_name": "CAP1188 - 8-Key Capacitive Touch Sensor Breakout - I2C or SPI", + "product_model": "", + "product_mpn": "ADA1602", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1602", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1982", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1982-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 12-Key Capacitive Touch Sensor Breakout - MPR121", + "product_model": "STEMMA QT", + "product_mpn": "ADA1982", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1982", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2056", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2056-01.jpg", + "image_is_video": "0", + "product_name": "Solid Machined Metal Knob - 1\" Diameter", + "product_model": "", + "product_mpn": "ADA2056", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "17.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2056", + "product_stock": "0", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2765", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2765-00.jpg", + "image_is_video": "0", + "product_name": "Mini 2-Axis Analog Thumbstick", + "product_model": "", + "product_mpn": "ADA2765", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2765", + "product_stock": "in stock", + "products_hts": "8471.60.7000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2925", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2925-00.jpg", + "image_is_video": "0", + "product_name": "Mini 8-Way Rotary Selector Switch - SP8T", + "product_model": "", + "product_mpn": "ADA2925", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "1.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2925", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3102", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3102-01.jpg", + "image_is_video": "0", + "product_name": "Mini Analog Joystick - 10K Potentiometers", + "product_model": "", + "product_mpn": "ADA3102", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "78.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3102", + "product_stock": "in stock", + "products_hts": "8471.60.7000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3103", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3103-01.jpg", + "image_is_video": "0", + "product_name": "PSP 3000 2-Axis Analog Thumb Joystick", + "product_model": "", + "product_mpn": "ADA3103", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3103", + "product_stock": "15", + "products_hts": "8536.50.9040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3246", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3246-00.jpg", + "image_is_video": "0", + "product_name": "Analog Mini Thumbstick Breakout Board", + "product_model": "", + "product_mpn": "ADA3246", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3246", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3845", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3845-03.jpg", + "image_is_video": "1", + "product_name": "3x4 Matrix Keypad", + "product_model": "", + "product_mpn": "ADA3845", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "19.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3845", + "product_stock": "0", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4060", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4060-01.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Express Soil Sensor Mini Kit", + "product_model": "", + "product_mpn": "ADA4060", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "35.00", + "product_shipping_weight": "140.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4060", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "35.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "28.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4830", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4830-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit MPR121 12-Key Capacitive Touch Sensor Gator Breakout", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4830", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4830", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4931", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4931-00.jpg", + "image_is_video": "1", + "product_name": "Piezoelectric Ribbon Sensor - 2 feet \/ 600mm long", + "product_model": "", + "product_mpn": "ADA4931", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4931", + "product_stock": "in stock", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5093", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5093-00.jpg", + "image_is_video": "0", + "product_name": "Slim Rubber Rotary Encoder Knob - 11.5mm x 14.5mm D-Shaft", + "product_model": "", + "product_mpn": "ADA5093", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5093", + "product_stock": "in stock", + "products_hts": "8536.69.4051", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2047", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2047-03.jpg", + "image_is_video": "0", + "product_name": "Potentiometer Knob - Soft Touch T18 - White", + "product_model": "", + "product_mpn": "ADA2047", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "0.50", + "product_shipping_weight": "1.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2047", + "product_stock": "in stock", + "products_hts": "3926.90.2500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2046", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2046-03.jpg", + "image_is_video": "0", + "product_name": "Potentiometer Knob - Soft Touch T18 - Red", + "product_model": "", + "product_mpn": "ADA2046", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "0.50", + "product_shipping_weight": "1.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2046", + "product_stock": "in stock", + "products_hts": "3926.90.2500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2057", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2057-06.jpg", + "image_is_video": "0", + "product_name": "Slim Metal Potentiometer Knob - 10mm Diameter x 15mm - T18", + "product_model": "", + "product_mpn": "ADA2057", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2057", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2048", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2048-03.jpg", + "image_is_video": "0", + "product_name": "Potentiometer Knob - Soft Touch T18 - Blue", + "product_model": "", + "product_mpn": "ADA2048", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "0.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2048", + "product_stock": "in stock", + "products_hts": "3926.90.2500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2055", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2055-05.jpg", + "image_is_video": "0", + "product_name": "Scrubber Knob for Rotary Encoder - 35mm", + "product_model": "", + "product_mpn": "ADA2055", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2055", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2058", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2058-01.jpg", + "image_is_video": "0", + "product_name": "Slim Metal Potentiometer Knob - 10mm Diameter x 10mm - T18", + "product_model": "", + "product_mpn": "ADA2058", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2058", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1333", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1333-00.jpg", + "image_is_video": "0", + "product_name": "Membrane LED Keypad + extras", + "product_model": "", + "product_mpn": "ADA1333", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1333", + "product_stock": "in stock", + "products_hts": "8471.60.6000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1824", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1824-03.jpg", + "image_is_video": "0", + "product_name": "3x4 Phone-style Matrix Keypad", + "product_model": "", + "product_mpn": "ADA1824", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "8.50", + "product_shipping_weight": "36.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1824", + "product_stock": "71", + "products_hts": "8471.60.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "342", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/342-05.jpg", + "image_is_video": "0", + "product_name": "Wii controller (Nunchuck \/ Wiichuck)", + "product_model": "", + "product_mpn": "ADA342", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "112.1", + "product_url": "https:\/\/www.adafruit.com\/product\/342", + "product_stock": "in stock", + "products_hts": "9504.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2216", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2216-00.jpg", + "image_is_video": "0", + "product_name": "Bare Conductive Touch Board", + "product_model": "", + "product_mpn": "ADA2216", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "50.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2216", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "444", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/444-05.jpg", + "image_is_video": "0", + "product_name": "PSP 2-Axis Analog Thumb Joystick", + "product_model": "", + "product_mpn": "ADA444", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/444", + "product_stock": "in stock", + "products_hts": "8536.50.9040", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "423", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/423-00.jpg", + "image_is_video": "0", + "product_name": "Foot switch", + "product_model": "", + "product_mpn": "ADA423", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "212.0", + "product_url": "https:\/\/www.adafruit.com\/product\/423", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "837", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/837-00.jpg", + "image_is_video": "0", + "product_name": "Capacitive Trackpad\/Touchpad - Microcontroller-Friendly PS\/2", + "product_model": "", + "product_mpn": "ADA837", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "27.50", + "product_shipping_weight": "61.9", + "product_url": "https:\/\/www.adafruit.com\/product\/837", + "product_stock": "22", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "333", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/333-04.jpg", + "image_is_video": "0", + "product_name": "Resistive Touch screen - 3.7\" Diagonal", + "product_model": "", + "product_mpn": "ADA333", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/333", + "product_stock": "29", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1917", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1917-04.jpg", + "image_is_video": "0", + "product_name": "DIY Sensor Film Kit - 4x6\" Small Kit", + "product_model": "", + "product_mpn": "ADA1917", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "18.00", + "product_shipping_weight": "49.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1917", + "product_stock": "0", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.20", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1069", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1069-00.jpg", + "image_is_video": "0", + "product_name": "Circular Soft Potentiometer (Ribbon Sensor)", + "product_model": "", + "product_mpn": "ADA1069", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1069", + "product_stock": "39", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1332", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1332-00.jpg", + "image_is_video": "0", + "product_name": "Membrane 1x4 Keypad + Extras", + "product_model": "", + "product_mpn": "ADA1332", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1332", + "product_stock": "in stock", + "products_hts": "8471.60.6000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "245", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/245-01.jpg", + "image_is_video": "0", + "product_name": "2-Axis Joystick", + "product_model": "", + "product_mpn": "ADA245", + "product_master_category": "60", + "product_manufacturer": "Parallax", + "product_price": "6.95", + "product_shipping_weight": "13.9", + "product_url": "https:\/\/www.adafruit.com\/product\/245", + "product_stock": "in stock", + "products_hts": "8536.50.9040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1071", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1071-03.jpg", + "image_is_video": "0", + "product_name": "Extra-long force-sensitive resistor (FSR)", + "product_model": "Interlink 408", + "product_mpn": "ADA1071", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1071", + "product_stock": "1", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "178", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/178-00.jpg", + "image_is_video": "0", + "product_name": "Linear SoftPot (Ribbon Sensor)", + "product_model": "100mm", + "product_mpn": "ADA178", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/178", + "product_stock": "90", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "512", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/512-04.jpg", + "image_is_video": "0", + "product_name": "Analog 2-axis Thumb Joystick with Select Button + Breakout Board", + "product_model": "", + "product_mpn": "ADA512", + "product_master_category": "60", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/512", + "product_stock": "in stock", + "products_hts": "8537.10.9170", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1075", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1075-00.jpg", + "image_is_video": "0", + "product_name": "Square Force-Sensitive Resistor (FSR)", + "product_model": "Interlink 406", + "product_mpn": "ADA1075", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1075", + "product_stock": "in stock", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "377", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/377-02.jpg", + "image_is_video": "0", + "product_name": "Rotary Encoder + Extras", + "product_model": "", + "product_mpn": "ADA377", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/377", + "product_stock": "0", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "166", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/166-00.jpg", + "image_is_video": "0", + "product_name": "Round Force-Sensitive Resistor (FSR)", + "product_model": "Interlink 402", + "product_mpn": "ADA166", + "product_master_category": "60", + "product_manufacturer": null, + "product_price": "7.00", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/166", + "product_stock": "in stock", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.30", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "157", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/157-00.jpg", + "image_is_video": "0", + "product_name": "IR (Infrared) Receiver Sensor", + "product_model": "TSOP38238", + "product_mpn": "ADA157", + "product_master_category": "61", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/157", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "1.46", + "discounted_percent": "25", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "161", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/161-00.jpg", + "image_is_video": "0", + "product_name": "Photo cell (CdS photoresistor)", + "product_model": "", + "product_mpn": "ADA161", + "product_master_category": "61", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.7", + "product_url": "https:\/\/www.adafruit.com\/product\/161", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1777", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1777-00.jpg", + "image_is_video": "0", + "product_name": "SI1145 Digital UV Index \/ IR \/ Visible Light Sensor", + "product_model": "", + "product_mpn": "ADA1777", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1777", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1918", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1918-01.jpg", + "image_is_video": "0", + "product_name": "Analog UV Light Sensor Breakout - GUVA-S12SD", + "product_model": "", + "product_mpn": "ADA1918", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "6.50", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1918", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2748", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2748-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit ALS-PT19 Analog Light Sensor Breakout", + "product_model": "", + "product_mpn": "ADA2748", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2748", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2831", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2831-00.jpg", + "image_is_video": "0", + "product_name": "Photo Transistor Light Sensor", + "product_model": "", + "product_mpn": "ADA2831", + "product_master_category": "61", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2831", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2899", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2899-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit VEML6070 UV Index Sensor Breakout", + "product_model": "", + "product_mpn": "ADA2899", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2899", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3611", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3611-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit STEMMA - TSL2561 Digital Lux \/ Light Sensor", + "product_model": "", + "product_mpn": "ADA3611", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3611", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3779", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3779-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit AS7262 6-Channel Visible Light \/ Color Sensor Breakout", + "product_model": "", + "product_mpn": "ADA3779", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3779", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3930", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3930-00.jpg", + "image_is_video": "0", + "product_name": "Miniature Reflective Infrared Optical Sensors - 5 Pack", + "product_model": "ITR20001\/T", + "product_mpn": "ADA3930", + "product_master_category": "61", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3930", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3964", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3964-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit VEML6075 UVA UVB and UV Index Sensor Breakout", + "product_model": "", + "product_mpn": "ADA3964", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3964", + "product_stock": "-10", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3985", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3985-04.jpg", + "image_is_video": "1", + "product_name": "T-Slot Photo Interrupter with 1 Meter Cable", + "product_model": "", + "product_mpn": "ADA3985", + "product_master_category": "61", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3985", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3986", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3986-00.jpg", + "image_is_video": "0", + "product_name": "T-Slot Photo Interrupter", + "product_model": "", + "product_mpn": "ADA3986", + "product_master_category": "61", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3986", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4162", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4162-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit VEML7700 Lux Sensor - I2C Light Sensor", + "product_model": "", + "product_mpn": "ADA4162", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4162", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4681", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4681-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit BH1750 Light Sensor - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4681", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "4.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4681", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4698", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4698-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit AS7341 10-Channel Light \/ Color Sensor Breakout", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4698", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4698", + "product_stock": "46", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4831", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4831-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit LTR390 UV Light Sensor - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4831", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4831", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2349", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2349-00.jpg", + "image_is_video": "1", + "product_name": "Reflective Infrared IR Optical Sensor with 470 and 10K Resistors", + "product_model": "", + "product_mpn": "ADA2349", + "product_master_category": "61", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2349", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1980", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1980-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit TSL2591 High Dynamic Range Digital Light Sensor", + "product_model": "STEMMA QT", + "product_mpn": "ADA1980", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1980", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1384", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1384-02.jpg", + "image_is_video": "0", + "product_name": "GA1A12S202 Log-scale Analog Light Sensor", + "product_model": "", + "product_mpn": "ADA1384", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1384", + "product_stock": "-10", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1334", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1334-04.jpg", + "image_is_video": "0", + "product_name": "RGB Color Sensor with IR filter and White LED - TCS34725", + "product_model": "", + "product_mpn": "ADA1334", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1334", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "439", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/439-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit TSL2561 Digital Luminosity\/Lux\/Light Sensor Breakout", + "product_model": "", + "product_mpn": "ADA439", + "product_master_category": "61", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/439", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3515", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3515-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit HTU21D-F Temperature & Humidity Sensor Breakout Board", + "product_model": "Fully Assembled", + "product_mpn": "ADA3515", + "product_master_category": "66", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3515", + "product_stock": "0", + "products_hts": "9026.80.6000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "3926", + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4099", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4099-09.jpg", + "image_is_video": "0", + "product_name": "SHT-30 Mesh-protected Weather-proof Temperature\/Humidity Sensor", + "product_model": "1M Cable", + "product_mpn": "ADA4099", + "product_master_category": "66", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "70.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4099", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4535", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4535-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit HTS221 - Temperature & Humidity Sensor Breakout Board", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4535", + "product_master_category": "66", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4535", + "product_stock": "25", + "products_hts": "9026.80.6000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4566", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4566-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit AHT20 - Temperature & Humidity Sensor Breakout Board", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4566", + "product_master_category": "66", + "product_manufacturer": "Adafruit", + "product_price": "4.50", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4566", + "product_stock": "in stock", + "products_hts": "9026.80.6000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4832", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4832-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit HTU31 Temperature & Humidity Sensor Breakout Board", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4832", + "product_master_category": "66", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4832", + "product_stock": "in stock", + "products_hts": "9025.80.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4881", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4881-01.jpg", + "image_is_video": "0", + "product_name": "Mijia Bluetooth Temperature\/Humidity Sensor with LCD Display", + "product_model": "", + "product_mpn": "ADA4881", + "product_master_category": "66", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "32.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4881", + "product_stock": "in stock", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1638", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1638-03.jpg", + "image_is_video": "0", + "product_name": "Humidity and Temperature Sensor - SHT15 Breakout", + "product_model": "SHT15", + "product_mpn": "ADA1638", + "product_master_category": "66", + "product_manufacturer": null, + "product_price": "41.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1638", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "41.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "37.76", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1965", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1965-01.jpg", + "image_is_video": "0", + "product_name": "Chirp! The Plant Watering Alarm", + "product_model": "", + "product_mpn": "ADA1965", + "product_master_category": "66", + "product_manufacturer": null, + "product_price": "15.00", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1965", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1899", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1899-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit HTU21D-F Temperature & Humidity Sensor Breakout Board", + "product_model": "STEMMA QT", + "product_mpn": "ADA1899", + "product_master_category": "66", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1899", + "product_stock": "in stock", + "products_hts": "9025.80.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3926", + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1293", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1293-00.jpg", + "image_is_video": "0", + "product_name": "AM2315 - Encased I2C Temperature\/Humidity Sensor", + "product_model": "", + "product_mpn": "ADA1293", + "product_master_category": "66", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "64.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1293", + "product_stock": "in stock", + "products_hts": "9025.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1298", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1298-09.jpg", + "image_is_video": "0", + "product_name": "SHT-10 Mesh-protected Weather-proof Temperature\/Humidity Sensor", + "product_model": "", + "product_mpn": "ADA1298", + "product_master_category": "66", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "66.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1298", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1386", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1386-07.jpg", + "image_is_video": "0", + "product_name": "Miniature TTL Serial JPEG Camera with NTSC Video", + "product_model": "", + "product_mpn": "ADA1386", + "product_master_category": "68", + "product_manufacturer": null, + "product_price": "35.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1386", + "product_stock": "in stock", + "products_hts": "8525.40.00", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "35.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "32.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "28.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3202", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3202-09.jpg", + "image_is_video": "0", + "product_name": "Mini Spy Camera with Trigger for Photo or Video", + "product_model": "", + "product_mpn": "ADA3202", + "product_master_category": "68", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "20.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3202", + "product_stock": "in stock", + "products_hts": "8525.80.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4417", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4417-04.jpg", + "image_is_video": "0", + "product_name": "Sony Spresense 5MP Camera Board", + "product_model": "", + "product_mpn": "ADA4417", + "product_master_category": "68", + "product_manufacturer": null, + "product_price": "35.00", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4417", + "product_stock": "18", + "products_hts": "8542.39.0001", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4478", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4478-00.jpg", + "image_is_video": "0", + "product_name": "OpenMV Cam H7 - MicroPython Embedded Vision + Machine Learning", + "product_model": "", + "product_mpn": "ADA4478", + "product_master_category": "68", + "product_manufacturer": null, + "product_price": "65.00", + "product_shipping_weight": "22.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4478", + "product_stock": "0", + "products_hts": "8525.80.4000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4889", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4889-01.jpg", + "image_is_video": "0", + "product_name": "Kano Webcam with Goose-Neck, Ring Light, and Macro Lens", + "product_model": "", + "product_mpn": "ADA4889", + "product_master_category": "68", + "product_manufacturer": "Kano", + "product_price": "29.95", + "product_shipping_weight": "84.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4889", + "product_stock": "in stock", + "products_hts": "8525.80.5050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1722", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1722-00.jpg", + "image_is_video": "0", + "product_name": "Infragram DIY Plant Analysis Webcam", + "product_model": "", + "product_mpn": "ADA1722", + "product_master_category": "68", + "product_manufacturer": null, + "product_price": "55.00", + "product_shipping_weight": "71.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1722", + "product_stock": "-3", + "products_hts": "8525.40.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1906", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1906-04.jpg", + "image_is_video": "0", + "product_name": "Pixy2 CMUcam5 Sensor", + "product_model": "", + "product_mpn": "ADA1906", + "product_master_category": "68", + "product_manufacturer": null, + "product_price": "64.95", + "product_shipping_weight": "44.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1906", + "product_stock": "89", + "products_hts": "8525.40.00", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "613", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/613-00.jpg", + "image_is_video": "0", + "product_name": "Weatherproof TTL Serial JPEG Camera with NTSC Video and IR LEDs", + "product_model": "", + "product_mpn": "ADA613", + "product_master_category": "68", + "product_manufacturer": null, + "product_price": "54.95", + "product_shipping_weight": "162.9", + "product_url": "https:\/\/www.adafruit.com\/product\/613", + "product_stock": "in stock", + "products_hts": "8525.40.00", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "43.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "397", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/397-07.jpg", + "image_is_video": "0", + "product_name": "TTL Serial JPEG Camera with NTSC Video", + "product_model": "", + "product_mpn": "ADA397", + "product_master_category": "68", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "55.0", + "product_url": "https:\/\/www.adafruit.com\/product\/397", + "product_stock": "0", + "products_hts": "8525.40.00", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4038", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4038-02.jpg", + "image_is_video": "0", + "product_name": "TinyFPGA BX - ICE40 FPGA Development Board with USB", + "product_model": "", + "product_mpn": "ADA4038", + "product_master_category": "69", + "product_manufacturer": null, + "product_price": "38.95", + "product_shipping_weight": "12.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4038", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4248", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4248-08.jpg", + "image_is_video": "0", + "product_name": "NeTV2 - Open Video Development Board", + "product_model": "", + "product_mpn": "ADA4248", + "product_master_category": "69", + "product_manufacturer": null, + "product_price": "349.95", + "product_shipping_weight": "457.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4248", + "product_stock": "0", + "products_hts": "8525.80.5050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4332", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4332-04.jpg", + "image_is_video": "0", + "product_name": "Fomu - ICE40 FPGA Development Board", + "product_model": "", + "product_mpn": "ADA4332", + "product_master_category": "69", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4332", + "product_stock": "6", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1553", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1553-00.jpg", + "image_is_video": "0", + "product_name": "Mojo FPGA Development Board", + "product_model": "", + "product_mpn": "ADA1553", + "product_master_category": "69", + "product_manufacturer": null, + "product_price": "79.95", + "product_shipping_weight": "48.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1553", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "451", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/451-02.jpg", + "image_is_video": "0", + "product_name": "DE0-Nano - Altera Cyclone IV FPGA starter board", + "product_model": "", + "product_mpn": "ADA451", + "product_master_category": "69", + "product_manufacturer": "Terasic", + "product_price": "149.95", + "product_shipping_weight": "243.6", + "product_url": "https:\/\/www.adafruit.com\/product\/451", + "product_stock": "23", + "products_hts": "8542.90.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "484", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/484-01.jpg", + "image_is_video": "0", + "product_name": "Micro-controllers - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA484", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/484", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "488", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/488-00.jpg", + "image_is_video": "0", + "product_name": "FIRST\u00ae Robotics - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA488", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/488", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "489", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/489-00.jpg", + "image_is_video": "0", + "product_name": "Reverse Engineer - Skill badge, Lenticular printing + pin-on", + "product_model": "", + "product_mpn": "ADA489", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/489", + "product_stock": "-3", + "products_hts": "4911.91.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "496", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/496-02.jpg", + "image_is_video": "0", + "product_name": "Learn to solder PCB badge kit by MAKE Magazine - MakerSHED", + "product_model": "", + "product_mpn": "ADA496", + "product_master_category": "70", + "product_manufacturer": null, + "product_price": "3.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/496", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1273", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1273-00.jpg", + "image_is_video": "0", + "product_name": "Scratch - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA1273", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1273", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3355", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3355-00.jpg", + "image_is_video": "0", + "product_name": "Privacy Badger - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA3355", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3355", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3504", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3504-00.jpg", + "image_is_video": "0", + "product_name": "Altium - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA3504", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3504", + "product_stock": "0", + "products_hts": "5810.92.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3545", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3545-00.jpg", + "image_is_video": "0", + "product_name": "Citizen Engineer - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA3545", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3545", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3681", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3681-01.jpg", + "image_is_video": "0", + "product_name": "ATMakers \u2013 Skill Badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA3681", + "product_master_category": "70", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3681", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3682", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3682-00.jpg", + "image_is_video": "0", + "product_name": "micro:bit - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA3682", + "product_master_category": "70", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3682", + "product_stock": "in stock", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "614", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/614-00.jpg", + "image_is_video": "0", + "product_name": "gEDA - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA614", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/614", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "720", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/720-00.jpg", + "image_is_video": "0", + "product_name": "KiCad skill badge!", + "product_model": "", + "product_mpn": "ADA720", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/720", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "506", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/506-01.jpg", + "image_is_video": "0", + "product_name": "Water jet - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA506", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/506", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1964", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1964-00.jpg", + "image_is_video": "0", + "product_name": "Swift - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA1964", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1964", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1642", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1642-00.jpg", + "image_is_video": "0", + "product_name": "Bitcoin - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA1642", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1642", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "581", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/581-00.jpg", + "image_is_video": "0", + "product_name": "Blender - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA581", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/581", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1232", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1232-00.jpg", + "image_is_video": "0", + "product_name": "Perl skill badge!", + "product_model": "", + "product_mpn": "ADA1232", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1232", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "582", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/582-00.jpg", + "image_is_video": "0", + "product_name": "Hacked Kinect - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA582", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/582", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "655", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/655-00.jpg", + "image_is_video": "0", + "product_name": "QR Code - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA655", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/655", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "505", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/505-00.jpg", + "image_is_video": "0", + "product_name": "TechShop - Badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA505", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/505", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "886", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/886-00.jpg", + "image_is_video": "0", + "product_name": "GeekDad- Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA886", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/886", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "713", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/713-00.jpg", + "image_is_video": "0", + "product_name": "PHP - Skill badge!", + "product_model": "", + "product_mpn": "ADA713", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/713", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "748", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/748-00.jpg", + "image_is_video": "0", + "product_name": "ESD (Electrostatic discharge) - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA748", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/748", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "656", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/656-00.jpg", + "image_is_video": "0", + "product_name": "BSD Daemon - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA656", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/656", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "657", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/657-00.jpg", + "image_is_video": "0", + "product_name": "Biohacking- Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA657", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/657", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "612", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/612-00.jpg", + "image_is_video": "0", + "product_name": "I \"heart\" METRIC - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA612", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/612", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "516", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/516-00.jpg", + "image_is_video": "0", + "product_name": "Instructables - Badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA516", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/516", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "566", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/566-00.jpg", + "image_is_video": "0", + "product_name": "CadSoft EAGLE - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA566", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/566", + "product_stock": "-10", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "568", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/568-00.jpg", + "image_is_video": "0", + "product_name": "Drawdio! - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA568", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/568", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "785", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/785-00.jpg", + "image_is_video": "0", + "product_name": "Ruby - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA785", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/785", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "712", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/712-00.jpg", + "image_is_video": "0", + "product_name": "Welding - Skill badge!", + "product_model": "", + "product_mpn": "ADA712", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/712", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "569", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/569-00.jpg", + "image_is_video": "0", + "product_name": "Tesla coil - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA569", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/569", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "605", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/605-00.jpg", + "image_is_video": "0", + "product_name": "Educational mini UAVs- Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA605", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/605", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "747", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/747-00.jpg", + "image_is_video": "0", + "product_name": "Ada Lovelace - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA747", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/747", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "662", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/662-00.jpg", + "image_is_video": "0", + "product_name": "Catapult - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA662", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/662", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "552", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/552-01.jpg", + "image_is_video": "0", + "product_name": "Processing - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA552", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/552", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "595", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/595-01.jpg", + "image_is_video": "0", + "product_name": "Digi XBee - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA595", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/595", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "621", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/621-00.jpg", + "image_is_video": "0", + "product_name": "Glow-in-the-dark \"Radiation\" Skill badge", + "product_model": "", + "product_mpn": "ADA621", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/621", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "477", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/477-00.jpg", + "image_is_video": "0", + "product_name": "Open source hardware - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA477", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/477", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "604", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/604-00.jpg", + "image_is_video": "0", + "product_name": "HTML 5 - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA604", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/604", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "511", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/511-01.jpg", + "image_is_video": "0", + "product_name": "\"Brewing\" - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA511", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/511", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "470", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/470-00.jpg", + "image_is_video": "0", + "product_name": "TV-B-Gone, Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA470", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/470", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "467", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/467-00.jpg", + "image_is_video": "0", + "product_name": "Laser cutter - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA467", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/467", + "product_stock": "1", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "510", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/510-00.jpg", + "image_is_video": "0", + "product_name": "Dumpster Diving! - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA510", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/510", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "503", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/503-00.jpg", + "image_is_video": "0", + "product_name": "Hack-a-Day - Badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA503", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/503", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "507", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/507-00.jpg", + "image_is_video": "0", + "product_name": "Oscilloscope - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA507", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/507", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "750", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/750-02.jpg", + "image_is_video": "0", + "product_name": "Python - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA750", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/750", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "596", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/596-00.jpg", + "image_is_video": "0", + "product_name": "Ohms law, VIR - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA596", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/596", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "570", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/570-00.jpg", + "image_is_video": "0", + "product_name": "High-altitude balloon - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA570", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/570", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "502", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/502-00.jpg", + "image_is_video": "0", + "product_name": "Multi-Meter! - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA502", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/502", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "551", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/551-00.jpg", + "image_is_video": "0", + "product_name": "Android - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA551", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/551", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "478", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/478-00.jpg", + "image_is_video": "0", + "product_name": "Learn to program \"Hello world\" - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA478", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/478", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "567", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/567-00.jpg", + "image_is_video": "0", + "product_name": "Beagle Bone - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA567", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/567", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "565", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/565-00.jpg", + "image_is_video": "0", + "product_name": "Sparky the Magic Blue Smoke Monster - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA565", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/565", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "553", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/553-00.jpg", + "image_is_video": "0", + "product_name": "Linux \"Tux\" Penguin - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA553", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/553", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "497", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/497-00.jpg", + "image_is_video": "0", + "product_name": "Robotics! - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA497", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/497", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "465", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/465-02.jpg", + "image_is_video": "0", + "product_name": "Learn to solder - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA465", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/465", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "479", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/479-00.jpg", + "image_is_video": "0", + "product_name": "LEDs - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA479", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/479", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1300", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1300-00.jpg", + "image_is_video": "0", + "product_name": "Arduino - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA1300", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1300", + "product_stock": "0", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "906", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/906-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA906", + "product_master_category": "70", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/906", + "product_stock": "in stock", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "949", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/949-00.jpg", + "image_is_video": "0", + "product_name": "chipKIT uC32", + "product_model": "", + "product_mpn": "ADA949", + "product_master_category": "71", + "product_manufacturer": null, + "product_price": "34.99", + "product_shipping_weight": "30.4", + "product_url": "https:\/\/www.adafruit.com\/product\/949", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "469", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/469-00.jpg", + "image_is_video": "0", + "product_name": "PIC32 Pinguino - PIC32MX440F256H dev board", + "product_model": "", + "product_mpn": "ADA469", + "product_master_category": "71", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/469", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "BG", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "561", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/561-00.jpg", + "image_is_video": "0", + "product_name": "Geiger Counter Kit Case", + "product_model": "", + "product_mpn": "ADA561", + "product_master_category": "73", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "59.5", + "product_url": "https:\/\/www.adafruit.com\/product\/561", + "product_stock": "1", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "483", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/483-00.jpg", + "image_is_video": "0", + "product_name": "Geiger Counter Kit - Radiation Sensor", + "product_model": "", + "product_mpn": "ADA483", + "product_master_category": "73", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "60.6", + "product_url": "https:\/\/www.adafruit.com\/product\/483", + "product_stock": "23", + "products_hts": "9030.10.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1133", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1133-03.jpg", + "image_is_video": "0", + "product_name": "Papertronics - Lunar Modules", + "product_model": "", + "product_mpn": "ADA1133", + "product_master_category": "74", + "product_manufacturer": "Sparkle Labs", + "product_price": "14.00", + "product_shipping_weight": "102.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1133", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "487", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/487-01.jpg", + "image_is_video": "0", + "product_name": "Discover Electronics Kit", + "product_model": "2.0", + "product_mpn": "ADA487", + "product_master_category": "74", + "product_manufacturer": "Sparkle Labs", + "product_price": "49.95", + "product_shipping_weight": "462.8", + "product_url": "https:\/\/www.adafruit.com\/product\/487", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1394", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1394-00.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Express - GH STUDENT EDITION", + "product_model": "", + "product_mpn": "ADA1394", + "product_master_category": "76", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1394", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1527", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1527-00.jpg", + "image_is_video": "0", + "product_name": "Volta Racers Solar Motorcar Kit", + "product_model": "", + "product_mpn": "ADA1527", + "product_master_category": "76", + "product_manufacturer": "Toy Labs", + "product_price": "20.00", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1527", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "764", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/764-00.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Bluefruit - Bluetooth Low Energy - GH STUDENT", + "product_model": "", + "product_mpn": "ADA764", + "product_master_category": "76", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/764", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "952", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/952-00.jpg", + "image_is_video": "0", + "product_name": "EL Flowing Effect Wire with Inverter - Green 2.0 meter (6.5 ft)", + "product_model": "", + "product_mpn": "ADA952", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "50.0", + "product_url": "https:\/\/www.adafruit.com\/product\/952", + "product_stock": "-3", + "products_hts": "8531.80.0050", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "676", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/676-00.jpg", + "image_is_video": "0", + "product_name": "EL wire welted piping starter pack - Aqua - 5 meters", + "product_model": "", + "product_mpn": "ADA676", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "27.95", + "product_shipping_weight": "110.1", + "product_url": "https:\/\/www.adafruit.com\/product\/676", + "product_stock": "82", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "25.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "953", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/953-00.jpg", + "image_is_video": "0", + "product_name": "EL Flowing Effect Wire with Inverter - Pink 2.0 meter (6.5 ft)", + "product_model": "", + "product_mpn": "ADA953", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "56.6", + "product_url": "https:\/\/www.adafruit.com\/product\/953", + "product_stock": "-3", + "products_hts": "8531.80.0050", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "585", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/585-00.jpg", + "image_is_video": "0", + "product_name": "EL wire starter pack - Yellow 2.5 meter (8.2 ft)", + "product_model": "", + "product_mpn": "ADA585", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/585", + "product_stock": "86", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "320", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "588", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/588-00.jpg", + "image_is_video": "0", + "product_name": "EL wire starter pack - Pink 2.5 meter (8.2 ft)", + "product_model": "", + "product_mpn": "ADA588", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/588", + "product_stock": "-3", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "320", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "586", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/586-00.jpg", + "image_is_video": "0", + "product_name": "EL wire starter pack - Orange 2.5 meter (8.2 ft)", + "product_model": "", + "product_mpn": "ADA586", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/586", + "product_stock": "22", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "320", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "948", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/948-00.jpg", + "image_is_video": "0", + "product_name": "EL Flowing Effect Wire with Inverter - Blue 2.0 meter (6.5 ft)", + "product_model": "", + "product_mpn": "ADA948", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "50.4", + "product_url": "https:\/\/www.adafruit.com\/product\/948", + "product_stock": "-3", + "products_hts": "8531.80.0050", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "546", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/546-00.jpg", + "image_is_video": "0", + "product_name": "EL wire starter pack - White 2.5 meter (8.2 ft)", + "product_model": "", + "product_mpn": "ADA546", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/546", + "product_stock": "86", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "320", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "584", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/584-00.jpg", + "image_is_video": "0", + "product_name": "EL wire starter pack - Green 2.5 meter (8.2 ft)", + "product_model": "", + "product_mpn": "ADA584", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/584", + "product_stock": "86", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "320", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "587", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/587-00.jpg", + "image_is_video": "0", + "product_name": "EL wire starter pack - Red 2.5 meter (8.2 ft)", + "product_model": "", + "product_mpn": "ADA587", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/587", + "product_stock": "86", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "320", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "583", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/583-00.jpg", + "image_is_video": "0", + "product_name": "EL wire starter pack - Blue 2.5 meter (8.2 ft)", + "product_model": "", + "product_mpn": "ADA583", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/583", + "product_stock": "86", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "320", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "545", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/545-00.jpg", + "image_is_video": "0", + "product_name": "EL wire starter pack - Aqua 2.5 meter (8.2 ft)", + "product_model": "", + "product_mpn": "ADA545", + "product_master_category": "77", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/545", + "product_stock": "86", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "320", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "675", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/675-00.jpg", + "image_is_video": "0", + "product_name": "Sewable Electroluminscent (EL) Wire Welted Piping- Aqua 5 meters", + "product_model": "", + "product_mpn": "ADA675", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "74.2", + "product_url": "https:\/\/www.adafruit.com\/product\/675", + "product_stock": "82", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "404", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/404-00.jpg", + "image_is_video": "0", + "product_name": "High Brightness Pink Electroluminescent (EL) Wire - 2.5 meters", + "product_model": "High brightness, long life", + "product_mpn": "ADA404", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "12.00", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/404", + "product_stock": "-3", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "406", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/406-00.jpg", + "image_is_video": "0", + "product_name": "Yellow Electroluminescent (EL) Wire - 2.5 meters", + "product_model": "", + "product_mpn": "ADA406", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/406", + "product_stock": "in stock", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "405", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/405-00.jpg", + "image_is_video": "0", + "product_name": "High Brightness Orange Electroluminescent (EL) Wire - 2.5 meters", + "product_model": "High brightness, long life", + "product_mpn": "ADA405", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "12.00", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/405", + "product_stock": "22", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "407", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/407-00.jpg", + "image_is_video": "0", + "product_name": "High Brightness Green Electroluminescent (EL) Wire - 2.5 meters", + "product_model": "", + "product_mpn": "ADA407", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "12.00", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/407", + "product_stock": "in stock", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "409", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/409-00.jpg", + "image_is_video": "0", + "product_name": "Aqua Electroluminescent (EL) Wire - 2.5 meters", + "product_model": "", + "product_mpn": "ADA409", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/409", + "product_stock": "in stock", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "408", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/408-00.jpg", + "image_is_video": "0", + "product_name": "High Brightness Blue Electroluminescent (EL) Wire - 2.5 meters", + "product_model": "High brightness, long life", + "product_mpn": "ADA408", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "12.00", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/408", + "product_stock": "in stock", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "403", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/403-00.jpg", + "image_is_video": "0", + "product_name": "High Brightness Red Electroluminescent (EL) Wire - 2.5 meters", + "product_model": "High brightness, long life", + "product_mpn": "ADA403", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "12.00", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/403", + "product_stock": "in stock", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "410", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/410-00.jpg", + "image_is_video": "0", + "product_name": "White Electroluminescent (EL) Wire - 2.5 meters", + "product_model": "", + "product_mpn": "ADA410", + "product_master_category": "78", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/410", + "product_stock": "in stock", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "447", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/447-00.jpg", + "image_is_video": "0", + "product_name": "Blue Electroluminescent (EL) Tape Strip - 100cm w\/two connectors", + "product_model": "", + "product_mpn": "ADA447", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/447", + "product_stock": "66", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "634", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/634-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Tape\/Strip Starter Pack - 100cm - Green", + "product_model": "", + "product_mpn": "ADA634", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "144.4", + "product_url": "https:\/\/www.adafruit.com\/product\/634", + "product_stock": "21", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "637", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "633", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/633-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Tape\/Strip Starter Pack - 100cm - Blue", + "product_model": "", + "product_mpn": "ADA633", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "144.4", + "product_url": "https:\/\/www.adafruit.com\/product\/633", + "product_stock": "21", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "637", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "631", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/631-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Tape\/Strip Starter Pack - 100cm - Red", + "product_model": "", + "product_mpn": "ADA631", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "144.4", + "product_url": "https:\/\/www.adafruit.com\/product\/631", + "product_stock": "21", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "637", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "632", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/632-01.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Tape\/Strip Starter Pack - 100cm - Aqua", + "product_model": "", + "product_mpn": "ADA632", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "144.4", + "product_url": "https:\/\/www.adafruit.com\/product\/632", + "product_stock": "20", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "637", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "446", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/446-00.jpg", + "image_is_video": "0", + "product_name": "Green Electroluminescent (EL) Tape Strip - 100cm w\/2 connectors", + "product_model": "", + "product_mpn": "ADA446", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/446", + "product_stock": "72", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "635", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/635-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Tape\/Strip Starter Pack - 100cm - White", + "product_model": "", + "product_mpn": "ADA635", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "144.4", + "product_url": "https:\/\/www.adafruit.com\/product\/635", + "product_stock": "21", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "637", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "445", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/445-00.jpg", + "image_is_video": "0", + "product_name": "Red Electroluminescent (EL) Tape Strip - 100cm w\/two connectors", + "product_model": "", + "product_mpn": "ADA445", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/445", + "product_stock": "99", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "416", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/416-00.jpg", + "image_is_video": "0", + "product_name": "White Electroluminescent (EL) Tape Strip -100cm w\/two connectors", + "product_model": "", + "product_mpn": "ADA416", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/416", + "product_stock": "67", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "415", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/415-00.jpg", + "image_is_video": "0", + "product_name": "Aqua Electroluminescent (EL) Tape Strip - 100cm w\/two connectors", + "product_model": "", + "product_mpn": "ADA415", + "product_master_category": "79", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/415", + "product_stock": "20", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "318", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/318-00.jpg", + "image_is_video": "0", + "product_name": "2-pin JST SM In-line power wire connector (female)", + "product_model": "", + "product_mpn": "ADA318", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/318", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "319", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/319-00.jpg", + "image_is_video": "0", + "product_name": "2-pin JST SM In-line power wire connector (male)", + "product_model": "", + "product_mpn": "ADA319", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.6", + "product_url": "https:\/\/www.adafruit.com\/product\/319", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1349", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1349-03.jpg", + "image_is_video": "0", + "product_name": "EL Wire 1xAAA Mini Inverter", + "product_model": "", + "product_mpn": "ADA1349", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1349", + "product_stock": "93", + "products_hts": "8504.40.9570", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "832", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/832-07.jpg", + "image_is_video": "0", + "product_name": "EL Wire 12V Sound Activated Pocket Inverter", + "product_model": "", + "product_mpn": "ADA832", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "42.4", + "product_url": "https:\/\/www.adafruit.com\/product\/832", + "product_stock": "83", + "products_hts": "8504.40.9570", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "402", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/402-02.jpg", + "image_is_video": "0", + "product_name": "In-line wire 1-to-4 splitter", + "product_model": "", + "product_mpn": "ADA402", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/402", + "product_stock": "79", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "616", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/616-03.jpg", + "image_is_video": "0", + "product_name": "In-line power cable 1 meter long extension cord (for EL wire)", + "product_model": "", + "product_mpn": "ADA616", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/616", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "831", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/831-07.jpg", + "image_is_video": "0", + "product_name": "EL Wire 6V Sound Activated Pocket Inverter", + "product_model": "", + "product_mpn": "ADA831", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "42.8", + "product_url": "https:\/\/www.adafruit.com\/product\/831", + "product_stock": "0", + "products_hts": "8504.40.9570", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1350", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1350-00.jpg", + "image_is_video": "0", + "product_name": "EL Wire Coin Cell Mini Inverter", + "product_model": "", + "product_mpn": "ADA1350", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1350", + "product_stock": "in stock", + "products_hts": "8504.40.9570", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "564", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/564-04.jpg", + "image_is_video": "0", + "product_name": "EL wire 4xAAA pocket inverter", + "product_model": "", + "product_mpn": "ADA564", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "62.0", + "product_url": "https:\/\/www.adafruit.com\/product\/564", + "product_stock": "21", + "products_hts": "8504.40.9570", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "317", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/317-01.jpg", + "image_is_video": "0", + "product_name": "EL wire 2xAA pocket inverter", + "product_model": "", + "product_mpn": "ADA317", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "32.3", + "product_url": "https:\/\/www.adafruit.com\/product\/317", + "product_stock": "86", + "products_hts": "8504.40.9570", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "448", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/448-06.jpg", + "image_is_video": "0", + "product_name": "12V EL wire\/tape inverter", + "product_model": "", + "product_mpn": "ADA448", + "product_master_category": "80", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "43.3", + "product_url": "https:\/\/www.adafruit.com\/product\/448", + "product_stock": "in stock", + "products_hts": "8504.40.9570", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "627", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/627-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Panel Starter Pack - 10cm x 10cm Aqua", + "product_model": "", + "product_mpn": "ADA627", + "product_master_category": "81", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "112.3", + "product_url": "https:\/\/www.adafruit.com\/product\/627", + "product_stock": "21", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "639", + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "624", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/624-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Panel - 10cm x 10cm Blue", + "product_model": "", + "product_mpn": "ADA624", + "product_master_category": "81", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "7.9", + "product_url": "https:\/\/www.adafruit.com\/product\/624", + "product_stock": "in stock", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "629", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/629-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Panel Starter Pack - 10cm x 10cm Blue", + "product_model": "", + "product_mpn": "ADA629", + "product_master_category": "81", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "112.3", + "product_url": "https:\/\/www.adafruit.com\/product\/629", + "product_stock": "21", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "639", + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "623", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/623-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Panel - 10cm x 10cm Aqua", + "product_model": "", + "product_mpn": "ADA623", + "product_master_category": "81", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "7.9", + "product_url": "https:\/\/www.adafruit.com\/product\/623", + "product_stock": "53", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "628", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/628-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Panel Starter Pack - 10cm x 10cm White", + "product_model": "", + "product_mpn": "ADA628", + "product_master_category": "81", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "112.3", + "product_url": "https:\/\/www.adafruit.com\/product\/628", + "product_stock": "11", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "639", + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "625", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/625-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Panel - 10cm x 10cm White", + "product_model": "", + "product_mpn": "ADA625", + "product_master_category": "81", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "7.9", + "product_url": "https:\/\/www.adafruit.com\/product\/625", + "product_stock": "11", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "414", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/414-00.jpg", + "image_is_video": "0", + "product_name": "Electroluminescent (EL) Panel - 20cm x 15cm Aqua", + "product_model": "", + "product_mpn": "ADA414", + "product_master_category": "81", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "215.0", + "product_url": "https:\/\/www.adafruit.com\/product\/414", + "product_stock": "62", + "products_hts": "8543.70.7100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "146", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/146-04.jpg", + "image_is_video": "0", + "product_name": "Simple pliers", + "product_model": "", + "product_mpn": "ADA146", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "3.00", + "product_shipping_weight": "73.7", + "product_url": "https:\/\/www.adafruit.com\/product\/146", + "product_stock": "in stock", + "products_hts": "8203.20.60.30", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "294", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/294-09.jpg", + "image_is_video": "1", + "product_name": "Mitutoyo - Absolute Digimatic Digital Calipers, 6 in.", + "product_model": "500-196-30", + "product_mpn": "ADA294", + "product_master_category": "83", + "product_manufacturer": "Mitutoyo", + "product_price": "155.00", + "product_shipping_weight": "412.0", + "product_url": "https:\/\/www.adafruit.com\/product\/294", + "product_stock": "-3", + "products_hts": "9017.30.4000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "788", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/788-00.jpg", + "image_is_video": "0", + "product_name": "Toool Emergency Lock-Pick Card", + "product_model": "", + "product_mpn": "ADA788", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/788", + "product_stock": "0", + "products_hts": "7219.24.0060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "822", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/822-01.jpg", + "image_is_video": "0", + "product_name": "38 Piece Screwdriver Set", + "product_model": "", + "product_mpn": "ADA822", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "230.4", + "product_url": "https:\/\/www.adafruit.com\/product\/822", + "product_stock": "30", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1007", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1007-00.jpg", + "image_is_video": "0", + "product_name": "Magnetic Project Mat", + "product_model": "", + "product_mpn": "ADA1007", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1007", + "product_stock": "-3", + "products_hts": "8505.19.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1636", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1636-05.jpg", + "image_is_video": "0", + "product_name": "Professional Non-Slip Magnetic Project Mat", + "product_model": "", + "product_mpn": "ADA1636", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "394.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1636", + "product_stock": "59", + "products_hts": "8505.19.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2079", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2079-01.jpg", + "image_is_video": "0", + "product_name": "Panavise ActionGrip 3-N-1 Camera Mount", + "product_model": "", + "product_mpn": "ADA2079", + "product_master_category": "83", + "product_manufacturer": "Panavise", + "product_price": "44.95", + "product_shipping_weight": "436.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2079", + "product_stock": "-3", + "products_hts": "8529.90.3800", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2189", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2189-04.jpg", + "image_is_video": "0", + "product_name": "Universal Crimping Pliers - 1.6 to 2.3mm Size Contacts", + "product_model": "PA-20", + "product_mpn": "ADA2189", + "product_master_category": "83", + "product_manufacturer": "Engineer", + "product_price": "49.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2189", + "product_stock": "-3", + "products_hts": "8203.20.60.30", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3011", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3011-00.jpg", + "image_is_video": "0", + "product_name": "Leatherman Tread - Stainless Steel", + "product_model": "", + "product_mpn": "ADA3011", + "product_master_category": "83", + "product_manufacturer": "Leatherman", + "product_price": "165.00", + "product_shipping_weight": "285.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3011", + "product_stock": "8", + "products_hts": "8205.59.9000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3096", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3096-01.jpg", + "image_is_video": "0", + "product_name": "Precision Straight Tweezers - Rhino SW-11", + "product_model": "", + "product_mpn": "ADA3096", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "23.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3096", + "product_stock": "in stock", + "products_hts": "8203.20.2000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3284", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3284-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pocket Screwdriver - Black", + "product_model": "", + "product_mpn": "ADA3284", + "product_master_category": "83", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "11.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3284", + "product_stock": "0", + "products_hts": "8205.40.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3434", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3434-01.jpg", + "image_is_video": "0", + "product_name": "Spudger - Double Sided Prying Tool", + "product_model": "", + "product_mpn": "ADA3434", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "5.50", + "product_shipping_weight": "23.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3434", + "product_stock": "50", + "products_hts": "8205.59.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.95", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3676", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3676-02.jpg", + "image_is_video": "0", + "product_name": "Leatherman Tread LT - Black", + "product_model": "", + "product_mpn": "ADA3676", + "product_master_category": "83", + "product_manufacturer": "Leatherman", + "product_price": "174.95", + "product_shipping_weight": "269.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3676", + "product_stock": "-3", + "products_hts": "8205.59.9000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3720", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3720-02.jpg", + "image_is_video": "0", + "product_name": "Solar Digital Calipers", + "product_model": "", + "product_mpn": "ADA3720", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "90.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3720", + "product_stock": "in stock", + "products_hts": "9017.30.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3805", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3805-03.jpg", + "image_is_video": "0", + "product_name": "Fancy Lock-sport Pick Set - 12 Picks and 3 Wrenches", + "product_model": "", + "product_mpn": "ADA3805", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "115.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3805", + "product_stock": "76", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3806", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3806-00.jpg", + "image_is_video": "0", + "product_name": "Basic Lock-sport Pick Set - 9 Picks and 2 Wrenches", + "product_model": "", + "product_mpn": "ADA3806", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "61.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3806", + "product_stock": "in stock", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3856", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3856-05.jpg", + "image_is_video": "0", + "product_name": "Motion Control Screwdriver", + "product_model": "", + "product_mpn": "ADA3856", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "207.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3856", + "product_stock": "in stock", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3929", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3929-00.jpg", + "image_is_video": "0", + "product_name": "Canary Stainless Steel Non-Stick Cardboard Box Cutter", + "product_model": "", + "product_mpn": "ADA3929", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3929", + "product_stock": "60", + "products_hts": "8205.59.8000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4305", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4305-04.jpg", + "image_is_video": "0", + "product_name": "Slice Mini Cutter with Ceramic Blade", + "product_model": "", + "product_mpn": "ADA4305", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4305", + "product_stock": "3", + "products_hts": "8211.93.0035", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4306", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4306-00.jpg", + "image_is_video": "0", + "product_name": "Slice Craft Knife with Ceramic Blade", + "product_model": "", + "product_mpn": "ADA4306", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "33.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4306", + "product_stock": "0", + "products_hts": "8211.93.0035", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4307", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4307-00.jpg", + "image_is_video": "0", + "product_name": "Slice Auto-Retractable Pen Cutter with Ceramic Blade", + "product_model": "", + "product_mpn": "ADA4307", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "41.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4307", + "product_stock": "0", + "products_hts": "8211.93.0035", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4373", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4373-00.jpg", + "image_is_video": "0", + "product_name": "Tactical Multi-Tool Hairpin \/ Hair Clip", + "product_model": "", + "product_mpn": "ADA4373", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4373", + "product_stock": "55", + "products_hts": "8211.93.0031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4559", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4559-01.jpg", + "image_is_video": "0", + "product_name": "Pre-Cut Multi-Colored Heat Shrink Pack Kit - 280 pcs", + "product_model": "", + "product_mpn": "ADA4559", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "60.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4559", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4747", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4747-05.jpg", + "image_is_video": "1", + "product_name": "Automatic Self-Adjusting Wire Strippers and Cutter", + "product_model": "", + "product_mpn": "ADA4747", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "236.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4747", + "product_stock": "in stock", + "products_hts": "8203.20.6060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "1725", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1725-00.jpg", + "image_is_video": "0", + "product_name": "HexBright FLEX", + "product_model": "", + "product_mpn": "ADA1725", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "99.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1725", + "product_stock": "-3", + "products_hts": "8505.19.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "890", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/890-06.jpg", + "image_is_video": "0", + "product_name": "Aluminum iPhone 4 Phillips #000 \/ PH000 Screwdriver", + "product_model": "", + "product_mpn": "ADA890", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "24.5", + "product_url": "https:\/\/www.adafruit.com\/product\/890", + "product_stock": "-1", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2414", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2414-05.jpg", + "image_is_video": "0", + "product_name": "IFixit Jimmy - Electronics Opening Knife", + "product_model": "", + "product_mpn": "ADA2414", + "product_master_category": "83", + "product_manufacturer": "iFixit", + "product_price": "7.95", + "product_shipping_weight": "24.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2414", + "product_stock": "62", + "products_hts": "8205.59.9000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "1425", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1425-04.jpg", + "image_is_video": "0", + "product_name": "Mini Work Tool", + "product_model": "", + "product_mpn": "ADA1425", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "51.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1425", + "product_stock": "-3", + "products_hts": "8211.93.0030", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "889", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/889-05.jpg", + "image_is_video": "0", + "product_name": "Aluminum MacBook Air 4 1.2mm 5-Point Star\/Pentalobe Screwdriver", + "product_model": "", + "product_mpn": "ADA889", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "24.9", + "product_url": "https:\/\/www.adafruit.com\/product\/889", + "product_stock": "-1", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "888", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/888-06.jpg", + "image_is_video": "0", + "product_name": "Aluminum iPhone 4S 0.8mm 5-Point Star\/Pentalobe Screwdriver", + "product_model": "", + "product_mpn": "ADA888", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "24.6", + "product_url": "https:\/\/www.adafruit.com\/product\/888", + "product_stock": "0", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "452", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/452-00.jpg", + "image_is_video": "0", + "product_name": "Precision Torx Screwdriver Set (6 pieces)", + "product_model": "", + "product_mpn": "ADA452", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "127.5", + "product_url": "https:\/\/www.adafruit.com\/product\/452", + "product_stock": "11", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "396", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/396-04.jpg", + "image_is_video": "0", + "product_name": "Precision screw removal pliers", + "product_model": "PZ-57", + "product_mpn": "ADA396", + "product_master_category": "83", + "product_manufacturer": "Engineer", + "product_price": "28.00", + "product_shipping_weight": "88.3", + "product_url": "https:\/\/www.adafruit.com\/product\/396", + "product_stock": "18", + "products_hts": "8203.20.60.30", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "28.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "25.20", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1649", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1649-00.jpg", + "image_is_video": "0", + "product_name": "Multi-Colored Heat Shrink Pack - 3\/32\" + 1\/8\" + 3\/16\" Diameters", + "product_model": "", + "product_mpn": "ADA1649", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "19.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1649", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1209", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1209-03.jpg", + "image_is_video": "0", + "product_name": "ESD-Safe PCB Cleaning Brush", + "product_model": "", + "product_mpn": "ADA1209", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "21.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1209", + "product_stock": "in stock", + "products_hts": "9603.90.8050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "424", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/424-05.jpg", + "image_is_video": "0", + "product_name": "Precision screwdriver set (6 pieces)", + "product_model": "", + "product_mpn": "ADA424", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "94.9", + "product_url": "https:\/\/www.adafruit.com\/product\/424", + "product_stock": "in stock", + "products_hts": "8205.40.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1598", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1598-00.jpg", + "image_is_video": "0", + "product_name": "Professional IC Extraction Tool", + "product_model": "", + "product_mpn": "ADA1598", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "52.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1598", + "product_stock": "32", + "products_hts": "8211.93.0030", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1599", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1599-09.jpg", + "image_is_video": "0", + "product_name": "Super Scissors", + "product_model": "PH-57", + "product_mpn": "ADA1599", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "175.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1599", + "product_stock": "in stock", + "products_hts": "8213.00.6000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "147", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/147-05.jpg", + "image_is_video": "0", + "product_name": "Multi-size wire stripper & cutter", + "product_model": "5023", + "product_mpn": "ADA147", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "158.0", + "product_url": "https:\/\/www.adafruit.com\/product\/147", + "product_stock": "in stock", + "products_hts": "8203.20.60.30", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1368", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1368-03.jpg", + "image_is_video": "0", + "product_name": "Hakko Precision Flat Pliers", + "product_model": "", + "product_mpn": "ADA1368", + "product_master_category": "83", + "product_manufacturer": "Hakko", + "product_price": "11.95", + "product_shipping_weight": "94.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1368", + "product_stock": "in stock", + "products_hts": "8203.20.60.30", + "products_coo": "IT", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "829", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/829-03.jpg", + "image_is_video": "0", + "product_name": "65 Piece Ratchet Screwdriver and Tool Bit Set", + "product_model": "", + "product_mpn": "ADA829", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "725.7", + "product_url": "https:\/\/www.adafruit.com\/product\/829", + "product_stock": "21", + "products_hts": "8205.40.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1149", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1149-00.jpg", + "image_is_video": "0", + "product_name": "Large Double-Sided Storage Tote Box", + "product_model": "", + "product_mpn": "ADA1149", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "907.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1149", + "product_stock": "38", + "products_hts": "3923.10.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1213", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1213-04.jpg", + "image_is_video": "0", + "product_name": "Ratcheting Crimper Pliers - #18-28 AWG", + "product_model": "", + "product_mpn": "ADA1213", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "382.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1213", + "product_stock": "in stock", + "products_hts": "8203.20.60.30", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1724", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1724-00.jpg", + "image_is_video": "0", + "product_name": "Premium Digital Stainless Steel Calipers", + "product_model": "", + "product_mpn": "ADA1724", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "336.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1724", + "product_stock": "0", + "products_hts": "9017.30.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "350", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/350-11.jpg", + "image_is_video": "0", + "product_name": "Universal Micro Crimping Pliers - 1.0 to 1.9mm Size Contacts", + "product_model": "PA-09", + "product_mpn": "ADA350", + "product_master_category": "83", + "product_manufacturer": "Engineer", + "product_price": "49.95", + "product_shipping_weight": "168.7", + "product_url": "https:\/\/www.adafruit.com\/product\/350", + "product_stock": "81", + "products_hts": "8203.20.60.30", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "810", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/810-04.jpg", + "image_is_video": "0", + "product_name": "Messograf Pen Calipers", + "product_model": "", + "product_mpn": "ADA810", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "28.00", + "product_shipping_weight": "40.4", + "product_url": "https:\/\/www.adafruit.com\/product\/810", + "product_stock": "0", + "products_hts": "9608.10.0000", + "products_coo": "DE", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "421", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/421-03.jpg", + "image_is_video": "0", + "product_name": "Fine tip straight tweezers - ESD safe", + "product_model": "135mm", + "product_mpn": "ADA421", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "24.3", + "product_url": "https:\/\/www.adafruit.com\/product\/421", + "product_stock": "47", + "products_hts": "8203.20.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "349", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/349-06.jpg", + "image_is_video": "0", + "product_name": "Universal Crimping Pliers - 1.6 to 2.5mm Size Contacts", + "product_model": "PA-21", + "product_mpn": "ADA349", + "product_master_category": "83", + "product_manufacturer": "Engineer", + "product_price": "49.95", + "product_shipping_weight": "168.6", + "product_url": "https:\/\/www.adafruit.com\/product\/349", + "product_stock": "in stock", + "products_hts": "8203.20.60.30", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "422", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/422-03.jpg", + "image_is_video": "0", + "product_name": "Fine tip curved tweezers - ESD safe", + "product_model": "120mm", + "product_mpn": "ADA422", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "22.5", + "product_url": "https:\/\/www.adafruit.com\/product\/422", + "product_stock": "in stock", + "products_hts": "8203.20.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "344", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/344-00.jpg", + "image_is_video": "0", + "product_name": "Heat Shrink Pack", + "product_model": "", + "product_mpn": "ADA344", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "34.3", + "product_url": "https:\/\/www.adafruit.com\/product\/344", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "36", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/36-00.jpg", + "image_is_video": "0", + "product_name": "Midnight hacker - Pocket electrician", + "product_model": "", + "product_mpn": "ADA36", + "product_master_category": "83", + "product_manufacturer": null, + "product_price": "30.00", + "product_shipping_weight": "67.7", + "product_url": "https:\/\/www.adafruit.com\/product\/36", + "product_stock": "-3", + "products_hts": "8211.93.0030", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "527", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/527-02.jpg", + "image_is_video": "0", + "product_name": "Hakko Professional Quality 20-30 AWG Wire Strippers", + "product_model": "CSP-30-1", + "product_mpn": "ADA527", + "product_master_category": "83", + "product_manufacturer": "Hakko", + "product_price": "14.95", + "product_shipping_weight": "107.1", + "product_url": "https:\/\/www.adafruit.com\/product\/527", + "product_stock": "in stock", + "products_hts": "8203.20.60.30", + "products_coo": "IT", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "152", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/152-02.jpg", + "image_is_video": "0", + "product_name": "Flush diagonal cutters", + "product_model": "CHP170", + "product_mpn": "ADA152", + "product_master_category": "83", + "product_manufacturer": "Hakko", + "product_price": "7.25", + "product_shipping_weight": "80.1", + "product_url": "https:\/\/www.adafruit.com\/product\/152", + "product_stock": "in stock", + "products_hts": "8203.20.60.30", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.25", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "1554", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1554-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit PCB Ruler v2 - 6\"", + "product_model": "", + "product_mpn": "ADA1554", + "product_master_category": "83", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "15.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1554", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "145", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/145-01.jpg", + "image_is_video": "0", + "product_name": "Mini Solder spool - 60\/40 lead rosin-core solder 0.031\" diameter", + "product_model": "100g", + "product_mpn": "ADA145", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "105.0", + "product_url": "https:\/\/www.adafruit.com\/product\/145", + "product_stock": "in stock", + "products_hts": "8311.30.30 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "151", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/151-00.jpg", + "image_is_video": "0", + "product_name": "Panavise Jr.", + "product_model": "PV-201", + "product_mpn": "ADA151", + "product_master_category": "84", + "product_manufacturer": "Panavise", + "product_price": "30.00", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/151", + "product_stock": "in stock", + "products_hts": "8205.70.0090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "30.00", + "discounted_percent": 0, + "show_qty": "11-2", + "min_qty": 1 + } + ] + }, + { + "product_id": "303", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/303-00.jpg", + "image_is_video": "0", + "product_name": "Genuine Hakko FX-888 (936 upgrade)", + "product_model": "FX-888", + "product_mpn": "ADA303", + "product_master_category": "84", + "product_manufacturer": "Hakko", + "product_price": "95.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/303", + "product_stock": "-3", + "products_hts": "8515.11.0000", + "products_coo": "MY", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1869", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1869-06.jpg", + "image_is_video": "0", + "product_name": "Hot Air Soldering Rework Station w\/ Three Nozzles", + "product_model": "Quick 957DW+", + "product_mpn": "ADA1869", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "122.50", + "product_shipping_weight": "1,814.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1869", + "product_stock": "28", + "products_hts": "8515.11.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2163", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2163-01.jpg", + "image_is_video": "0", + "product_name": "Atten 50-Watt Soldering Iron - SA-50", + "product_model": "", + "product_mpn": "ADA2163", + "product_master_category": "84", + "product_manufacturer": "ATTEN", + "product_price": "34.95", + "product_shipping_weight": "232.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2163", + "product_stock": "-3", + "products_hts": "8515.11.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3037", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3037-00.jpg", + "image_is_video": "0", + "product_name": "Hakko FX-600 50-Watt Adjustable Soldering Iron", + "product_model": "", + "product_mpn": "ADA3037", + "product_master_category": "84", + "product_manufacturer": "Hakko", + "product_price": "44.95", + "product_shipping_weight": "248.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3037", + "product_stock": "-3", + "products_hts": "8515.11.0000", + "products_coo": "MY", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3217", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3217-04.jpg", + "image_is_video": "0", + "product_name": "Maker Paste - Low Temperature Lead-Free Prototyping Solder Paste", + "product_model": "", + "product_mpn": "ADA3217", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3217", + "product_stock": "in stock", + "products_hts": "3810.10.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3468", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3468-01.jpg", + "image_is_video": "0", + "product_name": "Chip Quik No-Clean Liquid Flux Pen \u2013 10ml Pen w\/ Tip", + "product_model": "CQ4LF", + "product_mpn": "ADA3468", + "product_master_category": "84", + "product_manufacturer": "Chip Quik", + "product_price": "7.95", + "product_shipping_weight": "22.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3468", + "product_stock": "in stock", + "products_hts": "3810.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3469", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3469-00.jpg", + "image_is_video": "0", + "product_name": "Chip Quik Conductive Paint Kit with Plunger and Tips - 5 Grams", + "product_model": "CP1-5S", + "product_mpn": "ADA3469", + "product_master_category": "84", + "product_manufacturer": "Chip Quik", + "product_price": "15.95", + "product_shipping_weight": "18.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3469", + "product_stock": "-1", + "products_hts": "3206.49.4000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3536", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3536-04.jpg", + "image_is_video": "0", + "product_name": "Insulated Silicone Rework Mat - 34cm x 23cm x 4mm Work Surface", + "product_model": "Blue", + "product_mpn": "ADA3536", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "317.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3536", + "product_stock": "in stock", + "products_hts": "3920.59", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3540", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3540-00.jpg", + "image_is_video": "0", + "product_name": "Square 60mm x 60mm Soldering Sponge \u2013 3 Pack", + "product_model": "", + "product_mpn": "ADA3540", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "11.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3540", + "product_stock": "in stock", + "products_hts": "8108.20.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3565", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3565-01.jpg", + "image_is_video": "0", + "product_name": "ATTEN 50W 110V Soldering Iron With Station", + "product_model": "AT-937", + "product_mpn": "ADA3565", + "product_master_category": "84", + "product_manufacturer": "ATTEN", + "product_price": "44.95", + "product_shipping_weight": "1,791.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3565", + "product_stock": "52", + "products_hts": "8515.11.00 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3596", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3596-00.jpg", + "image_is_video": "0", + "product_name": "10-piece Hot Air Rework Soldering Nozzle Kit", + "product_model": "", + "product_mpn": "ADA3596", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "27.50", + "product_shipping_weight": "175.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3596", + "product_stock": "36", + "products_hts": "8515.11.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3685", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3685-01.jpg", + "image_is_video": "0", + "product_name": "Adjustable 60W Pen-Style Soldering Iron - 120VAC USA Plug", + "product_model": "BEST 102C", + "product_mpn": "ADA3685", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "151.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3685", + "product_stock": "in stock", + "products_hts": "8515.11.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3759", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3759-01.jpg", + "image_is_video": "0", + "product_name": "Adjustable 60W Pen-Style Soldering Iron - 220VAC UK Plug", + "product_model": "BEST 102C", + "product_mpn": "ADA3759", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "166.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3759", + "product_stock": "4", + "products_hts": "8515.11.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3760", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3760-01.jpg", + "image_is_video": "0", + "product_name": "Adjustable 60W Pen-Style Soldering Iron - 220VAC Euro Plug", + "product_model": "BEST 102C", + "product_mpn": "ADA3760", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "167.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3760", + "product_stock": "-3", + "products_hts": "8515.11.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3836", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3836-00.jpg", + "image_is_video": "0", + "product_name": "Carbon Filter for Solder Smoke Absorption", + "product_model": "", + "product_mpn": "ADA3836", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "10.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3836", + "product_stock": "in stock", + "products_hts": "8421.99.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3941", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3941-04.jpg", + "image_is_video": "0", + "product_name": "Quick 861DW Hot Air Soldering Rework Station w\/ Three Nozzles", + "product_model": "", + "product_mpn": "ADA3941", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "285.00", + "product_shipping_weight": "4,773.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3941", + "product_stock": "2", + "products_hts": "8515.11.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4244", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4244-08.jpg", + "image_is_video": "0", + "product_name": "USB C Powered Soldering Iron - Adjustable Temperature Pen-Style", + "product_model": "TS80P", + "product_mpn": "ADA4244", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "109.95", + "product_shipping_weight": "181.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4244", + "product_stock": "12", + "products_hts": "8533.40.8070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4405", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4405-02.jpg", + "image_is_video": "0", + "product_name": "Anti-Static ESD Rework Mat with Grounding Clip - A4 Size", + "product_model": "20cm x 30cm", + "product_mpn": "ADA4405", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "200.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4405", + "product_stock": "in stock", + "products_hts": "3918.10.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4406", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4406-03.jpg", + "image_is_video": "0", + "product_name": "Solder Wire Holder Stand", + "product_model": "TJ-227", + "product_mpn": "ADA4406", + "product_master_category": "84", + "product_manufacturer": "ATTEN", + "product_price": "6.95", + "product_shipping_weight": "386.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4406", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4456", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4456-02.jpg", + "image_is_video": "0", + "product_name": "Solder Wick - 0.8mm wide and 1.5m \/ 5 feet long", + "product_model": "", + "product_mpn": "ADA4456", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4456", + "product_stock": "in stock", + "products_hts": "7413.00.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4695", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4695-01.jpg", + "image_is_video": "0", + "product_name": "ATTEN 65-Watt Soldering Iron With Digital Adjustable Temperature", + "product_model": "ST-2065D", + "product_mpn": "ADA4695", + "product_master_category": "84", + "product_manufacturer": "ATTEN", + "product_price": "29.95", + "product_shipping_weight": "237.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4695", + "product_stock": "in stock", + "products_hts": "8515.11.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4921", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4921-00.jpg", + "image_is_video": "0", + "product_name": "ATTEN 80W 110V Soldering Iron With Station", + "product_model": "ST-2090D", + "product_mpn": "ADA4921", + "product_master_category": "84", + "product_manufacturer": "ATTEN", + "product_price": "49.00", + "product_shipping_weight": "775.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4921", + "product_stock": "84", + "products_hts": "8515.11.00 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.10", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4948", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4948-00.jpg", + "image_is_video": "1", + "product_name": "Mini Hot Plate Preheater with USB C Power Supply", + "product_model": "", + "product_mpn": "ADA4948", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "483.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4948", + "product_stock": "in stock", + "products_hts": "8533.90.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2667", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2667-01.jpg", + "image_is_video": "0", + "product_name": "Chip Quik Tack Flux 10cc Syringe with Plunger and Tip", + "product_model": "SMD291", + "product_mpn": "ADA2667", + "product_master_category": "84", + "product_manufacturer": "Chip Quik", + "product_price": "15.95", + "product_shipping_weight": "26.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2667", + "product_stock": "96", + "products_hts": "3810.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2660", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2660-00.jpg", + "image_is_video": "0", + "product_name": "Chip Quik SMD Removal Kit", + "product_model": "SMD1", + "product_mpn": "ADA2660", + "product_master_category": "84", + "product_manufacturer": "Chip Quik", + "product_price": "16.00", + "product_shipping_weight": "25.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2660", + "product_stock": "17", + "products_hts": "3810.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2668", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2668-01.jpg", + "image_is_video": "0", + "product_name": "Chip Quik SMD Removal Kit with Lead-Free Alloy", + "product_model": "SMD1NL", + "product_mpn": "ADA2668", + "product_master_category": "84", + "product_manufacturer": "Chip Quik", + "product_price": "17.00", + "product_shipping_weight": "24.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2668", + "product_stock": "22", + "products_hts": "3810.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2476", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2476-02.jpg", + "image_is_video": "0", + "product_name": "Replacement Tubes for Professional Silicone-Tip Solder Sucker", + "product_model": "SS-02", + "product_mpn": "ADA2476", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2476", + "product_stock": "in stock", + "products_hts": "4006.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2473", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2473-02.jpg", + "image_is_video": "0", + "product_name": "Solder Wire - RoHS Lead Free - 0.5mm\/.02\" diameter", + "product_model": "50g", + "product_mpn": "ADA2473", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "52.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2473", + "product_stock": "in stock", + "products_hts": "8311.30.30 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1286", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1286-00.jpg", + "image_is_video": "0", + "product_name": "Hakko Soldering Tip: T18-D24 Screwdriver - For Lead or Lead-Free", + "product_model": "", + "product_mpn": "ADA1286", + "product_master_category": "84", + "product_manufacturer": "Hakko", + "product_price": "8.95", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1286", + "product_stock": "in stock", + "products_hts": "8515.11.0000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1930", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1930-01.jpg", + "image_is_video": "0", + "product_name": "Solder Wire - SAC305 RoHS Lead Free - 0.5mm\/.02\" diameter", + "product_model": "50g", + "product_mpn": "ADA1930", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "51.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1930", + "product_stock": "in stock", + "products_hts": "8311.30.30 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1248", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1248-00.jpg", + "image_is_video": "0", + "product_name": "Hakko Soldering Tip: T18-C2 Hoof - For Lead or Lead-Free Use", + "product_model": "", + "product_mpn": "ADA1248", + "product_master_category": "84", + "product_manufacturer": "Hakko", + "product_price": "7.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1248", + "product_stock": "53", + "products_hts": "8515.11.0000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1250", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1250-00.jpg", + "image_is_video": "0", + "product_name": "Hakko Soldering Tip: T18-D16 Screwdriver - For Lead or Lead-Free", + "product_model": "", + "product_mpn": "ADA1250", + "product_master_category": "84", + "product_manufacturer": "Hakko", + "product_price": "7.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1250", + "product_stock": "64", + "products_hts": "8515.11.0000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1886", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1886-01.jpg", + "image_is_video": "0", + "product_name": "Solder Wire - 60\/40 Rosin Core - 0.5mm\/0.02\" diameter - 50 grams", + "product_model": "", + "product_mpn": "ADA1886", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "51.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1886", + "product_stock": "in stock", + "products_hts": "8311.30.30 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1154", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1154-11.jpg", + "image_is_video": "0", + "product_name": "Deluxe Solder Stand with Solder Roll Holder", + "product_model": "", + "product_mpn": "ADA1154", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1154", + "product_stock": "61", + "products_hts": "7326.90.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "734", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/734-03.jpg", + "image_is_video": "0", + "product_name": "Solder Spool - 1\/4 lb SAC305 RoHS lead-free \/ 0.031\" rosin-core", + "product_model": "0.25 lb \/ 100 g", + "product_mpn": "ADA734", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "105.4", + "product_url": "https:\/\/www.adafruit.com\/product\/734", + "product_stock": "77", + "products_hts": "8311.30.30 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1172", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1172-03.jpg", + "image_is_video": "0", + "product_name": "Hakko Brass Sponge Solder Tip Cleaner", + "product_model": "", + "product_mpn": "ADA1172", + "product_master_category": "84", + "product_manufacturer": "Hakko", + "product_price": "10.95", + "product_shipping_weight": "62.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1172", + "product_stock": "in stock", + "products_hts": "7419.99.5050", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "149", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/149-07.jpg", + "image_is_video": "0", + "product_name": "Solder wick - 1.5mm wide and 1.5m \/ 5 feet long", + "product_model": "", + "product_mpn": "ADA149", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "3.00", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/149", + "product_stock": "in stock", + "products_hts": "7413.00.50.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1249", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1249-00.jpg", + "image_is_video": "0", + "product_name": "Hakko Soldering Tip: T18-S4 Fine SMD - For Lead or Lead-Free Use", + "product_model": "", + "product_mpn": "ADA1249", + "product_master_category": "84", + "product_manufacturer": "Hakko", + "product_price": "9.95", + "product_shipping_weight": "7.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1249", + "product_stock": "in stock", + "products_hts": "8515.11.0000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "150", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/150-03.jpg", + "image_is_video": "0", + "product_name": "Soldering iron stand", + "product_model": "", + "product_mpn": "ADA150", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "239.0", + "product_url": "https:\/\/www.adafruit.com\/product\/150", + "product_stock": "in stock", + "products_hts": "7326.90.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "148", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/148-04.jpg", + "image_is_video": "0", + "product_name": "Solder sucker", + "product_model": "", + "product_mpn": "ADA148", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "5.00", + "product_shipping_weight": "50.9", + "product_url": "https:\/\/www.adafruit.com\/product\/148", + "product_stock": "in stock", + "products_hts": "8203.20.60.30", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1597", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1597-00.jpg", + "image_is_video": "0", + "product_name": "Professional Silicone-Tip Solder Sucker", + "product_model": "", + "product_mpn": "ADA1597", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "67.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1597", + "product_stock": "in stock", + "products_hts": "8413.50.0090", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "291", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/291-01.jpg", + "image_is_video": "0", + "product_name": "Helping Third Hand Magnifier W\/Magnifying Glass Tool", + "product_model": "MZ101", + "product_mpn": "ADA291", + "product_master_category": "84", + "product_manufacturer": null, + "product_price": "6.00", + "product_shipping_weight": "348.5", + "product_url": "https:\/\/www.adafruit.com\/product\/291", + "product_stock": "in stock", + "products_hts": "8205.70.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.40", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "180", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/180-02.jpg", + "image_is_video": "0", + "product_name": "Adjustable 30W 110V soldering iron", + "product_model": "XY-258 110V", + "product_mpn": "ADA180", + "product_master_category": "84", + "product_manufacturer": "Xytronic", + "product_price": "22.00", + "product_shipping_weight": "265.5", + "product_url": "https:\/\/www.adafruit.com\/product\/180", + "product_stock": "-1", + "products_hts": "8515.11.00 00", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1204", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1204-01.jpg", + "image_is_video": "0", + "product_name": "Digital Genuine Hakko FX-888D (936 upgrade)", + "product_model": "FX-888D", + "product_mpn": "ADA1204", + "product_master_category": "84", + "product_manufacturer": "Hakko", + "product_price": "129.95", + "product_shipping_weight": "1,995.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1204", + "product_stock": "97", + "products_hts": "8515.11.0000", + "products_coo": "MY", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "136", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/136-07.jpg", + "image_is_video": "0", + "product_name": "Ladyada's Electronics Toolkit", + "product_model": "", + "product_mpn": "ADA136", + "product_master_category": "84", + "product_manufacturer": "Adafruit", + "product_price": "100.00", + "product_shipping_weight": "2,540.1", + "product_url": "https:\/\/www.adafruit.com\/product\/136", + "product_stock": "0", + "products_hts": "8206.00.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "100.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "90.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "80.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5048", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5048-00.jpg", + "image_is_video": "0", + "product_name": "Nordic nRF-PPK2 - Power Profiler Kit II", + "product_model": "Power Measurement Tool", + "product_mpn": "ADA5048", + "product_master_category": "85", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "50.6", + "product_url": "https:\/\/www.adafruit.com\/product\/5048", + "product_stock": "0", + "products_hts": "9504.90.9080", + "products_coo": "NO", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "285", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/285-00.jpg", + "image_is_video": "0", + "product_name": "RGB LED weatherproof flexi-strip - 30 LED\/m", + "product_model": "", + "product_mpn": "ADA285", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "80.00", + "product_shipping_weight": "215.0", + "product_url": "https:\/\/www.adafruit.com\/product\/285", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "285", + "discount_pricing": [ + { + "discounted_price": "80.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "72.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "64.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "285", + "meters": "5", + "product_price": "80.00" + }, + { + "products_id": "2482", + "meters": "4", + "product_price": "64.00" + }, + { + "products_id": "2483", + "meters": "3", + "product_price": "48.00" + }, + { + "products_id": "2484", + "meters": "2", + "product_price": "32.00" + }, + { + "products_id": "2485", + "meters": "1", + "product_price": "16.00" + } + ] + }, + { + "product_id": "306", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/306-00.jpg", + "image_is_video": "0", + "product_name": "Digital RGB LED Weatherproof Strip - LPD8806 32 LED", + "product_model": "", + "product_mpn": "ADA306", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "149.75", + "product_shipping_weight": "376.9", + "product_url": "https:\/\/www.adafruit.com\/product\/306", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "306", + "discount_pricing": [ + { + "discounted_price": "149.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "134.78", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "119.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "306", + "meters": "5", + "product_price": "149.75" + }, + { + "products_id": "3683", + "meters": "5", + "product_price": "18.50" + }, + { + "products_id": "3851", + "meters": "5", + "product_price": "24.95" + }, + { + "products_id": "2543", + "meters": "4", + "product_price": "119.80" + }, + { + "products_id": "2544", + "meters": "3", + "product_price": "89.85" + }, + { + "products_id": "2545", + "meters": "2", + "product_price": "59.90" + }, + { + "products_id": "2546", + "meters": "1", + "product_price": "29.95" + } + ] + }, + { + "product_id": "346", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/346-00.jpg", + "image_is_video": "0", + "product_name": "RGB LED Weatherproof flexi-strip 60 LED\/m", + "product_model": "", + "product_mpn": "ADA346", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "125.00", + "product_shipping_weight": "240.8", + "product_url": "https:\/\/www.adafruit.com\/product\/346", + "product_stock": "25", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "346", + "discount_pricing": [ + { + "discounted_price": "125.00", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "112.50", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "100.00", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ], + "pricing_per_length": [ + { + "products_id": "346", + "meters": "5", + "product_price": "125.00" + }, + { + "products_id": "3868", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "3867", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "3866", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "3865", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "4865", + "meters": "5", + "product_price": "37.50" + }, + { + "products_id": "2492", + "meters": "4", + "product_price": "100.00" + }, + { + "products_id": "2493", + "meters": "3", + "product_price": "75.00" + }, + { + "products_id": "2494", + "meters": "2", + "product_price": "50.00" + }, + { + "products_id": "2495", + "meters": "1", + "product_price": "25.00" + } + ] + }, + { + "product_id": "895", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/895-07.jpg", + "image_is_video": "0", + "product_name": "Wire Light LED Strand - 10 Blue LEDs + Coin Cell Holder", + "product_model": "", + "product_mpn": "ADA895", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/895", + "product_stock": "32", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1644", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1644-02.jpg", + "image_is_video": "0", + "product_name": "Silicone Clips for NeoPixel LED Strips - set of 5", + "product_model": "", + "product_mpn": "ADA1644", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1644", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1948", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1948-04.jpg", + "image_is_video": "0", + "product_name": "Digital RGB LED Weatherproof Strip - LPD8806 x 48 LED", + "product_model": "LPD8806", + "product_mpn": "ADA1948", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "174.75", + "product_shipping_weight": "376.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1948", + "product_stock": "15", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1948", + "discount_pricing": [ + { + "discounted_price": "174.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "157.28", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "139.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "1948", + "meters": "5", + "product_price": "174.75" + }, + { + "products_id": "4168", + "meters": "5", + "product_price": "6.95" + }, + { + "products_id": "4167", + "meters": "5", + "product_price": "6.95" + }, + { + "products_id": "4166", + "meters": "5", + "product_price": "6.95" + }, + { + "products_id": "4165", + "meters": "5", + "product_price": "6.95" + }, + { + "products_id": "4164", + "meters": "5", + "product_price": "7.50" + }, + { + "products_id": "4163", + "meters": "5", + "product_price": "7.50" + }, + { + "products_id": "4117", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "3902", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "3862", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "3861", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "3860", + "meters": "5", + "product_price": "13.95" + }, + { + "products_id": "4169", + "meters": "5", + "product_price": "6.95" + }, + { + "products_id": "2553", + "meters": "4", + "product_price": "139.80" + }, + { + "products_id": "2554", + "meters": "3", + "product_price": "104.85" + }, + { + "products_id": "2555", + "meters": "2", + "product_price": "69.90" + }, + { + "products_id": "2556", + "meters": "1", + "product_price": "34.95" + } + ] + }, + { + "product_id": "2328", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2328-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit DotStar Digital LED Strip - Black 144 LED\/m - 0.5 Meter", + "product_model": "BLACK", + "product_mpn": "ADA2328", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "82.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2328", + "product_stock": "96", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3683", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3683-05.jpg", + "image_is_video": "1", + "product_name": "Nth-Light Narrow LED Flexible Strip Light", + "product_model": "", + "product_mpn": "ADA3683", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "18.50", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3683", + "product_stock": "97", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3729", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3729-00.jpg", + "image_is_video": "1", + "product_name": "Side Light NeoPixel LED PCB Bar - 60 LEDs", + "product_model": "120 LED\/meter - 500mm Long", + "product_mpn": "ADA3729", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "35.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3729", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3776", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3776-07.jpg", + "image_is_video": "1", + "product_name": "Ultra High Density DotStar LED PCB Bar - 128 LEDs", + "product_model": "", + "product_mpn": "ADA3776", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "50.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3776", + "product_stock": "12", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "59.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3860", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3860-03.jpg", + "image_is_video": "0", + "product_name": "Flexible Silicone Neon-Like LED Strip - 1 Meter", + "product_model": "Red", + "product_mpn": "ADA3860", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "84.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3860", + "product_stock": "18", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3861", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3861-02.jpg", + "image_is_video": "0", + "product_name": "Flexible Silicone Neon-Like LED Strip - 1 Meter", + "product_model": "Ice Blue", + "product_mpn": "ADA3861", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "78.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3861", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3862", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3862-04.jpg", + "image_is_video": "0", + "product_name": "Flexible Silicone Neon-Like LED Strip - 1 Meter", + "product_model": "Pink", + "product_mpn": "ADA3862", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "79.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3862", + "product_stock": "62", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3865", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3865-03.jpg", + "image_is_video": "0", + "product_name": "Flexible Silicone Neon-Like LED Strip - 1 Meter", + "product_model": "Cold White", + "product_mpn": "ADA3865", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "82.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3865", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3866", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3866-05.jpg", + "image_is_video": "0", + "product_name": "Flexible Silicone Neon-Like LED Strip - 1 Meter", + "product_model": "Warm White", + "product_mpn": "ADA3866", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "84.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3866", + "product_stock": "64", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3867", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3867-04.jpg", + "image_is_video": "0", + "product_name": "Flexible Silicone Neon-Like LED Strip - 1 Meter", + "product_model": "Blue", + "product_mpn": "ADA3867", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "84.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3867", + "product_stock": "16", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3868", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3868-05.jpg", + "image_is_video": "0", + "product_name": "Flexible Silicone Neon-Like LED Strip - 1 Meter", + "product_model": "Green", + "product_mpn": "ADA3868", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "80.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3868", + "product_stock": "11", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4117", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4117-05.jpg", + "image_is_video": "0", + "product_name": "Flexible Silicone Neon-Like LED Strip - 1 Meter - Purple", + "product_model": "", + "product_mpn": "ADA4117", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "84.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4117", + "product_stock": "18", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4245", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4245-02.jpg", + "image_is_video": "1", + "product_name": "Flexible RGB Neon-like LED Strip 120 LEDs - 1 meter long", + "product_model": "", + "product_mpn": "ADA4245", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "93.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4245", + "product_stock": "in stock", + "products_hts": "9405.40.8200", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3902", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4368", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4368-07.jpg", + "image_is_video": "1", + "product_name": "Ultra Skinny NeoPixel 1515 LED Strip 4mm wide", + "product_model": "0.5 meter long - 75 LEDs", + "product_mpn": "ADA4368", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "33.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4368", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4548", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4548-04.jpg", + "image_is_video": "1", + "product_name": "RGBW Neon-like\u00a0LED Flex Strip - Warm White 2700K", + "product_model": "1 meter", + "product_mpn": "ADA4548", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "27.50", + "product_shipping_weight": "251.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4548", + "product_stock": "52", + "products_hts": "9405.40.8440", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4549", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4549-04.jpg", + "image_is_video": "1", + "product_name": "RGBW Neon-like LED Flex Strip - Cool White 5500K - 1 meter", + "product_model": "", + "product_mpn": "ADA4549", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "27.50", + "product_shipping_weight": "251.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4549", + "product_stock": "89", + "products_hts": "9405.40.8440", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "1-99", + "min_qty": 1 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4612", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4612-04.jpg", + "image_is_video": "1", + "product_name": "Ultra Flexible White LED Strip - 480 LED per meter - 1m long -", + "product_model": "Cool White ~6000K", + "product_mpn": "ADA4612", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4612", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4613", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4613-04.jpg", + "image_is_video": "1", + "product_name": "Ultra Flexible White LED Strip - 480 LED per meter - 1m long", + "product_model": "Warm White ~3000K", + "product_mpn": "ADA4613", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4613", + "product_stock": "70", + "products_hts": "9405.40.8440", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4839", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4839-00.jpg", + "image_is_video": "0", + "product_name": "Ultra Flexible White LED Strip - 480 LEDs per meter - 5m long", + "product_model": "Cool White ~6500K", + "product_mpn": "ADA4839", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "252.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4839", + "product_stock": "in stock", + "products_hts": "9405.40.8440", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4840", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4840-00.jpg", + "image_is_video": "0", + "product_name": "Ultra Flexible White LED Strip - 480 per meter - 5m long", + "product_model": "Warm White ~3000K", + "product_mpn": "ADA4840", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "252.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4840", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4846", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4846-02.jpg", + "image_is_video": "1", + "product_name": "Flexible LED Strip - 352 LEDs per meter - 1m long", + "product_model": "Red", + "product_mpn": "ADA4846", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "80.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4846", + "product_stock": "66", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4847", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4847-02.jpg", + "image_is_video": "1", + "product_name": "Flexible LED Strip - 352 LEDs per meter - 1m long", + "product_model": "Green", + "product_mpn": "ADA4847", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "80.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4847", + "product_stock": "89", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4848", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4848-00.jpg", + "image_is_video": "1", + "product_name": "Flexible LED Strip - 352 LEDs per meter - 1m long", + "product_model": "Blue", + "product_mpn": "ADA4848", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "80.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4848", + "product_stock": "35", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4850", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4850-02.jpg", + "image_is_video": "1", + "product_name": "Flexible LED Strip - 352 LEDs per meter - 1m long", + "product_model": "Pink", + "product_mpn": "ADA4850", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "80.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4850", + "product_stock": "98", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4851", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4851-02.jpg", + "image_is_video": "1", + "product_name": "Flexible LED Strip - 352 LEDs per meter - 1m long", + "product_model": "Yellow", + "product_mpn": "ADA4851", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "80.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4851", + "product_stock": "83", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4835", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "774", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/774-02.jpg", + "image_is_video": "0", + "product_name": "Silicone Caps for Digital Addressable Strips - pack of 4", + "product_model": "", + "product_mpn": "ADA774", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/774", + "product_stock": "47", + "products_hts": "3926.90.9600", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2440", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2440-00.jpg", + "image_is_video": "1", + "product_name": "Analog RGBW LED Strip - RGB plus Cool White - 60 LED\/m", + "product_model": "~6000K", + "product_mpn": "ADA2440", + "product_master_category": "86", + "product_manufacturer": "Adafruit", + "product_price": "79.80", + "product_shipping_weight": "245.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2440", + "product_stock": "41", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2440", + "discount_pricing": [ + { + "discounted_price": "79.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2440", + "meters": "4", + "product_price": "79.80" + }, + { + "products_id": "2592", + "meters": "3", + "product_price": "59.85" + }, + { + "products_id": "2593", + "meters": "2", + "product_price": "39.90" + }, + { + "products_id": "2594", + "meters": "1", + "product_price": "19.95" + } + ] + }, + { + "product_id": "896", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/896-05.jpg", + "image_is_video": "0", + "product_name": "Wire Light LED Strand - 10 Green LEDs + Coin Cell Holder", + "product_model": "", + "product_mpn": "ADA896", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/896", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2439", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2439-00.jpg", + "image_is_video": "1", + "product_name": "Analog RGBW LED Strip - RGB plus Warm White - 60 LED\/m", + "product_model": "~3000K", + "product_mpn": "ADA2439", + "product_master_category": "86", + "product_manufacturer": "Adafruit", + "product_price": "79.80", + "product_shipping_weight": "244.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2439", + "product_stock": "45", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2439", + "discount_pricing": [ + { + "discounted_price": "79.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2439", + "meters": "4", + "product_price": "79.80" + }, + { + "products_id": "5162", + "meters": "4", + "product_price": "0.00" + }, + { + "products_id": "5163", + "meters": "4", + "product_price": "0.00" + }, + { + "products_id": "2587", + "meters": "3", + "product_price": "59.85" + }, + { + "products_id": "2588", + "meters": "2", + "product_price": "39.90" + }, + { + "products_id": "2589", + "meters": "1", + "product_price": "19.95" + } + ] + }, + { + "product_id": "897", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/897-00.jpg", + "image_is_video": "0", + "product_name": "Wire Light LED Strand - 10 Red LEDs + Coin Cell Holder", + "product_model": "", + "product_mpn": "ADA897", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/897", + "product_stock": "15", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "893", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/893-00.jpg", + "image_is_video": "0", + "product_name": "Wire Light LED Strand - 10 Warm White LEDs + Coin Cell Holder", + "product_model": "", + "product_mpn": "ADA893", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/893", + "product_stock": "14", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1005", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1005-00.jpg", + "image_is_video": "0", + "product_name": "Touch Wheel Controller for Analog RGB LED Strips", + "product_model": "", + "product_mpn": "ADA1005", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "178.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1005", + "product_stock": "-3", + "products_hts": "8538.90.8060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "894", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/894-00.jpg", + "image_is_video": "0", + "product_name": "Wire Light LED Strand - 12 Cool White LEDs + Coin Cell Holder", + "product_model": "", + "product_mpn": "ADA894", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "7.9", + "product_url": "https:\/\/www.adafruit.com\/product\/894", + "product_stock": "22", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "678", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/678-00.jpg", + "image_is_video": "0", + "product_name": "RF Touch Wheel Controller for Analog RGB LED Strips", + "product_model": "", + "product_mpn": "ADA678", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "236.1", + "product_url": "https:\/\/www.adafruit.com\/product\/678", + "product_stock": "-3", + "products_hts": "8526.92.5000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1004", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1004-03.jpg", + "image_is_video": "0", + "product_name": "Solderless DotStar and Analog RGB LED Strip Clip Sampler", + "product_model": "", + "product_mpn": "ADA1004", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "10.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1004", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1605", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1605-07.jpg", + "image_is_video": "0", + "product_name": "BlinkyTape by Blinkinlabs", + "product_model": "", + "product_mpn": "ADA1605", + "product_master_category": "86", + "product_manufacturer": "Blinkinlabs", + "product_price": "49.95", + "product_shipping_weight": "119.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1605", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "357", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/357-00.jpg", + "image_is_video": "0", + "product_name": "Warm white LED weatherproof flexi-strip 60 LED", + "product_model": "", + "product_mpn": "ADA357", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "124.75", + "product_shipping_weight": "323.4", + "product_url": "https:\/\/www.adafruit.com\/product\/357", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "357", + "discount_pricing": [ + { + "discounted_price": "124.75", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "112.28", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "99.80", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ], + "pricing_per_length": [ + { + "products_id": "357", + "meters": "5", + "product_price": "124.75" + }, + { + "products_id": "2496", + "meters": "4", + "product_price": "99.80" + }, + { + "products_id": "2497", + "meters": "3", + "product_price": "74.85" + }, + { + "products_id": "2498", + "meters": "2", + "product_price": "49.90" + }, + { + "products_id": "2499", + "meters": "1", + "product_price": "24.95" + } + ] + }, + { + "product_id": "887", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/887-00.jpg", + "image_is_video": "0", + "product_name": "Cool White LED Weatherproof Flexi-Strip 60 LED", + "product_model": "", + "product_mpn": "ADA887", + "product_master_category": "86", + "product_manufacturer": null, + "product_price": "99.75", + "product_shipping_weight": "228.6", + "product_url": "https:\/\/www.adafruit.com\/product\/887", + "product_stock": "29", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "887", + "discount_pricing": [ + { + "discounted_price": "99.75", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "89.78", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "79.80", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ], + "pricing_per_length": [ + { + "products_id": "887", + "meters": "5", + "product_price": "99.75" + }, + { + "products_id": "2500", + "meters": "4", + "product_price": "79.80" + }, + { + "products_id": "2501", + "meters": "3", + "product_price": "59.85" + }, + { + "products_id": "2502", + "meters": "2", + "product_price": "39.90" + }, + { + "products_id": "2503", + "meters": "1", + "product_price": "19.95" + } + ] + }, + { + "product_id": "322", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/322-00.jpg", + "image_is_video": "0", + "product_name": "12mm Diffused Thin Digital RGB LED Pixels (Strand of 25)", + "product_model": "WS2801", + "product_mpn": "ADA322", + "product_master_category": "87", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "174.1", + "product_url": "https:\/\/www.adafruit.com\/product\/322", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2741", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2741-00.jpg", + "image_is_video": "1", + "product_name": "Pixie - 3W Chainable Smart LED Pixel", + "product_model": "", + "product_mpn": "ADA2741", + "product_master_category": "87", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2741", + "product_stock": "39", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1370", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1370-00.jpg", + "image_is_video": "0", + "product_name": "BlinkStick - Smart USB-Controlled LED Pixel Kit", + "product_model": "", + "product_mpn": "ADA1370", + "product_master_category": "87", + "product_manufacturer": null, + "product_price": "16.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1370", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1548", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1548-00.jpg", + "image_is_video": "0", + "product_name": "75mm Bars - 12V Digital RGB LED Pixels (Strand of 21)", + "product_model": "WS2801", + "product_mpn": "ADA1548", + "product_master_category": "87", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "293.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1548", + "product_stock": "22", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1547", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1547-00.jpg", + "image_is_video": "0", + "product_name": "30mm Dots - 12V Digital RGB LED Pixels (Strand of 20)", + "product_model": "WS2801", + "product_mpn": "ADA1547", + "product_master_category": "87", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "211.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1547", + "product_stock": "53", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "683", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/683-01.jpg", + "image_is_video": "0", + "product_name": "36mm Square 12V Digital RGB LED Pixels (Strand of 20)", + "product_model": "WS2801", + "product_mpn": "ADA683", + "product_master_category": "87", + "product_manufacturer": null, + "product_price": "64.95", + "product_shipping_weight": "224.4", + "product_url": "https:\/\/www.adafruit.com\/product\/683", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "738", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/738-00.jpg", + "image_is_video": "0", + "product_name": "12mm Diffused Flat Digital RGB LED Pixels (Strand of 25)", + "product_model": "WS2801", + "product_mpn": "ADA738", + "product_master_category": "87", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "200.9", + "product_url": "https:\/\/www.adafruit.com\/product\/738", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "549", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/549-00.jpg", + "image_is_video": "0", + "product_name": "Blinky Grid - Programmable LED matrix kit", + "product_model": "v1.05", + "product_mpn": "ADA549", + "product_master_category": "88", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/549", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "555", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/555-00.jpg", + "image_is_video": "0", + "product_name": "16x24 Red LED Matrix Panel - Chainable HT1632C Driver", + "product_model": "", + "product_mpn": "ADA555", + "product_master_category": "88", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "108.2", + "product_url": "https:\/\/www.adafruit.com\/product\/555", + "product_stock": "36", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1357", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1357-03.jpg", + "image_is_video": "0", + "product_name": "PIXEL Guts Kit - Bluetooth Controlled 32x32 RGB LED Matrix Kit", + "product_model": "V2.5", + "product_mpn": "ADA1357", + "product_master_category": "88", + "product_manufacturer": "SeeedStudio", + "product_price": "225.00", + "product_shipping_weight": "825.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1357", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2650", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2650-00.jpg", + "image_is_video": "1", + "product_name": "LED Magician", + "product_model": "v2.0", + "product_mpn": "ADA2650", + "product_master_category": "88", + "product_manufacturer": "LED Magician", + "product_price": "39.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2650", + "product_stock": "-3", + "products_hts": "9027.90.4500", + "products_coo": "SG", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "728", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/728-00.jpg", + "image_is_video": "0", + "product_name": "Octolively Kit - Blue - Tileable Interactive LEDs", + "product_model": "", + "product_mpn": "ADA728", + "product_master_category": "88", + "product_manufacturer": "EMSL", + "product_price": "35.00", + "product_shipping_weight": "127.4", + "product_url": "https:\/\/www.adafruit.com\/product\/728", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "729", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/729-00.jpg", + "image_is_video": "0", + "product_name": "Octolively Kit - Warm White - Tileable Interactive LEDs", + "product_model": "", + "product_mpn": "ADA729", + "product_master_category": "88", + "product_manufacturer": "EMSL", + "product_price": "35.00", + "product_shipping_weight": "124.3", + "product_url": "https:\/\/www.adafruit.com\/product\/729", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1427", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1427-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit 16x8 LED Matrix Driver Backpack - HT16K33 Breakout", + "product_model": "", + "product_mpn": "ADA1427", + "product_master_category": "88", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1427", + "product_stock": "74", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1453", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1453-06.jpg", + "image_is_video": "0", + "product_name": "LED Video Wall Controller Set\/Programmed for Adafruit LED Panels", + "product_model": "", + "product_mpn": "ADA1453", + "product_master_category": "88", + "product_manufacturer": null, + "product_price": "299.95", + "product_shipping_weight": "495.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1453", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "299.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "269.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "239.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "159", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/159-00.jpg", + "image_is_video": "0", + "product_name": "Diffused RGB (tri-color) LED", + "product_model": "Common Anode", + "product_mpn": "ADA159", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/159", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.75", + "discounted_percent": "13", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "1.50", + "discounted_percent": "25", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "298", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/298-00.jpg", + "image_is_video": "0", + "product_name": "Diffused Green 5mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA298", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.00", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/298", + "product_stock": "67", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "301", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/301-00.jpg", + "image_is_video": "0", + "product_name": "Super Bright Blue 5mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA301", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "8.00", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/301", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.20", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "754", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/754-00.jpg", + "image_is_video": "0", + "product_name": "Super Bright White 5mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA754", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/754", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "779", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/779-00.jpg", + "image_is_video": "0", + "product_name": "Diffused Green 3mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA779", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/779", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "844", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/844-00.jpg", + "image_is_video": "0", + "product_name": "Diffused Green 10mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA844", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "31.5", + "product_url": "https:\/\/www.adafruit.com\/product\/844", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "845", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/845-00.jpg", + "image_is_video": "0", + "product_name": "Diffused Red 10mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA845", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "31.5", + "product_url": "https:\/\/www.adafruit.com\/product\/845", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1626", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1626-00.jpg", + "image_is_video": "0", + "product_name": "White LED Backlight Module - Small 12mm x 40mm", + "product_model": "", + "product_mpn": "ADA1626", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1626", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2700", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2700-00.jpg", + "image_is_video": "0", + "product_name": "Super Bright Yellow 5mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA2700", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2700", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2739", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2739-07.jpg", + "image_is_video": "1", + "product_name": "Diffused Rectangular 5mm RGB LEDs - Pack of 10", + "product_model": "", + "product_mpn": "ADA2739", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2739", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "HK", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2894", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2894-09.jpg", + "image_is_video": "0", + "product_name": "Camera-Mount LED Photography Light - CIE Ra 95 - 3200K to 5600K", + "product_model": "", + "product_mpn": "ADA2894", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "350.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2894", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2993", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2993-03.jpg", + "image_is_video": "1", + "product_name": "Tower Light - Red Yellow Green Alert Light with Buzzer - 12VDC", + "product_model": "", + "product_mpn": "ADA2993", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "27.50", + "product_shipping_weight": "277.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2993", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2994", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2994-01.jpg", + "image_is_video": "1", + "product_name": "Tower Light - Red Alert Light with Buzzer - 12VDC", + "product_model": "", + "product_mpn": "ADA2994", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "217.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2994", + "product_stock": "28", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3260", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3260-01.jpg", + "image_is_video": "0", + "product_name": "Diffused Yellow 10mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA3260", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "31.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3260", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3377", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3377-27.jpg", + "image_is_video": "0", + "product_name": "Adafruit LED Sequins - Multicolor Pack of 5", + "product_model": "", + "product_mpn": "ADA3377", + "product_master_category": "90", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3377", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3587", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3587-01.jpg", + "image_is_video": "0", + "product_name": "DotStar Micro LEDs (APA102\u20132020)- Smart SMD RGB LED - 100 pack", + "product_model": "", + "product_mpn": "ADA3587", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3587", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3819", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3819-01.jpg", + "image_is_video": "0", + "product_name": "Clear White 3mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA3819", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3819", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4040", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4040-05.jpg", + "image_is_video": "1", + "product_name": "Diffused Blue Indicator LED - 15mm Square", + "product_model": "", + "product_mpn": "ADA4040", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4040", + "product_stock": "in stock", + "products_hts": "9405.40.8200", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4041", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4041-05.jpg", + "image_is_video": "1", + "product_name": "Diffused Red Indicator LED - 15mm Square", + "product_model": "", + "product_mpn": "ADA4041", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4041", + "product_stock": "in stock", + "products_hts": "9405.40.8200", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4042", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4042-09.jpg", + "image_is_video": "1", + "product_name": "Diffused Red and Green Indicator LED - 18mm Round", + "product_model": "", + "product_mpn": "ADA4042", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4042", + "product_stock": "in stock", + "products_hts": "9405.40.8410", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4202", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4202-00.jpg", + "image_is_video": "0", + "product_name": "Diffused 3mm LED Pack - 5 LEDs each in 5 Colors - 25 Pack", + "product_model": "", + "product_mpn": "ADA4202", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4202", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4203", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4203-02.jpg", + "image_is_video": "0", + "product_name": "Diffused 5mm LED Pack - 5 LEDs each in 5 Colors - 25 Pack", + "product_model": "", + "product_mpn": "ADA4203", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4203", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4204", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4204-00.jpg", + "image_is_video": "0", + "product_name": "Diffused 10mm LED Pack - 5 LEDs each in 5 Colors - 25 Pack", + "product_model": "", + "product_mpn": "ADA4204", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "31.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4204", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4433", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4433-04.jpg", + "image_is_video": "0", + "product_name": "LED Ring Light - 76mm Diameter", + "product_model": "", + "product_mpn": "ADA4433", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "17.95", + "product_shipping_weight": "44.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4433", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4882", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4882-05.jpg", + "image_is_video": "1", + "product_name": "Round Semi-Circle Backlight LED - 50mm Diameter", + "product_model": "", + "product_mpn": "ADA4882", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4882", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2524", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2524-05.jpg", + "image_is_video": "1", + "product_name": "3W-9W RGB LED - Common Anode", + "product_model": "", + "product_mpn": "ADA2524", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2524", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2530", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2530-06.jpg", + "image_is_video": "1", + "product_name": "3W RGB LED - Common Anode", + "product_model": "", + "product_mpn": "ADA2530", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2530", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "314", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/314-00.jpg", + "image_is_video": "0", + "product_name": "Clear 'Piranha' Super-flux RGB (tri-color) LED", + "product_model": "Common Anode", + "product_mpn": "ADA314", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/314", + "product_stock": "53", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.75", + "discounted_percent": "13", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "1.50", + "discounted_percent": "25", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "847", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/847-00.jpg", + "image_is_video": "0", + "product_name": "Diffused Blue 10mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA847", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "32.0", + "product_url": "https:\/\/www.adafruit.com\/product\/847", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "680", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/680-01.jpg", + "image_is_video": "1", + "product_name": "Diffused 5mm Fast Flashing RGB LED - 10 pack", + "product_model": "Flashing Effect", + "product_mpn": "ADA680", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/680", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "682", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/682-00.jpg", + "image_is_video": "0", + "product_name": "SMT Cool White 5050 LED - 10 pack", + "product_model": "6500-7000K", + "product_mpn": "ADA682", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/682", + "product_stock": "38", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "619", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/619-09.jpg", + "image_is_video": "0", + "product_name": "SMT RGB 5050 LED - 10 pack", + "product_model": "", + "product_mpn": "ADA619", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/619", + "product_stock": "17", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "777", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/777-00.jpg", + "image_is_video": "0", + "product_name": "Diffused Red 3mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA777", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/777", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1793", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1793-00.jpg", + "image_is_video": "0", + "product_name": "UV\/UVA 400nm Purple LED 5mm Clear Lens - 10 pack", + "product_model": "", + "product_mpn": "ADA1793", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1793", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "387", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/387-01.jpg", + "image_is_video": "0", + "product_name": "Super-bright 5mm IR LED", + "product_model": "940nm", + "product_mpn": "ADA387", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/387", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "846", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/846-00.jpg", + "image_is_video": "0", + "product_name": "Diffused White 10mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA846", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "31.2", + "product_url": "https:\/\/www.adafruit.com\/product\/846", + "product_stock": "67", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1451", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1451-00.jpg", + "image_is_video": "0", + "product_name": "Diffused 'Piranha' Super-flux RGB (tri-color) LED (10 pack)", + "product_model": "", + "product_mpn": "ADA1451", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1451", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1756", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1756-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit LED Sequins - Emerald Green - Pack of 5", + "product_model": "", + "product_mpn": "ADA1756", + "product_master_category": "90", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1756", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1755", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1755-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit LED Sequins - Ruby Red - Pack of 5", + "product_model": "", + "product_mpn": "ADA1755", + "product_master_category": "90", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1755", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1622", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1622-00.jpg", + "image_is_video": "0", + "product_name": "White LED Backlight Module - Medium 23mm x 75mm", + "product_model": "", + "product_mpn": "ADA1622", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1622", + "product_stock": "39", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "778", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/778-00.jpg", + "image_is_video": "0", + "product_name": "Diffused White 3mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA778", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/778", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "679", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/679-01.jpg", + "image_is_video": "1", + "product_name": "Diffused 5mm Slow Fade Flashing RGB LED - 10 pack", + "product_model": "Slow fade", + "product_mpn": "ADA679", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/679", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "299", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/299-01.jpg", + "image_is_video": "0", + "product_name": "Diffused Red 5mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA299", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "4.00", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/299", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "780", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/780-00.jpg", + "image_is_video": "0", + "product_name": "Diffused Blue 3mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA780", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/780", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1757", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1757-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit LED Sequins - Royal Blue - Pack of 5", + "product_model": "", + "product_mpn": "ADA1757", + "product_master_category": "90", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1757", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "315", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/315-00.jpg", + "image_is_video": "0", + "product_name": "Clear 'Piranha' Super-flux RGB (tri-color) LED (25 pack)", + "product_model": "Common Anode", + "product_mpn": "ADA315", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/315", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "848", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/848-00.jpg", + "image_is_video": "0", + "product_name": "Diffused RGB (tri-color) 10mm LED (10 pack)", + "product_model": "Common Anode", + "product_mpn": "ADA848", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "14.6", + "product_url": "https:\/\/www.adafruit.com\/product\/848", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "300", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/300-00.jpg", + "image_is_video": "0", + "product_name": "Super Bright Green 5mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA300", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "8.00", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/300", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.20", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1621", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1621-00.jpg", + "image_is_video": "0", + "product_name": "White LED Backlight Module - Large 45mm x 86mm", + "product_model": "", + "product_mpn": "ADA1621", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "19.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1621", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "518", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/518-03.jpg", + "image_is_video": "0", + "product_name": "1 Watt Cool White LED - Heatsink Mounted", + "product_model": "", + "product_mpn": "ADA518", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/518", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "297", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/297-00.jpg", + "image_is_video": "0", + "product_name": "Super Bright Red 5mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA297", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "8.00", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/297", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.20", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1758", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1758-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit LED Sequins - Warm White - Pack of 5", + "product_model": "", + "product_mpn": "ADA1758", + "product_master_category": "90", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1758", + "product_stock": "-1", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "388", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/388-00.jpg", + "image_is_video": "0", + "product_name": "Super-bright 5mm IR LED (25 pack)", + "product_model": "940nm", + "product_mpn": "ADA388", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/388", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.57", + "discounted_percent": "5", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.63", + "discounted_percent": "4", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "302", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/302-00.jpg", + "image_is_video": "0", + "product_name": "Diffused RGB 5mm LED (25 pack)", + "product_model": "", + "product_mpn": "ADA302", + "product_master_category": "90", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "11.2", + "product_url": "https:\/\/www.adafruit.com\/product\/302", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "643", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/643-01.jpg", + "image_is_video": "0", + "product_name": "Laser cutter - Sticker!", + "product_model": "", + "product_mpn": "ADA643", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/643", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "645", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/645-01.jpg", + "image_is_video": "0", + "product_name": "Dumpster Diving! - Sticker!", + "product_model": "", + "product_mpn": "ADA645", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/645", + "product_stock": "-10", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "663", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/663-01.jpg", + "image_is_video": "0", + "product_name": "Linux \"Tux\" Penguin - Sticker", + "product_model": "", + "product_mpn": "ADA663", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.00", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/663", + "product_stock": "0", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "665", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/665-01.jpg", + "image_is_video": "0", + "product_name": "Learn to program - Sticker!", + "product_model": "", + "product_mpn": "ADA665", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/665", + "product_stock": "18", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "674", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/674-02.jpg", + "image_is_video": "0", + "product_name": "Beagle Bone - Sticker!", + "product_model": "", + "product_mpn": "ADA674", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.25", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/674", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "686", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/686-01.jpg", + "image_is_video": "0", + "product_name": "Android - Sticker!", + "product_model": "", + "product_mpn": "ADA686", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/686", + "product_stock": "14", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1696", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1696-05.jpg", + "image_is_video": "1", + "product_name": "Webcam Cover-Ups - pack of 10", + "product_model": "", + "product_mpn": "ADA1696", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1696", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3270", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3270-00.jpg", + "image_is_video": "0", + "product_name": "MicroPython Sticker", + "product_model": "", + "product_mpn": "ADA3270", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3270", + "product_stock": "7", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3725", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3725-03.jpg", + "image_is_video": "0", + "product_name": "Blinka the CircuitPython Sticker", + "product_model": "", + "product_mpn": "ADA3725", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.25", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3725", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3794", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3794-00.jpg", + "image_is_video": "0", + "product_name": "Crickit Sticker Sheet", + "product_model": "", + "product_mpn": "ADA3794", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "0.50", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3794", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3799", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3799-07.jpg", + "image_is_video": "0", + "product_name": "Black Miniature Metal Webcam Cover", + "product_model": "", + "product_mpn": "ADA3799", + "product_master_category": "93", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3799", + "product_stock": "1", + "products_hts": "3919.90.5060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3840", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3840-01.jpg", + "image_is_video": "0", + "product_name": "Black and White Eye Stickers", + "product_model": "", + "product_mpn": "ADA3840", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "58.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3840", + "product_stock": "84", + "products_hts": "3919.90.5060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3841", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3841-00.jpg", + "image_is_video": "0", + "product_name": "AdaBot Head Sticker", + "product_model": "", + "product_mpn": "ADA3841", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "0.95", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3841", + "product_stock": "-1", + "products_hts": "3919.90.5060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3913", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3913-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit #ElectronicHalloween Halloween Sticker Sheet Set 1", + "product_model": "", + "product_mpn": "ADA3913", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3913", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3914", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3914-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit #ElectronicHalloween Halloween Sticker Sheet Set 2", + "product_model": "", + "product_mpn": "ADA3914", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3914", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4257", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4257-00.jpg", + "image_is_video": "0", + "product_name": "Retro Handheld Game Devices Sticker Set", + "product_model": "", + "product_mpn": "ADA4257", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4257", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4329", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4329-03.jpg", + "image_is_video": "0", + "product_name": "Cartoon Network Sticker Set for Circuit Playground Express", + "product_model": "", + "product_mpn": "ADA4329", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4329", + "product_stock": "24", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5092", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5092-00.jpg", + "image_is_video": "0", + "product_name": "CircuitPython Space Explorers Sticker", + "product_model": "", + "product_mpn": "ADA5092", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "0.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5092", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "792", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/792-00.jpg", + "image_is_video": "0", + "product_name": "Bento Box Stickers - Pack of 6", + "product_model": "", + "product_mpn": "ADA792", + "product_master_category": "93", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/792", + "product_stock": "0", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2389", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2389-02.jpg", + "image_is_video": "0", + "product_name": "Astroprint Vinyl Sticker!", + "product_model": "", + "product_mpn": "ADA2389", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2389", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "687", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/687-01.jpg", + "image_is_video": "0", + "product_name": "Catapult - Sticker!", + "product_model": "", + "product_mpn": "ADA687", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/687", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "707", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/707-01.jpg", + "image_is_video": "0", + "product_name": "QR Code - Sticker!", + "product_model": "", + "product_mpn": "ADA707", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.00", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/707", + "product_stock": "5", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "943", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/943-02.jpg", + "image_is_video": "0", + "product_name": "AS SEEN ON SHOW AND TELL - Sticker!", + "product_model": "", + "product_mpn": "ADA943", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/943", + "product_stock": "71", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "672", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/672-01.jpg", + "image_is_video": "0", + "product_name": "Water jet - Sticker!", + "product_model": "", + "product_mpn": "ADA672", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/672", + "product_stock": "53", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "873", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/873-02.jpg", + "image_is_video": "0", + "product_name": "MENTA - Sticker for mint tin", + "product_model": "", + "product_mpn": "ADA873", + "product_master_category": "93", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/873", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "688", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/688-01.jpg", + "image_is_video": "0", + "product_name": "Circuit bender! - Sticker!", + "product_model": "", + "product_mpn": "ADA688", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/688", + "product_stock": "6", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "704", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/704-01.jpg", + "image_is_video": "0", + "product_name": "Welding - Sticker!", + "product_model": "", + "product_mpn": "ADA704", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/704", + "product_stock": "1", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "664", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/664-01.jpg", + "image_is_video": "0", + "product_name": "Tesla coil - Sticker!", + "product_model": "", + "product_mpn": "ADA664", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/664", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "668", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/668-01.jpg", + "image_is_video": "0", + "product_name": "I \"heart\" METRIC - Sticker!", + "product_model": "", + "product_mpn": "ADA668", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/668", + "product_stock": "67", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "940", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/940-01.jpg", + "image_is_video": "0", + "product_name": "Nimbus the Cloud - Internet of Things- Sticker!", + "product_model": "", + "product_mpn": "ADA940", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "1.9", + "product_url": "https:\/\/www.adafruit.com\/product\/940", + "product_stock": "63", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "670", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/670-01.jpg", + "image_is_video": "0", + "product_name": "Bike repair - Sticker!", + "product_model": "", + "product_mpn": "ADA670", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/670", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "666", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/666-01.jpg", + "image_is_video": "0", + "product_name": "Educational mini UAVs- Sticker!", + "product_model": "", + "product_mpn": "ADA666", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/666", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "647", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/647-01.jpg", + "image_is_video": "0", + "product_name": "TV-B-Gone - Sticker!", + "product_model": "", + "product_mpn": "ADA647", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/647", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "646", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/646-01.jpg", + "image_is_video": "0", + "product_name": "Multi-Meter! - Sticker!", + "product_model": "", + "product_mpn": "ADA646", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/646", + "product_stock": "13", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "669", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/669-01.jpg", + "image_is_video": "0", + "product_name": "ESD (Electrostatic discharge) - Sticker!", + "product_model": "", + "product_mpn": "ADA669", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/669", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "695", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/695-01.jpg", + "image_is_video": "0", + "product_name": "Ada Lovelace - Sticker!", + "product_model": "", + "product_mpn": "ADA695", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.00", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/695", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "651", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/651-01.jpg", + "image_is_video": "0", + "product_name": "Biohacking - Sticker!", + "product_model": "", + "product_mpn": "ADA651", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/651", + "product_stock": "59", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "690", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/690-01.jpg", + "image_is_video": "0", + "product_name": "HTML 5 - Sticker!", + "product_model": "", + "product_mpn": "ADA690", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.25", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/690", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "719", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/719-01.jpg", + "image_is_video": "0", + "product_name": "Open source \"Upgrade\" stickers", + "product_model": "", + "product_mpn": "ADA719", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/719", + "product_stock": "84", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "648", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/648-01.jpg", + "image_is_video": "0", + "product_name": "Oscilloscope - Sticker!", + "product_model": "", + "product_mpn": "ADA648", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/648", + "product_stock": "80", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "667", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/667-01.jpg", + "image_is_video": "0", + "product_name": "High-altitude balloon - Sticker!", + "product_model": "", + "product_mpn": "ADA667", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/667", + "product_stock": "82", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1600", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1600-01.jpg", + "image_is_video": "0", + "product_name": "Bitcoin - Sticker!", + "product_model": "", + "product_mpn": "ADA1600", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "0.25", + "product_shipping_weight": "1.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1600", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "696", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/696-01.jpg", + "image_is_video": "0", + "product_name": "Ada Lovelace, large, oval black and white - Sticker!", + "product_model": "", + "product_mpn": "ADA696", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/696", + "product_stock": "33", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "701", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/701-01.jpg", + "image_is_video": "0", + "product_name": "Ada Lovelace, large, oval, color - Sticker!", + "product_model": "", + "product_mpn": "ADA701", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/701", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "694", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/694-01.jpg", + "image_is_video": "0", + "product_name": "Soldering - Sticker!", + "product_model": "", + "product_mpn": "ADA694", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/694", + "product_stock": "83", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "644", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/644-01.jpg", + "image_is_video": "0", + "product_name": "LEDs - Sticker!", + "product_model": "", + "product_mpn": "ADA644", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/644", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "650", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/650-01.jpg", + "image_is_video": "0", + "product_name": "Ohms law, VIR - Sticker!", + "product_model": "", + "product_mpn": "ADA650", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/650", + "product_stock": "35", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "622", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/622-01.jpg", + "image_is_video": "0", + "product_name": "Robotics! - Sticker!", + "product_model": "", + "product_mpn": "ADA622", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/622", + "product_stock": "5", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "691", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/691-01.jpg", + "image_is_video": "0", + "product_name": "Sparky the Magic Blue Smoke Monster - Sticker!", + "product_model": "", + "product_mpn": "ADA691", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/691", + "product_stock": "0", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "673", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/673-02.jpg", + "image_is_video": "0", + "product_name": "Reverse Engineer - Sticker!", + "product_model": "", + "product_mpn": "ADA673", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/673", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "689", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/689-01.jpg", + "image_is_video": "0", + "product_name": "Micro-controllers - Sticker!", + "product_model": "", + "product_mpn": "ADA689", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/689", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1132", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1132-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi\u00ae - Sticker", + "product_model": "", + "product_mpn": "ADA1132", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.00", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1132", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "697", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/697-00.jpg", + "image_is_video": "0", + "product_name": "Sheet of stickers (33 total) - Stickers!", + "product_model": "Series 01", + "product_mpn": "ADA697", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "35.00", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/697", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "693", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/693-02.jpg", + "image_is_video": "0", + "product_name": "Open source hardware - Sticker!", + "product_model": "", + "product_mpn": "ADA693", + "product_master_category": "93", + "product_manufacturer": "Adafruit", + "product_price": "1.00", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/693", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "742", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/742-00.jpg", + "image_is_video": "0", + "product_name": "Snap Circuits\u00ae XP\u2122", + "product_model": "Elenco SCXP-50", + "product_mpn": "ADA742", + "product_master_category": "94", + "product_manufacturer": "Elenco", + "product_price": "99.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/742", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "741", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/741-00.jpg", + "image_is_video": "0", + "product_name": "Snap Circuits\u00ae Green", + "product_model": "Elenco SCG-125", + "product_mpn": "ADA741", + "product_master_category": "94", + "product_manufacturer": "Elenco", + "product_price": "74.95", + "product_shipping_weight": "1,179.3", + "product_url": "https:\/\/www.adafruit.com\/product\/741", + "product_stock": "0", + "products_hts": "9503.00.00.90", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "740", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/740-00.jpg", + "image_is_video": "0", + "product_name": "Snap Circuits\u00ae Pro 500 Experiments", + "product_model": "Elenco SC-500", + "product_mpn": "ADA740", + "product_master_category": "94", + "product_manufacturer": "Elenco", + "product_price": "89.95", + "product_shipping_weight": "1,723.7", + "product_url": "https:\/\/www.adafruit.com\/product\/740", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "739", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/739-00.jpg", + "image_is_video": "0", + "product_name": "Snap Circuits\u00ae Jr. 100 Experiments", + "product_model": "Elenco SC-100", + "product_mpn": "ADA739", + "product_master_category": "94", + "product_manufacturer": "Elenco", + "product_price": "29.95", + "product_shipping_weight": "725.7", + "product_url": "https:\/\/www.adafruit.com\/product\/739", + "product_stock": "in stock", + "products_hts": "9503.00.00.90", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2009", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2009-00.jpg", + "image_is_video": "0", + "product_name": "LittleBits Sequencer Module", + "product_model": "", + "product_mpn": "ADA2009", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "36.00", + "product_shipping_weight": "25.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2009", + "product_stock": "5", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1579", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1579-00.jpg", + "image_is_video": "0", + "product_name": "littleBits Deluxe Kit", + "product_model": "", + "product_mpn": "ADA1579", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "199.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1579", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1635", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1635-00.jpg", + "image_is_video": "0", + "product_name": "littleBits KORG Synth Kit", + "product_model": "", + "product_mpn": "ADA1635", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "159.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1635", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1659", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1659-00.jpg", + "image_is_video": "0", + "product_name": "littleBits Base Kit", + "product_model": "", + "product_mpn": "ADA1659", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1659", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1836", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1836-02.jpg", + "image_is_video": "0", + "product_name": "littleBits Space Kit", + "product_model": "", + "product_mpn": "ADA1836", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "149.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1836", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1888", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1888-02.jpg", + "image_is_video": "0", + "product_name": "LittleBits Arduino Module", + "product_model": "", + "product_mpn": "ADA1888", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "36.00", + "product_shipping_weight": "26.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1888", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1889", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1889-01.jpg", + "image_is_video": "0", + "product_name": "LittleBits Arduino Coding Kit", + "product_model": "", + "product_mpn": "ADA1889", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "89.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1889", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2016", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2016-04.jpg", + "image_is_video": "0", + "product_name": "littleBits cloudBit Starter Kit", + "product_model": "", + "product_mpn": "ADA2016", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "99.00", + "product_shipping_weight": "404.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2016", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2330", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2330-00.jpg", + "image_is_video": "0", + "product_name": "littleBits cloudBit Module", + "product_model": "", + "product_mpn": "ADA2330", + "product_master_category": "95", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "273.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2330", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "181", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/181-02.jpg", + "image_is_video": "0", + "product_name": "Standard LCD 16x2 + extras", + "product_model": "white on blue", + "product_mpn": "ADA181", + "product_master_category": "96", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "30.5", + "product_url": "https:\/\/www.adafruit.com\/product\/181", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "198", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/198-12.jpg", + "image_is_video": "0", + "product_name": "Standard LCD 20x4 + extras", + "product_model": "white on blue", + "product_mpn": "ADA198", + "product_master_category": "96", + "product_manufacturer": null, + "product_price": "17.95", + "product_shipping_weight": "72.6", + "product_url": "https:\/\/www.adafruit.com\/product\/198", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "292", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/292-04.jpg", + "image_is_video": "0", + "product_name": "i2c \/ SPI character LCD backpack", + "product_model": "", + "product_mpn": "ADA292", + "product_master_category": "96", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/292", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "398", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/398-06.jpg", + "image_is_video": "1", + "product_name": "RGB backlight positive LCD 16x2 + extras", + "product_model": "black on RGB", + "product_mpn": "ADA398", + "product_master_category": "96", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "41.6", + "product_url": "https:\/\/www.adafruit.com\/product\/398", + "product_stock": "-12", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "399", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/399-06.jpg", + "image_is_video": "1", + "product_name": "RGB backlight negative LCD 16x2 + extras", + "product_model": "RGB on black", + "product_mpn": "ADA399", + "product_master_category": "96", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "41.3", + "product_url": "https:\/\/www.adafruit.com\/product\/399", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "498", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/498-06.jpg", + "image_is_video": "1", + "product_name": "RGB backlight negative LCD 20x4 + extras", + "product_model": "RGB on black", + "product_mpn": "ADA498", + "product_master_category": "96", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "82.5", + "product_url": "https:\/\/www.adafruit.com\/product\/498", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "499", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/499-06.jpg", + "image_is_video": "1", + "product_name": "RGB backlight positive LCD 20x4 + extras", + "product_model": "black on RGB", + "product_mpn": "ADA499", + "product_master_category": "96", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "79.0", + "product_url": "https:\/\/www.adafruit.com\/product\/499", + "product_stock": "6", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "781", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/781-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit USB + Serial LCD Backpack Add-On with Cable", + "product_model": "", + "product_mpn": "ADA781", + "product_master_category": "96", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/781", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "823", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/823-05.jpg", + "image_is_video": "0", + "product_name": "Blue Character OLED 16x2", + "product_model": "", + "product_mpn": "ADA823", + "product_master_category": "96", + "product_manufacturer": null, + "product_price": "27.95", + "product_shipping_weight": "26.6", + "product_url": "https:\/\/www.adafruit.com\/product\/823", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "25.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1447", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1447-02.jpg", + "image_is_video": "0", + "product_name": "Assembled Standard LCD 16x2 + extras - White on Blue", + "product_model": "", + "product_mpn": "ADA1447", + "product_master_category": "96", + "product_manufacturer": null, + "product_price": "10.95", + "product_shipping_weight": "32.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1447", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "347", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/347-00.jpg", + "image_is_video": "0", + "product_name": "20x2 Character VFD (Vacuum Fluorescent Display) - SPI interface", + "product_model": "20T202DA2JA", + "product_mpn": "ADA347", + "product_master_category": "96", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/347", + "product_stock": "-3", + "products_hts": "8540.89.0020", + "products_coo": "KR", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1365", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1365-06.jpg", + "image_is_video": "0", + "product_name": "Acrylic Stand for 16x2 Character LCD", + "product_model": "", + "product_mpn": "ADA1365", + "product_master_category": "96", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "24.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1365", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "784", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/784-07.jpg", + "image_is_video": "0", + "product_name": "USB + Serial Backpack Kit with 16x2 RGB backlight negative LCD", + "product_model": "RGB on Black", + "product_mpn": "ADA784", + "product_master_category": "96", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "52.3", + "product_url": "https:\/\/www.adafruit.com\/product\/784", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "782", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/782-09.jpg", + "image_is_video": "0", + "product_name": "USB + Serial Backpack Kit with 16x2 RGB backlight positive LCD", + "product_model": "Black on RGB", + "product_mpn": "ADA782", + "product_master_category": "96", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "52.6", + "product_url": "https:\/\/www.adafruit.com\/product\/782", + "product_stock": "-12", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "330", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/330-00.jpg", + "image_is_video": "0", + "product_name": "Microtouch - AVR development board with 2.8\" TFT Touch Screen", + "product_model": "", + "product_mpn": "ADA330", + "product_master_category": "97", + "product_manufacturer": null, + "product_price": "69.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/330", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.10", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "335", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/335-00.jpg", + "image_is_video": "0", + "product_name": "2.8\" 18-bit color TFT LCD with touchscreen breakout board", + "product_model": "ILI9325", + "product_mpn": "ADA335", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "40.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/335", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "40.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "36.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "32.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "358", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/358-00.jpg", + "image_is_video": "0", + "product_name": "1.8\" Color TFT LCD display with MicroSD Card Breakout", + "product_model": "ST7735R", + "product_mpn": "ADA358", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "16.1", + "product_url": "https:\/\/www.adafruit.com\/product\/358", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "797", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/797-00.jpg", + "image_is_video": "0", + "product_name": "2.2\" 18-bit color TFT LCD display with microSD card breakout", + "product_model": "HX8340BN", + "product_mpn": "ADA797", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/797", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1480", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1480-00.jpg", + "image_is_video": "0", + "product_name": "2.2\" 18-bit color TFT LCD display with microSD card breakout", + "product_model": "", + "product_mpn": "ADA1480", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1480", + "product_stock": "33", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1590", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1590-08.jpg", + "image_is_video": "0", + "product_name": "RA8875 Driver Board for 40-pin TFT Touch Displays - 800x480 Max", + "product_model": "", + "product_mpn": "ADA1590", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "11.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1590", + "product_stock": "52", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1743", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1743-05.jpg", + "image_is_video": "0", + "product_name": "3.2\" TFT LCD with Touchscreen Breakout Board w\/MicroSD Socket", + "product_model": "ILI9341", + "product_mpn": "ADA1743", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "47.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1743", + "product_stock": "26", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2088", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2088-10.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.44\" Color TFT LCD Display with MicroSD Card breakout", + "product_model": "ST7735R", + "product_mpn": "ADA2088", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "12.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2088", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2353", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2353-00.jpg", + "image_is_video": "0", + "product_name": "7.0\" 40-pin TFT Display - 800x480 without Touchscreen", + "product_model": "", + "product_mpn": "ADA2353", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "49.50", + "product_shipping_weight": "220.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2353", + "product_stock": "59", + "products_hts": "8531.20.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2354", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2354-01.jpg", + "image_is_video": "0", + "product_name": "7.0\" 40-pin TFT Display - 800x480 with Touchscreen", + "product_model": "", + "product_mpn": "ADA2354", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "47.50", + "product_shipping_weight": "169.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2354", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "47.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "42.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "38.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2770", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2770-00.jpg", + "image_is_video": "0", + "product_name": "2.8\" TFT Display - 240x320 with Capacitive Touchscreen", + "product_model": "", + "product_mpn": "ADA2770", + "product_master_category": "97", + "product_manufacturer": null, + "product_price": "37.95", + "product_shipping_weight": "56.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2770", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "37.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "34.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3533", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3533-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.96\" 160x80 Color TFT Display w\/ MicroSD Card Breakout", + "product_model": "ST7735", + "product_mpn": "ADA3533", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3533", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3787", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3787-11.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.54\" 240x240 Wide Angle TFT LCD Display with MicroSD", + "product_model": "ST7789", + "product_mpn": "ADA3787", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "11.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3787", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4278", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4278-00.jpg", + "image_is_video": "0", + "product_name": "3.2\" TFT Display with Resistive Touchscreen", + "product_model": "", + "product_mpn": "ADA4278", + "product_master_category": "97", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4278", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "4311", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4311-06.jpg", + "image_is_video": "0", + "product_name": "2.0\" 320x240 Color IPS TFT Display with microSD Card Breakout", + "product_model": "", + "product_mpn": "ADA4311", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "16.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4311", + "product_stock": "90", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4313", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4313-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.3\" 240x240 Wide Angle TFT LCD Display with MicroSD", + "product_model": "ST7789", + "product_mpn": "ADA4313", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "16.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4313", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4367", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4367-05.jpg", + "image_is_video": "1", + "product_name": "Circuit Playground TFT Gizmo - Bolt-on Display + Audio Amplifier", + "product_model": "", + "product_mpn": "ADA4367", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "31.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4367", + "product_stock": "45", + "products_hts": "8534.00.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4383", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4383-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.14\" 240x135 Color TFT Display + MicroSD Card Breakout", + "product_model": "ST7789", + "product_mpn": "ADA4383", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4383", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4421", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4421-00.jpg", + "image_is_video": "0", + "product_name": "1.54\" 240x240 Color IPS TFT Display", + "product_model": "", + "product_mpn": "ADA4421", + "product_master_category": "97", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4421", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "4520", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4520-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.3\" 240x240 Wide Angle IPS TFT Display", + "product_model": "", + "product_mpn": "ADA4520", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4520", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "1932", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1932-01.jpg", + "image_is_video": "0", + "product_name": "40-pin TFT Friend - FPC Breakout with LED Backlight Driver", + "product_model": "", + "product_mpn": "ADA1932", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "7.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1932", + "product_stock": "72", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2478", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2478-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.4\" TFT LCD with Touchscreen Breakout w\/MicroSD Socket", + "product_model": "ILI9341", + "product_mpn": "ADA2478", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "27.50", + "product_shipping_weight": "33.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2478", + "product_stock": "38", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1591", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1591-10.jpg", + "image_is_video": "0", + "product_name": "4.3\" 40-pin TFT Display - 480x272 with Touchscreen", + "product_model": "", + "product_mpn": "ADA1591", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "57.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1591", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1774", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1774-00.jpg", + "image_is_video": "0", + "product_name": "2.8\" TFT Display with Resistive Touchscreen", + "product_model": "", + "product_mpn": "ADA1774", + "product_master_category": "97", + "product_manufacturer": null, + "product_price": "17.95", + "product_shipping_weight": "25.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1774", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1680", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1680-00.jpg", + "image_is_video": "0", + "product_name": "5.0\" 40-pin 800x480 TFT Display without Touchscreen", + "product_model": "", + "product_mpn": "ADA1680", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "60.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1680", + "product_stock": "40", + "products_hts": "8531.20.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "618", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/618-07.jpg", + "image_is_video": "0", + "product_name": "1.8\" SPI TFT display, 160x128 18-bit color - ST7735R driver", + "product_model": "", + "product_mpn": "ADA618", + "product_master_category": "97", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/618", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1596", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1596-00.jpg", + "image_is_video": "0", + "product_name": "5.0\" 40-pin TFT Display - 800x480 with Touchscreen", + "product_model": "", + "product_mpn": "ADA1596", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "77.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1596", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2090", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2090-05.jpg", + "image_is_video": "0", + "product_name": "2.8\" TFT LCD with Cap Touch Breakout Board w\/MicroSD Socket", + "product_model": "", + "product_mpn": "ADA2090", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "72.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2090", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2050", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2050-05.jpg", + "image_is_video": "0", + "product_name": "3.5\" TFT 320x480 + Touchscreen Breakout Board w\/MicroSD Socket", + "product_model": "HXD8357D", + "product_mpn": "ADA2050", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "77.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2050", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1770", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1770-00.jpg", + "image_is_video": "0", + "product_name": "2.8\" TFT LCD with Touchscreen Breakout Board w\/MicroSD Socket", + "product_model": "ILI9341", + "product_mpn": "ADA1770", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "43.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1770", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "802", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/802-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit 1.8\" Color TFT Shield w\/microSD and Joystick", + "product_model": "v 2", + "product_mpn": "ADA802", + "product_master_category": "97", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "49.5", + "product_url": "https:\/\/www.adafruit.com\/product\/802", + "product_stock": "24", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "326", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/326-04.jpg", + "image_is_video": "0", + "product_name": "Monochrome 0.96\" 128x64 OLED Graphic Display - STEMMA QT", + "product_model": "", + "product_mpn": "ADA326", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/326", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "931", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/931-10.jpg", + "image_is_video": "0", + "product_name": "Monochrome 128x32 I2C OLED graphic display", + "product_model": "", + "product_mpn": "ADA931", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "5.8", + "product_url": "https:\/\/www.adafruit.com\/product\/931", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "938", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/938-05.jpg", + "image_is_video": "1", + "product_name": "Monochrome 1.3\" 128x64 OLED graphic display - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA938", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/938", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2674", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2674-15.jpg", + "image_is_video": "0", + "product_name": "Monochrome 2.7\" 128x64 OLED Graphic Display Module Kit", + "product_model": "", + "product_mpn": "ADA2674", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "28.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2674", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2675", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2675-08.jpg", + "image_is_video": "0", + "product_name": "Monochrome 2.3\" 128x32 OLED Graphic Display Module Kit", + "product_model": "", + "product_mpn": "ADA2675", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "25.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2675", + "product_stock": "2", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2719", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2719-11.jpg", + "image_is_video": "1", + "product_name": "Monochrome 2.42\" 128x64 OLED Graphic Display Module Kit", + "product_model": "", + "product_mpn": "ADA2719", + "product_master_category": "98", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "23.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2719", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2720", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2720-10.jpg", + "image_is_video": "1", + "product_name": "Monochrome 1.54\" 128x64 OLED Graphic Display Module Kit", + "product_model": "", + "product_mpn": "ADA2720", + "product_master_category": "98", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2720", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4440", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4440-06.jpg", + "image_is_video": "1", + "product_name": "Monochrome 0.91\" 128x32 I2C OLED Display - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4440", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4440", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4741", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4741-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit Grayscale 1.5\" 128x128 OLED Graphic Display", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4741", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4741", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1673", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1673-09.jpg", + "image_is_video": "0", + "product_name": "OLED Breakout Board - 16-bit Color 1.27\" w\/microSD holder", + "product_model": "", + "product_mpn": "ADA1673", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "11.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1673", + "product_stock": "79", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "684", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/684-12.jpg", + "image_is_video": "0", + "product_name": "OLED Breakout Board - 16-bit Color 0.96\" w\/microSD holder", + "product_model": "", + "product_mpn": "ADA684", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/684", + "product_stock": "85", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1431", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1431-09.jpg", + "image_is_video": "0", + "product_name": "OLED Breakout Board - 16-bit Color 1.5\" w\/microSD holder", + "product_model": "", + "product_mpn": "ADA1431", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "14.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1431", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "661", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/661-11.jpg", + "image_is_video": "0", + "product_name": "Monochrome 128x32 SPI OLED graphic display", + "product_model": "", + "product_mpn": "ADA661", + "product_master_category": "98", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "5.8", + "product_url": "https:\/\/www.adafruit.com\/product\/661", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "188", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/188-01.jpg", + "image_is_video": "0", + "product_name": "Graphic KS0108 LCD 128x64 + extras", + "product_model": "white on blue", + "product_mpn": "ADA188", + "product_master_category": "99", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "81.3", + "product_url": "https:\/\/www.adafruit.com\/product\/188", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "253", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/253-00.jpg", + "image_is_video": "0", + "product_name": "MONOCHRON KS0108 Graphic LCD", + "product_model": "white on black", + "product_mpn": "ADA253", + "product_master_category": "99", + "product_manufacturer": null, + "product_price": "30.00", + "product_shipping_weight": "78.8", + "product_url": "https:\/\/www.adafruit.com\/product\/253", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "30.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "27.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "24.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "438", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/438-00.jpg", + "image_is_video": "0", + "product_name": "Graphic ST7565 Negative LCD (128x64) with RGB backlight + extras", + "product_model": "ST7565", + "product_mpn": "ADA438", + "product_master_category": "99", + "product_manufacturer": null, + "product_price": "18.95", + "product_shipping_weight": "57.0", + "product_url": "https:\/\/www.adafruit.com\/product\/438", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "250", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/250-00.jpg", + "image_is_video": "0", + "product_name": "Graphic ST7565 Positive LCD (128x64) with RGB backlight + extras", + "product_model": "ST7565", + "product_mpn": "ADA250", + "product_master_category": "99", + "product_manufacturer": null, + "product_price": "17.95", + "product_shipping_weight": "57.6", + "product_url": "https:\/\/www.adafruit.com\/product\/250", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "338", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/338-03.jpg", + "image_is_video": "0", + "product_name": "Nokia 5110\/3310 monochrome LCD + extras", + "product_model": "", + "product_mpn": "ADA338", + "product_master_category": "99", + "product_manufacturer": null, + "product_price": "10.00", + "product_shipping_weight": "17.4", + "product_url": "https:\/\/www.adafruit.com\/product\/338", + "product_stock": "-9", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "420", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/420-08.jpg", + "image_is_video": "0", + "product_name": "Medium 16x32 RGB LED matrix panel - 6mm Pitch", + "product_model": "", + "product_mpn": "ADA420", + "product_master_category": "100", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "300.4", + "product_url": "https:\/\/www.adafruit.com\/product\/420", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "773", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/773-00.jpg", + "image_is_video": "0", + "product_name": "128x64 Graphic VFD (Vacuum Fluorescent Display) - SPI interface", + "product_model": "", + "product_mpn": "ADA773", + "product_master_category": "101", + "product_manufacturer": null, + "product_price": "94.95", + "product_shipping_weight": "143.4", + "product_url": "https:\/\/www.adafruit.com\/product\/773", + "product_stock": "0", + "products_hts": "8540.89.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "94.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "85.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "75.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "766", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/766-00.jpg", + "image_is_video": "0", + "product_name": "Green 7-segment clock display - 0.39\" digit height", + "product_model": "", + "product_mpn": "ADA766", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/766", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "767", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/767-00.jpg", + "image_is_video": "0", + "product_name": "Yellow 7-segment clock display - 0.39\" digit height", + "product_model": "", + "product_mpn": "ADA767", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/767", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "768", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/768-00.jpg", + "image_is_video": "0", + "product_name": "Red 7-segment clock display - 0.39\" digit height", + "product_model": "", + "product_mpn": "ADA768", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/768", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "812", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/812-00.jpg", + "image_is_video": "0", + "product_name": "Blue 7-segment clock display - 0.56\" digit height", + "product_model": "", + "product_mpn": "ADA812", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "11.1", + "product_url": "https:\/\/www.adafruit.com\/product\/812", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "877", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/877-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit 7-Segment LED Matrix Backpack", + "product_model": "", + "product_mpn": "ADA877", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "6.00", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/877", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.40", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1001", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1001-00.jpg", + "image_is_video": "0", + "product_name": "White 7-segment clock display - 0.56\" digit height", + "product_model": "", + "product_mpn": "ADA1001", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "11.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1001", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1265", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1265-00.jpg", + "image_is_video": "0", + "product_name": "Yellow 7-segment clock display - 1.2\" digit height", + "product_model": "", + "product_mpn": "ADA1265", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "57.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1265", + "product_stock": "90", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1266", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1266-00.jpg", + "image_is_video": "0", + "product_name": "Green 7-segment clock display - 1.2\" digit height", + "product_model": "", + "product_mpn": "ADA1266", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "54.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1266", + "product_stock": "-10", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1271", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1271-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit 7-Segment Backpack - 1.2\" Tall Digits", + "product_model": "", + "product_mpn": "ADA1271", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "10.00", + "product_shipping_weight": "22.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1271", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1412", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1412-00.jpg", + "image_is_video": "0", + "product_name": "Red Hex-Segment Single Digit - 0.8\" Tall Common Cathode", + "product_model": "", + "product_mpn": "ADA1412", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1412", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1907", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1907-04.jpg", + "image_is_video": "0", + "product_name": "Dual Alphanumeric Display - Red 0.54\" Digit Height - Pack of 2", + "product_model": "", + "product_mpn": "ADA1907", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "9.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1907", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1908", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1908-03.jpg", + "image_is_video": "0", + "product_name": "Dual Alphanumeric Display - Blue 0.54\" Digit Height - Pack of 2", + "product_model": "", + "product_mpn": "ADA1908", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "12.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1908", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1910", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1910-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 14-segment LED Alphanumeric Backpack", + "product_model": "", + "product_mpn": "ADA1910", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "6.00", + "product_shipping_weight": "7.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1910", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.40", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2153", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2153-01.jpg", + "image_is_video": "0", + "product_name": "Dual Alphanumeric Display - White 0.54\" Digit Height - Pack of 2", + "product_model": "", + "product_mpn": "ADA2153", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "11.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2153", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2154", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2154-01.jpg", + "image_is_video": "0", + "product_name": "Dual Alphanumeric Display -Yellow 0.54\" Digit Height - Pack of 2", + "product_model": "", + "product_mpn": "ADA2154", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "10.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2154", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2155", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2155-01.jpg", + "image_is_video": "0", + "product_name": "Dual Alphanumeric Display - Yellow-Green 0.54\" - Pack of 2", + "product_model": "", + "product_mpn": "ADA2155", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2155", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2156", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2156-01.jpg", + "image_is_video": "0", + "product_name": "Dual Alphanumeric Display - Green 0.54\" Digit Height - Pack of 2", + "product_model": "", + "product_mpn": "ADA2156", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2156", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1409", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1409-00.jpg", + "image_is_video": "0", + "product_name": "Red Hex-Segment Single Digit - 2.3\" Tall Common anode", + "product_model": "", + "product_mpn": "ADA1409", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1409", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "811", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/811-00.jpg", + "image_is_video": "0", + "product_name": "Yellow 7-segment clock display - 0.56\" digit height", + "product_model": "", + "product_mpn": "ADA811", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/811", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1264", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1264-00.jpg", + "image_is_video": "0", + "product_name": "Red 7-segment clock display - 1.2\" digit height", + "product_model": "", + "product_mpn": "ADA1264", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "60.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1264", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "813", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/813-00.jpg", + "image_is_video": "0", + "product_name": "Green 7-segment clock display - 0.56\" digit height", + "product_model": "", + "product_mpn": "ADA813", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/813", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2158", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2158-02.jpg", + "image_is_video": "0", + "product_name": "Quad Alphanumeric Display - Yellow 0.54\" Digits w\/ I2C Backpack", + "product_model": "", + "product_mpn": "ADA2158", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "10.50", + "product_shipping_weight": "17.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2158", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2159", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2159-02.jpg", + "image_is_video": "0", + "product_name": "Quad Alphanumeric Display -Yellow-Green 0.54\" Digits w\/ Backpack", + "product_model": "", + "product_mpn": "ADA2159", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "17.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2159", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "865", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/865-00.jpg", + "image_is_video": "0", + "product_name": "Red 7-segment clock display - 0.56\" digit height", + "product_model": "", + "product_mpn": "ADA865", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/865", + "product_stock": "83", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2160", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2160-02.jpg", + "image_is_video": "0", + "product_name": "Quad Alphanumeric Display - Pure Green 0.54\" Digits w\/ Backpack", + "product_model": "", + "product_mpn": "ADA2160", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2160", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2157", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2157-03.jpg", + "image_is_video": "0", + "product_name": "Quad Alphanumeric Display - White 0.54\" Digits w\/ I2C Backpack", + "product_model": "", + "product_mpn": "ADA2157", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "19.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2157", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1269", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1269-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.2\" 4-Digit 7-Segment Display w\/I2C Backpack - Yellow", + "product_model": "", + "product_mpn": "ADA1269", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "79.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1269", + "product_stock": "90", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1399", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1399-00.jpg", + "image_is_video": "0", + "product_name": "RGB 7-Segment Digit - 1\" Tall Digit", + "product_model": "", + "product_mpn": "ADA1399", + "product_master_category": "103", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1399", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1002", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1002-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment Display w\/I2C Backpack - White", + "product_model": "", + "product_mpn": "ADA1002", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "18.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1002", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1268", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1268-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.2\" 4-Digit 7-Segment Display w\/I2C Backpack - Green", + "product_model": "", + "product_mpn": "ADA1268", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "18.95", + "product_shipping_weight": "76.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1268", + "product_stock": "-10", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1911", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1911-08.jpg", + "image_is_video": "0", + "product_name": "Quad Alphanumeric Display - Red 0.54\" Digits w\/ I2C Backpack", + "product_model": "", + "product_mpn": "ADA1911", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "17.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1911", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1912", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1912-08.jpg", + "image_is_video": "0", + "product_name": "Quad Alphanumeric Display - Blue 0.54\" Digits w\/ I2C Backpack", + "product_model": "", + "product_mpn": "ADA1912", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "19.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1912", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "879", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/879-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment Display w\/I2C Backpack - Yellow", + "product_model": "", + "product_mpn": "ADA879", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "16.3", + "product_url": "https:\/\/www.adafruit.com\/product\/879", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1270", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1270-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.2\" 4-Digit 7-Segment Display w\/I2C Backpack - Red", + "product_model": "", + "product_mpn": "ADA1270", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "82.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1270", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "880", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/880-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment Display w\/I2C Backpack - Green", + "product_model": "", + "product_mpn": "ADA880", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "16.6", + "product_url": "https:\/\/www.adafruit.com\/product\/880", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "878", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/878-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment Display w\/I2C Backpack - Red", + "product_model": "", + "product_mpn": "ADA878", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "16.7", + "product_url": "https:\/\/www.adafruit.com\/product\/878", + "product_stock": "83", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "881", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/881-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment Display w\/I2C Backpack - Blue", + "product_model": "", + "product_mpn": "ADA881", + "product_master_category": "103", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "18.2", + "product_url": "https:\/\/www.adafruit.com\/product\/881", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "786", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/786-00.jpg", + "image_is_video": "0", + "product_name": "Coin Acceptor - Programmable 1 Coin Type", + "product_model": "", + "product_mpn": "ADA786", + "product_master_category": "104", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/786", + "product_stock": "0", + "products_hts": "8476.19.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "787", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/787-00.jpg", + "image_is_video": "0", + "product_name": "Coin Acceptor - Programmable 4 Coin Type", + "product_model": "", + "product_mpn": "ADA787", + "product_master_category": "104", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "368.4", + "product_url": "https:\/\/www.adafruit.com\/product\/787", + "product_stock": "17", + "products_hts": "8476.19.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3195", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3195-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Blinkt! for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3195", + "product_master_category": "105", + "product_manufacturer": "Pimoroni", + "product_price": "5.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3195", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "463", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/463-00.jpg", + "image_is_video": "0", + "product_name": "8\" eTape Liquid Level Sensor + extras", + "product_model": "", + "product_mpn": "ADA463", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "69.6", + "product_url": "https:\/\/www.adafruit.com\/product\/463", + "product_stock": "19", + "products_hts": "8533.40.80.70", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "997", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/997-04.jpg", + "image_is_video": "0", + "product_name": "Plastic Water Solenoid Valve - 12V - 1\/2\" Nominal", + "product_model": "", + "product_mpn": "ADA997", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "103.7", + "product_url": "https:\/\/www.adafruit.com\/product\/997", + "product_stock": "in stock", + "products_hts": "8481.80.9005", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3397", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3397-01.jpg", + "image_is_video": "0", + "product_name": "Optomax Digital Liquid Level Sensor", + "product_model": "LLC200D3SH-LLPK1", + "product_mpn": "ADA3397", + "product_master_category": "106", + "product_manufacturer": "SST Sensing", + "product_price": "24.95", + "product_shipping_weight": "10.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3397", + "product_stock": "in stock", + "products_hts": "9026.10.2040", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3827", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3827-00.jpg", + "image_is_video": "0", + "product_name": "5\" eTape Liquid Level Sensor + extras", + "product_model": "", + "product_mpn": "ADA3827", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "74.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3827", + "product_stock": "0", + "products_hts": "8533.40.80.70", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3828", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3828-01.jpg", + "image_is_video": "0", + "product_name": "5\" eTape Liquid Level Sensor with Plastic Casing", + "product_model": "", + "product_mpn": "ADA3828", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "34.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3828", + "product_stock": "42", + "products_hts": "8533.40.80.70", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4965", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4965-03.jpg", + "image_is_video": "1", + "product_name": "Simple Water Detection Sensor with Digital Output", + "product_model": "", + "product_mpn": "ADA4965", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4965", + "product_stock": "in stock", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2656", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2656-03.jpg", + "image_is_video": "1", + "product_name": "12\" Standard eTape Liquid Level Sensor with Plastic Casing", + "product_model": "", + "product_mpn": "ADA2656", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "59.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2656", + "product_stock": "in stock", + "products_hts": "9026.10.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1786", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1786-00.jpg", + "image_is_video": "0", + "product_name": "12\" Chemical eTape Liquid Level Sensor with Teflon Jacket", + "product_model": "", + "product_mpn": "ADA1786", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "76.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1786", + "product_stock": "14", + "products_hts": "8533.40.80.70", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "833", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/833-00.jpg", + "image_is_video": "0", + "product_name": "Liquid Flow Meter - Brass 1\/2\" Nominal Threaded", + "product_model": "", + "product_mpn": "ADA833", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "94.7", + "product_url": "https:\/\/www.adafruit.com\/product\/833", + "product_stock": "in stock", + "products_hts": "9026.10.2040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "464", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/464-00.jpg", + "image_is_video": "0", + "product_name": "12\" eTape Liquid Level Sensor + extras", + "product_model": "", + "product_mpn": "ADA464", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "74.9", + "product_url": "https:\/\/www.adafruit.com\/product\/464", + "product_stock": "13", + "products_hts": "8533.40.80.70", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "996", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/996-07.jpg", + "image_is_video": "0", + "product_name": "Brass Liquid Solenoid Valve - 12V - 1\/2 NPS", + "product_model": "", + "product_mpn": "ADA996", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/996", + "product_stock": "in stock", + "products_hts": "8481.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "828", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/828-00.jpg", + "image_is_video": "0", + "product_name": "Liquid Flow Meter - Plastic 1\/2\" NPS Threaded", + "product_model": "", + "product_mpn": "ADA828", + "product_master_category": "106", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "53.9", + "product_url": "https:\/\/www.adafruit.com\/product\/828", + "product_stock": "29", + "products_hts": "9026.10.2040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "885", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/885-00.jpg", + "image_is_video": "0", + "product_name": "IOIO Mint - Portable Android Development Kit", + "product_model": "", + "product_mpn": "ADA885", + "product_master_category": "109", + "product_manufacturer": null, + "product_price": "65.00", + "product_shipping_weight": "73.9", + "product_url": "https:\/\/www.adafruit.com\/product\/885", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "912", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/912-04.jpg", + "image_is_video": "0", + "product_name": "NTSC\/PAL (Television) TFT Display - 2.5\" Diagonal", + "product_model": "", + "product_mpn": "ADA912", + "product_master_category": "110", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "48.4", + "product_url": "https:\/\/www.adafruit.com\/product\/912", + "product_stock": "36", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "910", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/910-04.jpg", + "image_is_video": "0", + "product_name": "NTSC\/PAL (Television) TFT Display - 1.5\" Diagonal", + "product_model": "", + "product_mpn": "ADA910", + "product_master_category": "110", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "39.7", + "product_url": "https:\/\/www.adafruit.com\/product\/910", + "product_stock": "45", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "911", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/911-04.jpg", + "image_is_video": "0", + "product_name": "NTSC\/PAL (Television) TFT Display - 2.0\" Diagonal", + "product_model": "", + "product_mpn": "ADA911", + "product_master_category": "110", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "42.7", + "product_url": "https:\/\/www.adafruit.com\/product\/911", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1452", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1452-00.jpg", + "image_is_video": "0", + "product_name": "NTSC\/PAL (Television) Video Glasses", + "product_model": "", + "product_mpn": "ADA1452", + "product_master_category": "110", + "product_manufacturer": null, + "product_price": "109.95", + "product_shipping_weight": "323.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1452", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "109.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "98.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "87.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "913", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/913-04.jpg", + "image_is_video": "0", + "product_name": "NTSC\/PAL (Television) TFT Display - 3.5\" Diagonal", + "product_model": "", + "product_mpn": "ADA913", + "product_master_category": "110", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "78.7", + "product_url": "https:\/\/www.adafruit.com\/product\/913", + "product_stock": "87", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "947", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/947-02.jpg", + "image_is_video": "0", + "product_name": "NTSC\/PAL (Television) TFT Display - 7\" Diagonal", + "product_model": "", + "product_mpn": "ADA947", + "product_master_category": "110", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/947", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "59.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "946", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/946-01.jpg", + "image_is_video": "0", + "product_name": "NTSC\/PAL (Television) TFT Display - 4.3\" Diagonal", + "product_model": "", + "product_mpn": "ADA946", + "product_master_category": "110", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "236.9", + "product_url": "https:\/\/www.adafruit.com\/product\/946", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "501", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/501-05.jpg", + "image_is_video": "0", + "product_name": "5V 1A (1000mA) USB port power supply - UL Listed", + "product_model": "", + "product_mpn": "ADA501", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "53.8", + "product_url": "https:\/\/www.adafruit.com\/product\/501", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1290", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1290-00.jpg", + "image_is_video": "0", + "product_name": "Crayola ColorStudio HD+", + "product_model": "", + "product_mpn": "ADA1290", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1290", + "product_stock": "0", + "products_hts": "9017.20.8040", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "929", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/929-00.jpg", + "image_is_video": "0", + "product_name": "Clear No-Logo iPhone Replacement Back - iPhone 4", + "product_model": "", + "product_mpn": "ADA929", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "32.8", + "product_url": "https:\/\/www.adafruit.com\/product\/929", + "product_stock": "-3", + "products_hts": "4202.92.9060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1235", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1235-00.jpg", + "image_is_video": "0", + "product_name": "Flowing Effect iOS Dock Data+Charging Cable - White w\/Aqua EL", + "product_model": "", + "product_mpn": "ADA1235", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1235", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1236", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1236-00.jpg", + "image_is_video": "0", + "product_name": "Flowing Effect iOS Dock Data+Charging Cable - Black w\/Aqua EL", + "product_model": "", + "product_mpn": "ADA1236", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1236", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1237", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1237-00.jpg", + "image_is_video": "0", + "product_name": "Flowing Effect iOS Lightning Cable - White w\/Aqua EL", + "product_model": "", + "product_mpn": "ADA1237", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1237", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1238", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1238-00.jpg", + "image_is_video": "0", + "product_name": "Flowing Effect iOS Lightning Cable - Black w\/Aqua EL", + "product_model": "", + "product_mpn": "ADA1238", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1238", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "891", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/891-00.jpg", + "image_is_video": "0", + "product_name": "iPhone 4\/4S Bottom Screw Replacement - Phillips #000 2 per pack", + "product_model": "", + "product_mpn": "ADA891", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "1.99", + "product_shipping_weight": "0.8", + "product_url": "https:\/\/www.adafruit.com\/product\/891", + "product_stock": "-3", + "products_hts": "7318.15.4000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.79", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.59", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "892", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/892-00.jpg", + "image_is_video": "0", + "product_name": "iPhone 4\/4S Bottom Screw Replacement - Pentalobe 2 per pack", + "product_model": "", + "product_mpn": "ADA892", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "1.99", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/892", + "product_stock": "-3", + "products_hts": "7318.15.4000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.79", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.59", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "928", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/928-00.jpg", + "image_is_video": "0", + "product_name": "Black No-Logo iPhone Replacement Back - iPhone 4S", + "product_model": "", + "product_mpn": "ADA928", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "76.2", + "product_url": "https:\/\/www.adafruit.com\/product\/928", + "product_stock": "7", + "products_hts": "4202.92.9060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "925", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/925-00.jpg", + "image_is_video": "0", + "product_name": "Mirror iPhone Replacement Back - iPhone 4", + "product_model": "", + "product_mpn": "ADA925", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/925", + "product_stock": "5", + "products_hts": "4202.92.9060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "926", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/926-00.jpg", + "image_is_video": "0", + "product_name": "Mirror iPhone Replacement Back - iPhone 4S", + "product_model": "", + "product_mpn": "ADA926", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "37.0", + "product_url": "https:\/\/www.adafruit.com\/product\/926", + "product_stock": "-3", + "products_hts": "4202.92.9060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "927", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/927-00.jpg", + "image_is_video": "0", + "product_name": "Black No-Logo iPhone Replacement Back - iPhone 4", + "product_model": "", + "product_mpn": "ADA927", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "118.7", + "product_url": "https:\/\/www.adafruit.com\/product\/927", + "product_stock": "-3", + "products_hts": "4202.92.9060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "930", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/930-00.jpg", + "image_is_video": "0", + "product_name": "Clear No-Logo iPhone Replacement Back - iPhone 4S", + "product_model": "", + "product_mpn": "ADA930", + "product_master_category": "111", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "33.3", + "product_url": "https:\/\/www.adafruit.com\/product\/930", + "product_stock": "-3", + "products_hts": "4202.92.9060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1233", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1233-00.jpg", + "image_is_video": "0", + "product_name": "Flowing Effect MicroUSB Data+Charging Cable - Black w\/Aqua EL", + "product_model": "", + "product_mpn": "ADA1233", + "product_master_category": "113", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1233", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1234", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1234-00.jpg", + "image_is_video": "0", + "product_name": "Flowing Effect MicroUSB Data+Charging Cable - White w\/Aqua EL", + "product_model": "", + "product_mpn": "ADA1234", + "product_master_category": "113", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1234", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1603", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1603-03.jpg", + "image_is_video": "0", + "product_name": "BMP180 Barometric Pressure\/Temperature\/Altitude Sensor- 5V ready", + "product_model": "", + "product_mpn": "ADA1603", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1603", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3965", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3965-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit MPRLS Ported Pressure Sensor Breakout - 0 to 25 PSI", + "product_model": "", + "product_mpn": "ADA3965", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3965", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3966", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3966-09.jpg", + "image_is_video": "0", + "product_name": "Adafruit BMP388 - Precision Barometric Pressure and Altimeter", + "product_model": "STEMMA QT", + "product_mpn": "ADA3966", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3966", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4059", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4059-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit BMP280 I2C or SPI Barometric Pressure & Altitude Sensor", + "product_model": "Assembled", + "product_mpn": "ADA4059", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4059", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "4063", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4258", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4258-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit LPS35HW Water Resistant Pressure Sensor", + "product_model": "STEMMA QT", + "product_mpn": "ADA4258", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4258", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4494", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4494-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit DPS310 Precision Barometric Pressure \/ Altitude Sensor", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4494", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4494", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4716", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4716-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit MS8607 Pressure Humidity Temperature PHT Sensor", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4716", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4716", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4816", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4816-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit BMP390L - Precision Barometric Pressure and Altimeter", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4816", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4816", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2652", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2652-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit BME280 I2C or SPI Temperature Humidity Pressure Sensor", + "product_model": "STEMMA QT", + "product_mpn": "ADA2652", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2652", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1900", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1900-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit BMP183 SPI Barometric Pressure & Altitude Sensor", + "product_model": "", + "product_mpn": "ADA1900", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1900", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1893", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1893-02.jpg", + "image_is_video": "0", + "product_name": "MPL3115A2 - I2C Barometric Pressure\/Altitude\/Temperature Sensor", + "product_model": "", + "product_mpn": "ADA1893", + "product_master_category": "114", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1893", + "product_stock": "60", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1077", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1077-00.jpg", + "image_is_video": "0", + "product_name": "Heart Rate Educational Starter Pack with Polar Wireless Sensors", + "product_model": "", + "product_mpn": "ADA1077", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "65.00", + "product_shipping_weight": "157.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1077", + "product_stock": "9", + "products_hts": "9029.20.40", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2699", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2699-02.jpg", + "image_is_video": "0", + "product_name": "MyoWare Muscle Sensor", + "product_model": "", + "product_mpn": "ADA2699", + "product_master_category": "115", + "product_manufacturer": "Advancer Technologies", + "product_price": "37.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2699", + "product_stock": "10", + "products_hts": "9030.33.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "37.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "34.16", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2773", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2773-00.jpg", + "image_is_video": "0", + "product_name": "Muscle Sensor Surface EMG Electrodes - H124SG Covidien", + "product_model": "Pack of 6", + "product_mpn": "ADA2773", + "product_master_category": "115", + "product_manufacturer": "Advancer Technologies", + "product_price": "4.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2773", + "product_stock": "in stock", + "products_hts": "9030.33.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3686", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3686-04.jpg", + "image_is_video": "1", + "product_name": "PM2.5 Air Quality Sensor and Breadboard Adapter Kit", + "product_model": "PMS5003", + "product_mpn": "ADA3686", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "62.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3686", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4505", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4505-00.jpg", + "image_is_video": "0", + "product_name": "PM2.5 Air Quality Sensor with I2C Interface - PMSA003I", + "product_model": "", + "product_mpn": "ADA4505", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "22.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4505", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4632", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4632-10.jpg", + "image_is_video": "0", + "product_name": "Adafruit PMSA003I Air Quality Breakout", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4632", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "31.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4632", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4649", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4649-04.jpg", + "image_is_video": "1", + "product_name": "Dust Sensor Module Kit - GP2Y1014AU0F with Cable", + "product_model": "", + "product_mpn": "ADA4649", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4649", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4651", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4651-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Panel Mount Fingerprint Sensor with Bi-Color LED Ring", + "product_model": "R503", + "product_mpn": "ADA4651", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "37.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4651", + "product_stock": "in stock", + "products_hts": "8471.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4690", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4690-02.jpg", + "image_is_video": "0", + "product_name": "Basic Fingerprint Sensor With Socket Header Cable", + "product_model": "", + "product_mpn": "ADA4690", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "17.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4690", + "product_stock": "59", + "products_hts": "8471.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4750", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4750-02.jpg", + "image_is_video": "0", + "product_name": "Ultra-Slim Round Fingerprint Sensor and 6-pin Cable", + "product_model": "", + "product_mpn": "ADA4750", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4750", + "product_stock": "in stock", + "products_hts": "8473.30.1180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1093", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1093-06.jpg", + "image_is_video": "0", + "product_name": "Pulse Sensor Amped", + "product_model": "", + "product_mpn": "ADA1093", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "25.00", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1093", + "product_stock": "in stock", + "products_hts": "9029.20.40", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "751", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/751-04.jpg", + "image_is_video": "0", + "product_name": "Fingerprint sensor", + "product_model": "", + "product_mpn": "ADA751", + "product_master_category": "115", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "22.5", + "product_url": "https:\/\/www.adafruit.com\/product\/751", + "product_stock": "78", + "products_hts": "8471.60.8000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1021", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1021-07.jpg", + "image_is_video": "0", + "product_name": "Cappy the Capacitor - Circuit Playground Plushie", + "product_model": "", + "product_mpn": "ADA1021", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "49.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1021", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1022", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1022-03.jpg", + "image_is_video": "0", + "product_name": "Hans 555 Timer IC - Circuit Playground Plushie", + "product_model": "", + "product_mpn": "ADA1022", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "31.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1022", + "product_stock": "14", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1023", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1023-06.jpg", + "image_is_video": "0", + "product_name": "Mho the Resistor - Circuit Playground Plushie", + "product_model": "", + "product_mpn": "ADA1023", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "23.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1023", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1024", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1024-07.jpg", + "image_is_video": "0", + "product_name": "Connie the Transistor - Circuit Playground Plushie", + "product_model": "", + "product_mpn": "ADA1024", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "26.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1024", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1025", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1025-06.jpg", + "image_is_video": "0", + "product_name": "Ruby the Red LED - Circuit Playground Plushie", + "product_model": "", + "product_mpn": "ADA1025", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "32.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1025", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1026", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1026-07.jpg", + "image_is_video": "0", + "product_name": "Gus the Green LED - Circuit Playground Plushie", + "product_model": "", + "product_mpn": "ADA1026", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "28.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1026", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1027", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1027-05.jpg", + "image_is_video": "0", + "product_name": "Billie the Blue LED - Circuit Playground Plushie", + "product_model": "", + "product_mpn": "ADA1027", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "31.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1027", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2769", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2769-11.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Express Advanced Pack", + "product_model": "", + "product_mpn": "ADA2769", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "856.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2769", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3399", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3399-01.jpg", + "image_is_video": "0", + "product_name": "Code.org Circuit Playground Express Educators' Pack", + "product_model": "", + "product_mpn": "ADA3399", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "350.00", + "product_shipping_weight": "1,596.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3399", + "product_stock": "51", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3795", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3795-00.jpg", + "image_is_video": "0", + "product_name": "Code.org Circuit Playground Individual Kit Pack", + "product_model": "", + "product_mpn": "ADA3795", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "217.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3795", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4180", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4180-05.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Express for 4-H", + "product_model": "", + "product_mpn": "ADA4180", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4180", + "product_stock": "in stock", + "products_hts": "8473.30.0002", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4263", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4263-04.jpg", + "image_is_video": "0", + "product_name": "4-H Circuit Playground Express - Base Kit", + "product_model": "", + "product_mpn": "ADA4263", + "product_master_category": "116", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "152.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4263", + "product_stock": "2", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3666", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3666-03.jpg", + "image_is_video": "1", + "product_name": "Bristlebot - 10 pack", + "product_model": "by Brown Dog Gadgets", + "product_mpn": "ADA3666", + "product_master_category": "117", + "product_manufacturer": "Brown Dog Gadgets", + "product_price": "39.95", + "product_shipping_weight": "177.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3666", + "product_stock": "13", + "products_hts": "8501.10.4060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3667", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3667-03.jpg", + "image_is_video": "1", + "product_name": "Bristlebot - 4 pack", + "product_model": "by Brown Dog Gadgets", + "product_mpn": "ADA3667", + "product_master_category": "117", + "product_manufacturer": "Brown Dog Gadgets", + "product_price": "19.95", + "product_shipping_weight": "64.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3667", + "product_stock": "23", + "products_hts": "8501.10.4060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1058", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1058-00.jpg", + "image_is_video": "0", + "product_name": "Cross Laser Diode - 5mW 650nm Red", + "product_model": "", + "product_mpn": "ADA1058", + "product_master_category": "118", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "10.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1058", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1094", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1094-03.jpg", + "image_is_video": "0", + "product_name": "Fixed Laser Mounting Stand", + "product_model": "", + "product_mpn": "ADA1094", + "product_master_category": "118", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "23.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1094", + "product_stock": "in stock", + "products_hts": "9013.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1057", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1057-04.jpg", + "image_is_video": "0", + "product_name": "Line Laser Diode - 5mW 650nm Red", + "product_model": "", + "product_mpn": "ADA1057", + "product_master_category": "118", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1057", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1055", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1055-02.jpg", + "image_is_video": "0", + "product_name": "Adjustable Laser Mounting Stand", + "product_model": "", + "product_mpn": "ADA1055", + "product_master_category": "118", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "59.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1055", + "product_stock": "in stock", + "products_hts": "9013.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1056", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1056-00.jpg", + "image_is_video": "0", + "product_name": "TTL Laser Diode - 5mW 650nm Red - 50KHz Max", + "product_model": "", + "product_mpn": "ADA1056", + "product_master_category": "118", + "product_manufacturer": null, + "product_price": "18.95", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1056", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1054", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1054-00.jpg", + "image_is_video": "0", + "product_name": "Laser Diode - 5mW 650nm Red", + "product_model": "", + "product_mpn": "ADA1054", + "product_master_category": "118", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1054", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1063", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1063-03.jpg", + "image_is_video": "0", + "product_name": "Electret Microphone Amplifier - MAX4466 with Adjustable Gain", + "product_model": "", + "product_mpn": "ADA1063", + "product_master_category": "119", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1063", + "product_stock": "in stock", + "products_hts": "9902.10.1700", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1713", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1713-00.jpg", + "image_is_video": "0", + "product_name": "Electret Microphone Amplifier - MAX9814 with Auto Gain Control", + "product_model": "", + "product_mpn": "ADA1713", + "product_master_category": "119", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1713", + "product_stock": "in stock", + "products_hts": "8518.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2716", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2716-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Silicon MEMS Microphone Breakout - SPW2430", + "product_model": "", + "product_mpn": "ADA2716", + "product_master_category": "119", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2716", + "product_stock": "in stock", + "products_hts": "9902.10.1700", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3367", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3367-00.jpg", + "image_is_video": "0", + "product_name": "Mini USB Microphone", + "product_model": "", + "product_mpn": "ADA3367", + "product_master_category": "119", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3367", + "product_stock": "in stock", + "products_hts": "8518.10.8030", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3421", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3421-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit I2S MEMS Microphone Breakout - SPH0645LM4H", + "product_model": "", + "product_mpn": "ADA3421", + "product_master_category": "119", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3421", + "product_stock": "in stock", + "products_hts": "9902.10.1700", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3492", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3492-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PDM MEMS Microphone Breakout", + "product_model": "", + "product_mpn": "ADA3492", + "product_master_category": "119", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3492", + "product_stock": "in stock", + "products_hts": "8518.29.40.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4346", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4346-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit PDM Microphone Breakout with JST SH Connector", + "product_model": "", + "product_mpn": "ADA4346", + "product_master_category": "119", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4346", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1935", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1935-03.jpg", + "image_is_video": "0", + "product_name": "Wired Miniature Electret Microphone", + "product_model": "", + "product_mpn": "ADA1935", + "product_master_category": "119", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1935", + "product_stock": "77", + "products_hts": "9902.10.1700", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1064", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1064-02.jpg", + "image_is_video": "0", + "product_name": "Electret Microphone - 20Hz-20KHz Omnidirectional", + "product_model": "", + "product_mpn": "ADA1064", + "product_master_category": "119", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "1.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1064", + "product_stock": "in stock", + "products_hts": "9902.10.1700", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "321", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/321-01.jpg", + "image_is_video": "0", + "product_name": "Large Alligator Clip Test Lead (set of 10)", + "product_model": "", + "product_mpn": "ADA321", + "product_master_category": "120", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "79.5", + "product_url": "https:\/\/www.adafruit.com\/product\/321", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1068", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1068-06.jpg", + "image_is_video": "0", + "product_name": "MaKey MaKey by Jay Silver and Eric Rosenbaum - Made by JoyLabz", + "product_model": "", + "product_mpn": "ADA1068", + "product_master_category": "120", + "product_manufacturer": "Joy Labz", + "product_price": "49.95", + "product_shipping_weight": "150.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1068", + "product_stock": "18", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2218", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2218-01.jpg", + "image_is_video": "0", + "product_name": "TFP401 HDMI\/DVI Decoder to 40-Pin TTL Breakout - Without Touch", + "product_model": "", + "product_mpn": "ADA2218", + "product_master_category": "121", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "20.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2218", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2219", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2219-01.jpg", + "image_is_video": "0", + "product_name": "TFP401 HDMI\/DVI Decoder to 40-Pin TTL Breakout - With Touch", + "product_model": "", + "product_mpn": "ADA2219", + "product_master_category": "121", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2219", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1180", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1180-00.jpg", + "image_is_video": "0", + "product_name": "8mm Diameter Linear Bearing Pillow Block", + "product_model": "SC8LUU", + "product_mpn": "ADA1180", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "92.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1180", + "product_stock": "-3", + "products_hts": "8482.10.5012", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1181", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1181-00.jpg", + "image_is_video": "0", + "product_name": "Linear Ball Bearing - 8mm diameter", + "product_model": "LM8UU", + "product_mpn": "ADA1181", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "13.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1181", + "product_stock": "46", + "products_hts": "8482.10.5012", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1183", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1183-01.jpg", + "image_is_video": "0", + "product_name": "12mm Diameter Linear Bearing Pillow Block", + "product_model": "SBR12UU", + "product_mpn": "ADA1183", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "90.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1183", + "product_stock": "42", + "products_hts": "8482.10.5012", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1851", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1851-00.jpg", + "image_is_video": "0", + "product_name": "Linear Bearing Supported Slide Rail - 12mm wide - 600mm long", + "product_model": "", + "product_mpn": "ADA1851", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "925.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1851", + "product_stock": "0", + "products_hts": "7604.21.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1860", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1860-04.jpg", + "image_is_video": "0", + "product_name": "15mm Diameter Linear Bearing Pillow Block", + "product_model": "", + "product_mpn": "ADA1860", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "21.95", + "product_shipping_weight": "200.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1860", + "product_stock": "0", + "products_hts": "8482.10.5012", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1861", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1861-00.jpg", + "image_is_video": "0", + "product_name": "Linear Bearing Supported Slide Rail - 15mm wide - 500mm long", + "product_model": "", + "product_mpn": "ADA1861", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "725.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1861", + "product_stock": "23", + "products_hts": "7604.21.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1866", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1866-06.jpg", + "image_is_video": "0", + "product_name": "15mm Diameter Linear Bearing Pillow Block - Wider Version", + "product_model": "", + "product_mpn": "ADA1866", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "199.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1866", + "product_stock": "37", + "products_hts": "8482.10.5012", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2392", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2392-01.jpg", + "image_is_video": "0", + "product_name": "Camera and Tripod 3\/8\" to 1\/4\" Adapter Screw", + "product_model": "", + "product_mpn": "ADA2392", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2392", + "product_stock": "in stock", + "products_hts": "7318.14.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2410", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2410-01.jpg", + "image_is_video": "0", + "product_name": "Camera Shoe Mount \/ Bracket - Connects to 1\/4\" screw", + "product_model": "", + "product_mpn": "ADA2410", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "18.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2410", + "product_stock": "8", + "products_hts": "9006.91.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2464", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2464-07.jpg", + "image_is_video": "0", + "product_name": "Swivel-Head Pan Tilt (PTZ) Shoe Mount Adapter", + "product_model": "", + "product_mpn": "ADA2464", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "42.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2464", + "product_stock": "37", + "products_hts": "9006.91.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2629", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2629-01.jpg", + "image_is_video": "0", + "product_name": "1\/4\" Screw with D-Ring - for Cameras \/ Tripods \/ Photo \/ Video", + "product_model": "", + "product_mpn": "ADA2629", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2629", + "product_stock": "21", + "products_hts": "7318.14.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2632", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2632-01.jpg", + "image_is_video": "0", + "product_name": "1\/4\" to 1\/4\" Screw Adapter - For Camera \/ Tripod \/ Photo \/ Video", + "product_model": "", + "product_mpn": "ADA2632", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2632", + "product_stock": "33", + "products_hts": "7318.14.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1178", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1178-00.jpg", + "image_is_video": "0", + "product_name": "Radial Ball Bearing 608ZZ - Set of 4", + "product_model": "", + "product_mpn": "ADA1178", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "46.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1178", + "product_stock": "in stock", + "products_hts": "8482.80.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1254", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1254-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum GT2 Timing Pulley - 6mm Belt - 36 Tooth - 8mm Bore", + "product_model": "", + "product_mpn": "ADA1254", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "13.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1254", + "product_stock": "24", + "products_hts": "8483.50.9040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1177", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1177-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Flex Shaft Coupler - 5mm to 10mm", + "product_model": "", + "product_mpn": "ADA1177", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "16.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1177", + "product_stock": "83", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1175", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1175-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Flex Shaft Coupler - 5mm to 5mm", + "product_model": "", + "product_mpn": "ADA1175", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "15.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1175", + "product_stock": "in stock", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1179", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1179-00.jpg", + "image_is_video": "0", + "product_name": "Linear Bearing Platform (Small) - 8mm Diameter", + "product_model": "SC8UU", + "product_mpn": "ADA1179", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "47.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1179", + "product_stock": "40", + "products_hts": "8482.10.5012", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1252", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1252-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum GT2 Timing Pulley - 6mm Belt - 20 Tooth - 8mm Bore", + "product_model": "", + "product_mpn": "ADA1252", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "5.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1252", + "product_stock": "58", + "products_hts": "8483.50.9040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1182", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1182-00.jpg", + "image_is_video": "0", + "product_name": "Linear Rail Shaft Guide\/Support - 8mm Diameter", + "product_model": "SK8", + "product_mpn": "ADA1182", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "26.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1182", + "product_stock": "in stock", + "products_hts": "8482.10.5012", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1176", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1176-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Flex Shaft Coupler - 5mm to 8mm", + "product_model": "", + "product_mpn": "ADA1176", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1176", + "product_stock": "in stock", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1253", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1253-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum GT2 Timing Pulley - 6mm Belt - 36 Tooth - 5mm Bore", + "product_model": "", + "product_mpn": "ADA1253", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1253", + "product_stock": "75", + "products_hts": "8483.50.9040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1251", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1251-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum GT2 Timing Pulley - 6mm Belt - 20 Tooth - 5mm Bore", + "product_model": "", + "product_mpn": "ADA1251", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1251", + "product_stock": "in stock", + "products_hts": "8483.50.9040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1184", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1184-01.jpg", + "image_is_video": "0", + "product_name": "Timing Belt GT2 Profile - 2mm pitch - 6mm wide 1164mm long", + "product_model": "", + "product_mpn": "ADA1184", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "11.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1184", + "product_stock": "7", + "products_hts": "3926.90.6010", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1297", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1297-00.jpg", + "image_is_video": "0", + "product_name": "Stepper Motor Mount with Hardware - NEMA-17 Sized", + "product_model": "", + "product_mpn": "ADA1297", + "product_master_category": "122", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "125.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1297", + "product_stock": "42", + "products_hts": "7326.90.8588", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "288", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/288-02.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Red", + "product_model": "", + "product_mpn": "ADA288", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "50.9", + "product_url": "https:\/\/www.adafruit.com\/product\/288", + "product_stock": "in stock", + "products_hts": "7408.29.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "289", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/289-02.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Yellow", + "product_model": "", + "product_mpn": "ADA289", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "48.9", + "product_url": "https:\/\/www.adafruit.com\/product\/289", + "product_stock": "in stock", + "products_hts": "7408.29.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "290", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/290-02.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Black", + "product_model": "", + "product_mpn": "ADA290", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "48.0", + "product_url": "https:\/\/www.adafruit.com\/product\/290", + "product_stock": "in stock", + "products_hts": "7408.29.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1008", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1008-02.jpg", + "image_is_video": "0", + "product_name": "Small Alligator Clip Test Lead (set of 12)", + "product_model": "", + "product_mpn": "ADA1008", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "67.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1008", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2976", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2976-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Black", + "product_model": "", + "product_mpn": "ADA2976", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2976", + "product_stock": "16", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2977", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2977-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Brown", + "product_model": "", + "product_mpn": "ADA2977", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2977", + "product_stock": "1", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2978", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2978-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Orange", + "product_model": "", + "product_mpn": "ADA2978", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2978", + "product_stock": "37", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2979", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2979-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Green", + "product_model": "", + "product_mpn": "ADA2979", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2979", + "product_stock": "49", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2980", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2980-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Blue", + "product_model": "", + "product_mpn": "ADA2980", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2980", + "product_stock": "24", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2981", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2981-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Violet", + "product_model": "", + "product_mpn": "ADA2981", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2981", + "product_stock": "95", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2982", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2982-01.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Brown", + "product_model": "", + "product_mpn": "ADA2982", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2982", + "product_stock": "29", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2983", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2983-01.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Gray", + "product_model": "", + "product_mpn": "ADA2983", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2983", + "product_stock": "71", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2984", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2984-01.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - White", + "product_model": "", + "product_mpn": "ADA2984", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2984", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2986", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2986-01.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Orange", + "product_model": "", + "product_mpn": "ADA2986", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2986", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2987", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2987-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Yellow", + "product_model": "", + "product_mpn": "ADA2987", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2987", + "product_stock": "56", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2988", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2988-01.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Green", + "product_model": "", + "product_mpn": "ADA2988", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2988", + "product_stock": "69", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2989", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2989-01.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Blue", + "product_model": "", + "product_mpn": "ADA2989", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2989", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2990", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2990-01.jpg", + "image_is_video": "0", + "product_name": "Solid-Core Wire Spool - 25ft - 22AWG - Violet", + "product_model": "", + "product_mpn": "ADA2990", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2990", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2996", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2996-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Gray", + "product_model": "", + "product_mpn": "ADA2996", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2996", + "product_stock": "53", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2997", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2997-01.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - White", + "product_model": "", + "product_mpn": "ADA2997", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2997", + "product_stock": "86", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3068", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3068-00.jpg", + "image_is_video": "0", + "product_name": "Stranded-Core Wire Spool - 25ft - 22AWG - Red", + "product_model": "", + "product_mpn": "ADA3068", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3068", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3111", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3111-02.jpg", + "image_is_video": "0", + "product_name": "Hook-up Wire Spool Set - 22AWG Stranded-Core - 6 x 25ft", + "product_model": "", + "product_mpn": "ADA3111", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "351.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3111", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3174", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3174-02.jpg", + "image_is_video": "0", + "product_name": "Hook-up Wire Spool Set - 22AWG Solid Core - 10 x 25ft", + "product_model": "", + "product_mpn": "ADA3174", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "535.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3174", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3175", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3175-02.jpg", + "image_is_video": "0", + "product_name": "Hook-up Wire Spool Set - 22AWG Stranded-Core - 10 x 25ft", + "product_model": "", + "product_mpn": "ADA3175", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "572.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3175", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3255", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3255-02.jpg", + "image_is_video": "0", + "product_name": "Small Alligator Clip to Male Jumper Wire Bundle - 12 Pieces", + "product_model": "", + "product_mpn": "ADA3255", + "product_master_category": "125", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "26.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3255", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3314", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3314-00.jpg", + "image_is_video": "0", + "product_name": "Half Size Breadboard + 78 Piece 22AWG Jumper Wire Bundle", + "product_model": "", + "product_mpn": "ADA3314", + "product_master_category": "125", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "57.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3314", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3447", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3447-01.jpg", + "image_is_video": "0", + "product_name": "Small Alligator Clip Test Lead (Set of 18)", + "product_model": "", + "product_mpn": "ADA3447", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "85.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3447", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3448", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3448-00.jpg", + "image_is_video": "0", + "product_name": "Small Alligator Clip to Male Jumper Wire Bundle - 6 Pieces", + "product_model": "", + "product_mpn": "ADA3448", + "product_master_category": "125", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "12.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3448", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3522", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3522-03.jpg", + "image_is_video": "0", + "product_name": "Enameled Copper Magnet Wire \u2013 11 meters \/ 0.1mm diameter", + "product_model": "", + "product_mpn": "ADA3522", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3522", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3786", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3786-02.jpg", + "image_is_video": "0", + "product_name": "2-Pin Wire Joints (3-pack)", + "product_model": "", + "product_mpn": "ADA3786", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3786", + "product_stock": "in stock", + "products_hts": "8536.30.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4100", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4100-01.jpg", + "image_is_video": "0", + "product_name": "Small Alligator Clip Test Lead (set of 6)", + "product_model": "", + "product_mpn": "ADA4100", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "36.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4100", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4304", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4304-02.jpg", + "image_is_video": "0", + "product_name": "Small Alligator Clip to Female Jumper Wire Bundle - 6 Pieces", + "product_model": "", + "product_mpn": "ADA4304", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4304", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4730", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4730-00.jpg", + "image_is_video": "0", + "product_name": "Rainbow \"Wire Wrap\" Thin 30 AWG Prototyping & Repair Wire", + "product_model": "280 meters total - 35m each of 8", + "product_mpn": "ADA4730", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "157.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4730", + "product_stock": "in stock", + "products_hts": "8544.49.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4733", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4733-02.jpg", + "image_is_video": "0", + "product_name": "Ultra-Fine Stranded Wire Spool - 10 meters - 36AWG - Black", + "product_model": "", + "product_mpn": "ADA4733", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4733", + "product_stock": "39", + "products_hts": "8544.49.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4766", + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4734", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4734-01.jpg", + "image_is_video": "0", + "product_name": "Ultra-Fine Stranded Wire Spool - 10 meters - 34AWG - Black", + "product_model": "", + "product_mpn": "ADA4734", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4734", + "product_stock": "in stock", + "products_hts": "8544.49.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4766", + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4735", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4735-01.jpg", + "image_is_video": "0", + "product_name": "Ultra-Fine Stranded Wire Spool - 10 meters - 32AWG - Black", + "product_model": "", + "product_mpn": "ADA4735", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4735", + "product_stock": "in stock", + "products_hts": "8544.49.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4766", + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4736", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4736-01.jpg", + "image_is_video": "0", + "product_name": "Ultra-Fine Stranded Wire Spool - 10 meters - 30AWG - Black", + "product_model": "", + "product_mpn": "ADA4736", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4736", + "product_stock": "in stock", + "products_hts": "8544.49.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4766", + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5152", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5152-00.jpg", + "image_is_video": "0", + "product_name": "Tropical Alligator Test Clip Leads - 10 Pieces - 13\" long", + "product_model": "", + "product_mpn": "ADA5152", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "0.00", + "product_shipping_weight": "58.6", + "product_url": "https:\/\/www.adafruit.com\/product\/5152", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2059", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2059-01.jpg", + "image_is_video": "0", + "product_name": "Thin RG-174\/U Coaxial Cable - 3 meters \/ approx 10 feet", + "product_model": "", + "product_mpn": "ADA2059", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "10.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2059", + "product_stock": "25", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "5-49", + "min_qty": 5 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1495", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1495-00.jpg", + "image_is_video": "0", + "product_name": "Cold 3-Wire Splice (UR) - 10 pack", + "product_model": "", + "product_mpn": "ADA1495", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1495", + "product_stock": "19", + "products_hts": "85369010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1496", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1496-00.jpg", + "image_is_video": "0", + "product_name": "Cold 2-Wire Splice (UY) - 10 pack", + "product_model": "", + "product_mpn": "ADA1496", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "5.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1496", + "product_stock": "73", + "products_hts": "85369010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1494", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1494-00.jpg", + "image_is_video": "0", + "product_name": "Cold Splice Wire Tap (UB) - 10 pack", + "product_model": "", + "product_mpn": "ADA1494", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1494", + "product_stock": "89", + "products_hts": "85369010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "677", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/677-02.jpg", + "image_is_video": "0", + "product_name": "Terminal block - 4 pin Euro-Style", + "product_model": "", + "product_mpn": "ADA677", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/677", + "product_stock": "in stock", + "products_hts": "8536.90.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "866", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/866-08.jpg", + "image_is_video": "0", + "product_name": "Snap-action 3-Wire Block Connector (12-28 AWG) - Pack of 3", + "product_model": "", + "product_mpn": "ADA866", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "13.7", + "product_url": "https:\/\/www.adafruit.com\/product\/866", + "product_stock": "in stock", + "products_hts": "8536.90.8585", + "products_coo": "DE", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1446", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1446-03.jpg", + "image_is_video": "0", + "product_name": "\"Wire Wrap\" Thin Prototyping & Repair Wire - 200m 30AWG Blue", + "product_model": "", + "product_mpn": "ADA1446", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "142.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1446", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "874", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/874-03.jpg", + "image_is_video": "0", + "product_name": "Snap-action 5-Wire Block Connector (12-24 AWG) - Pack of 3", + "product_model": "", + "product_mpn": "ADA874", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "20.9", + "product_url": "https:\/\/www.adafruit.com\/product\/874", + "product_stock": "in stock", + "products_hts": "85369010", + "products_coo": "DE", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "737", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/737-04.jpg", + "image_is_video": "0", + "product_name": "Power Distribution Bus - 7 x 6mm diameter solid brass", + "product_model": "", + "product_mpn": "ADA737", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "24.8", + "product_url": "https:\/\/www.adafruit.com\/product\/737", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1311", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1311-04.jpg", + "image_is_video": "0", + "product_name": "Hook-up Wire Spool Set - 22AWG Solid Core - 6 x 25 ft", + "product_model": "", + "product_mpn": "ADA1311", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "340.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1311", + "product_stock": "in stock", + "products_hts": "7408.29.10 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "153", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/153-04.jpg", + "image_is_video": "0", + "product_name": "Breadboarding wire bundle", + "product_model": "", + "product_mpn": "ADA153", + "product_master_category": "125", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "39.4", + "product_url": "https:\/\/www.adafruit.com\/product\/153", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4048", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4048-00.jpg", + "image_is_video": "0", + "product_name": "Mini SWD 0.05\" Pitch Connector - 10 Pin SMT Box Header", + "product_model": "", + "product_mpn": "ADA4048", + "product_master_category": "126", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4048", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4726", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4726-06.jpg", + "image_is_video": "0", + "product_name": "SMT Socket - Wide SOIC-8 (200mil)", + "product_model": "", + "product_mpn": "ADA4726", + "product_master_category": "126", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4726", + "product_stock": "2", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "752", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/752-00.jpg", + "image_is_video": "0", + "product_name": "SWD 0.05\" Pitch Connector - 10 Pin SMT Box Header", + "product_model": "", + "product_mpn": "ADA752", + "product_master_category": "126", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/752", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3143", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3143-00.jpg", + "image_is_video": "0", + "product_name": "Small Dual Row Wire Housing Pack for DIY Jumper Cables", + "product_model": "", + "product_mpn": "ADA3143", + "product_master_category": "127", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3143", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3144", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3144-00.jpg", + "image_is_video": "0", + "product_name": "Large Dual Row Wire Housing Pack for DIY Jumper Cables", + "product_model": "", + "product_mpn": "ADA3144", + "product_master_category": "127", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "36.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3144", + "product_stock": "92", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3145", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3145-00.jpg", + "image_is_video": "0", + "product_name": "Small Single Row Wire Housing Pack for DIY Jumper Cables", + "product_model": "", + "product_mpn": "ADA3145", + "product_master_category": "127", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3145", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3146", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3146-00.jpg", + "image_is_video": "0", + "product_name": "Large Single Row Housing Pack for DIY Jumper Cables", + "product_model": "", + "product_mpn": "ADA3146", + "product_master_category": "127", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3146", + "product_stock": "10", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3525", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3525-00.jpg", + "image_is_video": "0", + "product_name": "Jumper Shunt with Handle (0.1\" \/ 2.54mm) \u2013 10 Pack", + "product_model": "", + "product_mpn": "ADA3525", + "product_master_category": "127", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3525", + "product_stock": "74", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2602", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2602-04.jpg", + "image_is_video": "0", + "product_name": "Spikenzielabs Rainbow Light Show Kit", + "product_model": "", + "product_mpn": "ADA2602", + "product_master_category": "130", + "product_manufacturer": "Spikenzie Labs", + "product_price": "29.95", + "product_shipping_weight": "209.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2602", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1308", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1308-02.jpg", + "image_is_video": "0", + "product_name": "SpikenzieLabs Calculator Kit", + "product_model": "", + "product_mpn": "ADA1308", + "product_master_category": "130", + "product_manufacturer": "Spikenzie Labs", + "product_price": "43.95", + "product_shipping_weight": "133.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1308", + "product_stock": "0", + "products_hts": "8542.90.00 00", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "43.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "39.56", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3311", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3311-01.jpg", + "image_is_video": "0", + "product_name": "Power Cord Cable w\/ 3 Conductor PC Power Connector Socket", + "product_model": "6ft 18AWG", + "product_mpn": "ADA3311", + "product_master_category": "137", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "147.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3311", + "product_stock": "8", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "268", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/268-04.jpg", + "image_is_video": "0", + "product_name": "Powerswitch tail 2", + "product_model": "", + "product_mpn": "ADA268", + "product_master_category": "140", + "product_manufacturer": null, + "product_price": "25.95", + "product_shipping_weight": "240.9", + "product_url": "https:\/\/www.adafruit.com\/product\/268", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "25.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "23.36", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "3723", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3723-05.jpg", + "image_is_video": "1", + "product_name": "On\/Off Power Switch with Status Light", + "product_model": "", + "product_mpn": "ADA3723", + "product_master_category": "140", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "49.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3723", + "product_stock": "16", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3991", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3991-07.jpg", + "image_is_video": "0", + "product_name": "Hefty On-Off Pushbutton Power Switch", + "product_model": "", + "product_mpn": "ADA3991", + "product_master_category": "140", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "107.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3991", + "product_stock": "16", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "763", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/763-00.jpg", + "image_is_video": "0", + "product_name": "Smart Cord - A2DP Bluetooth, 120v 10amp 1200 Watt Extension Cord", + "product_model": "", + "product_mpn": "ADA763", + "product_master_category": "140", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/763", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2935", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2935-13.jpg", + "image_is_video": "0", + "product_name": "Controllable Four Outlet Power Relay Module version 2", + "product_model": "(Power Switch Tail Alternative)", + "product_mpn": "ADA2935", + "product_master_category": "140", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "461.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2935", + "product_stock": "in stock", + "products_hts": "8536.49.0055", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "260", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/260-00.jpg", + "image_is_video": "0", + "product_name": "USB cable - A\/MiniB", + "product_model": "3ft", + "product_mpn": "ADA260", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "4.00", + "product_shipping_weight": "31.0", + "product_url": "https:\/\/www.adafruit.com\/product\/260", + "product_stock": "76", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "954", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/954-02.jpg", + "image_is_video": "0", + "product_name": "USB to TTL Serial Cable - Debug \/ Console Cable for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA954", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "24.1", + "product_url": "https:\/\/www.adafruit.com\/product\/954", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "988", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/988-02.jpg", + "image_is_video": "0", + "product_name": "USB A Jack to 5.5\/2.1mm jack adapter", + "product_model": "", + "product_mpn": "ADA988", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "15.5", + "product_url": "https:\/\/www.adafruit.com\/product\/988", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1099", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1099-00.jpg", + "image_is_video": "0", + "product_name": "USB OTG Host Cable - MicroB OTG male to A female", + "product_model": "", + "product_mpn": "ADA1099", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "12.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1099", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1197", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1197-00.jpg", + "image_is_video": "0", + "product_name": "USB cable - 8\" A to Mini B Charging and Micro B Data", + "product_model": "", + "product_mpn": "ADA1197", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "28.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1197", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1620", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1620-02.jpg", + "image_is_video": "0", + "product_name": "USB Cable with Switch", + "product_model": "", + "product_mpn": "ADA1620", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "27.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1620", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2379", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2379-00.jpg", + "image_is_video": "0", + "product_name": "USB Power Only Cable with Switch - A\/MicroB", + "product_model": "", + "product_mpn": "ADA2379", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "42.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2379", + "product_stock": "in stock", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2727", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2727-00.jpg", + "image_is_video": "0", + "product_name": "MicroUSB Plug to 5.5\/2.1mm DC Barrel Jack Adapter", + "product_model": "", + "product_mpn": "ADA2727", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2727", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2777", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2777-06.jpg", + "image_is_video": "0", + "product_name": "USB to 2.1mm DC Booster Cable - 9V", + "product_model": "", + "product_mpn": "ADA2777", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "37.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2777", + "product_stock": "0", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2778", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2778-01.jpg", + "image_is_video": "0", + "product_name": "USB to 5.5mm \/ 2.1mm or 2.5mm DC Booster Cable - 12V Output", + "product_model": "", + "product_mpn": "ADA2778", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "37.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2778", + "product_stock": "-3", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2910", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2910-01.jpg", + "image_is_video": "0", + "product_name": "Tiny OTG Adapter - USB Micro to USB", + "product_model": "", + "product_mpn": "ADA2910", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2910", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-19", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "20+", + "min_qty": 20 + } + ] + }, + { + "product_id": "3419", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3419-00.jpg", + "image_is_video": "0", + "product_name": "Right Angle Extension USB Cable - A Male to A Female", + "product_model": "1 meter \/ 39\" long", + "product_mpn": "ADA3419", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "39.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3419", + "product_stock": "-10", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3438", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3438-01.jpg", + "image_is_video": "0", + "product_name": "USB Extension Cable with Data\/Charge Sync Switch", + "product_model": "", + "product_mpn": "ADA3438", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "16.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3438", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3610", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3610-01.jpg", + "image_is_video": "0", + "product_name": "Micro USB to Micro USB OTG Cable - 10-12\" \/ 25-30cm long", + "product_model": "", + "product_mpn": "ADA3610", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3610", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3940", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3940-08.jpg", + "image_is_video": "0", + "product_name": "iOS Lightning to USB OTG Cable", + "product_model": "", + "product_mpn": "ADA3940", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3940", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4106", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4106-01.jpg", + "image_is_video": "0", + "product_name": "DIY USB Cable Parts - Straight Micro B Plug", + "product_model": "", + "product_mpn": "ADA4106", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4106", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4111", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4111-02.jpg", + "image_is_video": "0", + "product_name": "Fully Reversible Pink\/Purple USB A to micro B Cable - 1m long", + "product_model": "", + "product_mpn": "ADA4111", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "22.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4111", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4260", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4260-01.jpg", + "image_is_video": "0", + "product_name": "USB C Jack to Micro USB Jack Round Panel Mount Adapter", + "product_model": "", + "product_mpn": "ADA4260", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "20.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4260", + "product_stock": "95", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4448", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4448-01.jpg", + "image_is_video": "0", + "product_name": "USB Type A Plug Breakout Cable with Premium Female Jumpers", + "product_model": "30cm long", + "product_mpn": "ADA4448", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4448", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4449", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4449-02.jpg", + "image_is_video": "0", + "product_name": "USB Type A Jack Breakout Cable with Premium Female Jumpers", + "product_model": "30cm long", + "product_mpn": "ADA4449", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4449", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4844", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4844-05.jpg", + "image_is_video": "0", + "product_name": "USB Host Switching Cable - Mini Mechanical KVM", + "product_model": "", + "product_mpn": "ADA4844", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "61.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4844", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1470", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1470-00.jpg", + "image_is_video": "0", + "product_name": "CHARGECARD Thin Micro USB for Android \/ Device Charging Cable", + "product_model": "", + "product_mpn": "ADA1470", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1470", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1472", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1472-00.jpg", + "image_is_video": "0", + "product_name": "CHARGECARD Thin Lightning Cable for iPhone 5", + "product_model": "", + "product_mpn": "ADA1472", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1472", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1473", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1473-00.jpg", + "image_is_video": "0", + "product_name": "CHARGECARD Ultra-thin USB Cable for iPhone 4\/4S (30 pin Connect)", + "product_model": "", + "product_mpn": "ADA1473", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1473", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2185", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2185-00.jpg", + "image_is_video": "0", + "product_name": "USB A\/Micro Cable - 2m", + "product_model": "", + "product_mpn": "ADA2185", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "82.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2185", + "product_stock": "58", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "993", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/993-03.jpg", + "image_is_video": "0", + "product_name": "USB Extension Cable - 3 meters \/ 10 ft long", + "product_model": "", + "product_mpn": "ADA993", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "106.5", + "product_url": "https:\/\/www.adafruit.com\/product\/993", + "product_stock": "78", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2008", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2008-01.jpg", + "image_is_video": "0", + "product_name": "USB Patterned Fabric Cable - A\/MicroB", + "product_model": "3ft", + "product_mpn": "ADA2008", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "24.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2008", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "900", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/900-02.jpg", + "image_is_video": "0", + "product_name": "USB Cable - 6\" Standard A-B", + "product_model": "", + "product_mpn": "ADA900", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/900", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "974", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/974-03.jpg", + "image_is_video": "0", + "product_name": "Flexible USB Swivel Adapter", + "product_model": "", + "product_mpn": "ADA974", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/974", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "899", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/899-00.jpg", + "image_is_video": "0", + "product_name": "USB cable - 6\" A\/MiniB", + "product_model": "", + "product_mpn": "ADA899", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "14.8", + "product_url": "https:\/\/www.adafruit.com\/product\/899", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1318", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1318-05.jpg", + "image_is_video": "0", + "product_name": "Right Angle USB cable - A\/MicroB", + "product_model": "", + "product_mpn": "ADA1318", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "57.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1318", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1514", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1514-00.jpg", + "image_is_video": "0", + "product_name": "USB 3-Way Charging Cable - iPhone 5\/iPhone\/iPad and MicroUSB", + "product_model": "", + "product_mpn": "ADA1514", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1514", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "971", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/971-03.jpg", + "image_is_video": "0", + "product_name": "PS\/2 Keyboard+Mouse to USB adapter", + "product_model": "", + "product_mpn": "ADA971", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/971", + "product_stock": "25", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "18", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/18-04.jpg", + "image_is_video": "0", + "product_name": "USB\/Serial Converter", + "product_model": "FT232RL", + "product_mpn": "ADA18", + "product_master_category": "142", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "97.0", + "product_url": "https:\/\/www.adafruit.com\/product\/18", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2698", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2698-01.jpg", + "image_is_video": "0", + "product_name": "3.5mm Male\/Male Stereo Cable", + "product_model": "1m", + "product_mpn": "ADA2698", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2698", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2792", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2792-00.jpg", + "image_is_video": "0", + "product_name": "RCA (Composite Video, Audio) Male Plug Terminal Block", + "product_model": "", + "product_mpn": "ADA2792", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "6.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2792", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2793", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2793-01.jpg", + "image_is_video": "0", + "product_name": "RCA (Composite Video, Audio) Female Jack Terminal Block", + "product_model": "", + "product_mpn": "ADA2793", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "7.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2793", + "product_stock": "5", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2882", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2882-00.jpg", + "image_is_video": "0", + "product_name": "DIY RCA Plug - 3 Pack", + "product_model": "", + "product_mpn": "ADA2882", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "24.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2882", + "product_stock": "67", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3365", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3365-00.jpg", + "image_is_video": "0", + "product_name": "HDMI to RCA Audio and NTSC or PAL Video Adapter", + "product_model": "", + "product_mpn": "ADA3365", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "55.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3365", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3378", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3378-00.jpg", + "image_is_video": "0", + "product_name": "AV (NTSC or PAL) to HDMI (720p or 1080p) Video and Audio Adapter", + "product_model": "", + "product_mpn": "ADA3378", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "188.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3378", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3535", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3535-00.jpg", + "image_is_video": "0", + "product_name": "VGA to HDMI Audio and Video Adapter", + "product_model": "", + "product_mpn": "ADA3535", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "91.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3535", + "product_stock": "29", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3537", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3537-00.jpg", + "image_is_video": "0", + "product_name": "HDMI to RCA Audio and CVBS NTSC, PAL, or S-Video Converter", + "product_model": "", + "product_mpn": "ADA3537", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "382.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3537", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4066", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4066-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm Stereo Male\/Male Cable - Gold Metal - 1 meter long", + "product_model": "", + "product_mpn": "ADA4066", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4066", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4070", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4067", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4067-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm Stereo Male\/Male Audio Cable - Silver Metal - 1 meter long", + "product_model": "", + "product_mpn": "ADA4067", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4067", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4070", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4068", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4068-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm Stereo Male\/Male Cable - Copper Metal - 1 meter long", + "product_model": "", + "product_mpn": "ADA4068", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4068", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4070", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4069", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4069-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm Stereo Male\/Male Cables - Black Metal - 1 meter long", + "product_model": "", + "product_mpn": "ADA4069", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4069", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4070", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4181", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4181-02.jpg", + "image_is_video": "0", + "product_name": "3.5mm Mono Audio Plug to Alligator Clips", + "product_model": "", + "product_mpn": "ADA4181", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "13.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4181", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4182", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4182-02.jpg", + "image_is_video": "0", + "product_name": "3.5mm Mono Audio Jack to Alligator Clip Cable", + "product_model": "", + "product_mpn": "ADA4182", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4182", + "product_stock": "2", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4715", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4715-03.jpg", + "image_is_video": "0", + "product_name": "RCA NTSC or PAL or S-Video Input to USB 2.0 Capture Adapter", + "product_model": "", + "product_mpn": "ADA4715", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "108.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4715", + "product_stock": "61", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1380", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1380-00.jpg", + "image_is_video": "0", + "product_name": "S-Video Cable - 6 feet", + "product_model": "", + "product_mpn": "ADA1380", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1380", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1698", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1698-00.jpg", + "image_is_video": "0", + "product_name": "Mini DisplayPort to DisplayPort Cable - 10 ft\/3 meters - White", + "product_model": "", + "product_mpn": "ADA1698", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "116.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1698", + "product_stock": "37", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1729", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1729-00.jpg", + "image_is_video": "0", + "product_name": "Panel Mount RCA (Composite Video, Audio) Cable", + "product_model": "", + "product_mpn": "ADA1729", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1,405.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1729", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "951", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/951-02.jpg", + "image_is_video": "0", + "product_name": "RCA coupler - Male to Male", + "product_model": "", + "product_mpn": "ADA951", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/951", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1013", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1013-02.jpg", + "image_is_video": "0", + "product_name": "3.5mm Stereo to RCA (Composite Audio) Cable 6 feet", + "product_model": "", + "product_mpn": "ADA1013", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "49.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1013", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "876", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/876-01.jpg", + "image_is_video": "0", + "product_name": "Stereo 3.5mm Plug\/Plug Audio Cable - 6 feet", + "product_model": "", + "product_mpn": "ADA876", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "51.9", + "product_url": "https:\/\/www.adafruit.com\/product\/876", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1301", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1301-03.jpg", + "image_is_video": "0", + "product_name": "VGA Cable - 1.5m long", + "product_model": "", + "product_mpn": "ADA1301", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "125.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1301", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1700", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1700-00.jpg", + "image_is_video": "0", + "product_name": "Right-Angle 3.5mm Stereo Plug to Pigtail Cable", + "product_model": "", + "product_mpn": "ADA1700", + "product_master_category": "143", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "16.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1700", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2912", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2912-01.jpg", + "image_is_video": "0", + "product_name": "Ethernet RJ45 Female Socket Push-Terminal Block", + "product_model": "", + "product_mpn": "ADA2912", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2912", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3238", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3238-01.jpg", + "image_is_video": "0", + "product_name": "802.3af PoE Output Data & Power Splitter - 12V 1A", + "product_model": "", + "product_mpn": "ADA3238", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "65.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3238", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3239", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3239-02.jpg", + "image_is_video": "0", + "product_name": "802.3af PoE Output Data & Power Splitter - 5\/9\/12V", + "product_model": "", + "product_mpn": "ADA3239", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "156.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3239", + "product_stock": "39", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3785", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3785-02.jpg", + "image_is_video": "0", + "product_name": "PoE Splitter with MicroUSB Plug - Isolated 12W - 5V 2.4 Amp", + "product_model": "", + "product_mpn": "ADA3785", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "10.95", + "product_shipping_weight": "57.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3785", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3847", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3847-00.jpg", + "image_is_video": "0", + "product_name": "5V 1.5A Output PoE Module - Works with Raspberry Pi 3 B+", + "product_model": "", + "product_mpn": "ADA3847", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3847", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3848", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3848-04.jpg", + "image_is_video": "0", + "product_name": "5V 1.8A Isolated Output PoE Module - For Raspberry Pi 3 \/ 4", + "product_model": "", + "product_mpn": "ADA3848", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "13.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3848", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4215", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4215-02.jpg", + "image_is_video": "0", + "product_name": "RJ-45 Ethernet Round Panel Mount Extension Cable - 30cm", + "product_model": "", + "product_mpn": "ADA4215", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "39.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4215", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4552", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4552-05.jpg", + "image_is_video": "0", + "product_name": "PoE Splitter with USB Type C - 5V 2A - 100 MB Ethernet", + "product_model": "", + "product_mpn": "ADA4552", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "57.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4552", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4981", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4981-02.jpg", + "image_is_video": "0", + "product_name": "RJ-45 Terminal Block to Ethernet Socket Adapter", + "product_model": "", + "product_mpn": "ADA4981", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "19.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4981", + "product_stock": "34", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "994", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/994-03.jpg", + "image_is_video": "0", + "product_name": "Ethernet Cable - 5 ft long", + "product_model": "", + "product_mpn": "ADA994", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "2.75", + "product_shipping_weight": "55.2", + "product_url": "https:\/\/www.adafruit.com\/product\/994", + "product_stock": "58", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.48", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "995", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/995-03.jpg", + "image_is_video": "0", + "product_name": "Ethernet Cable - 3 ft long", + "product_model": "", + "product_mpn": "ADA995", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "35.9", + "product_url": "https:\/\/www.adafruit.com\/product\/995", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "730", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/730-02.jpg", + "image_is_video": "0", + "product_name": "Ethernet Cable - 10 ft long", + "product_model": "", + "product_mpn": "ADA730", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "105.0", + "product_url": "https:\/\/www.adafruit.com\/product\/730", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "435", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/435-05.jpg", + "image_is_video": "0", + "product_name": "Passive PoE Injector Cable Set", + "product_model": "", + "product_mpn": "ADA435", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "72.0", + "product_url": "https:\/\/www.adafruit.com\/product\/435", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "827", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/827-06.jpg", + "image_is_video": "0", + "product_name": "Cable Gland - Waterproof RJ-45 \/ Ethernet connector", + "product_model": "RJ-45", + "product_mpn": "ADA827", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "25.6", + "product_url": "https:\/\/www.adafruit.com\/product\/827", + "product_stock": "80", + "products_hts": "3917.40.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "909", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/909-04.jpg", + "image_is_video": "0", + "product_name": "Panel Mount Ethernet Extension Cable", + "product_model": "", + "product_mpn": "ADA909", + "product_master_category": "144", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "34.3", + "product_url": "https:\/\/www.adafruit.com\/product\/909", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "370", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/370-01.jpg", + "image_is_video": "0", + "product_name": "10-pin Socket\/Socket IDC cable - 6\"", + "product_model": "", + "product_mpn": "ADA370", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/370", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "579", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/579-00.jpg", + "image_is_video": "0", + "product_name": "4-pin JST SM Receptacle Cable", + "product_model": "", + "product_mpn": "ADA579", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/579", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "743", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/743-08.jpg", + "image_is_video": "0", + "product_name": "Waterproof DC Power Cable Set - 5.5\/2.1mm", + "product_model": "", + "product_mpn": "ADA743", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/743", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "744", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/744-05.jpg", + "image_is_video": "0", + "product_name": "Waterproof Polarized 4-Wire Cable Set", + "product_model": "", + "product_mpn": "ADA744", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "21.8", + "product_url": "https:\/\/www.adafruit.com\/product\/744", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1675", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1675-00.jpg", + "image_is_video": "0", + "product_name": "10-pin 2x5 Socket-Socket 1.27mm IDC (SWD) Cable - 150mm long", + "product_model": "", + "product_mpn": "ADA1675", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1675", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3922", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3922-05.jpg", + "image_is_video": "0", + "product_name": "Molex Pico Blade 2-pin Cable - 200mm", + "product_model": "", + "product_mpn": "ADA3922", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3922", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4170", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4170-01.jpg", + "image_is_video": "0", + "product_name": "GPIO Ribbon Cable 2x8 IDC Cable - 16 pins 12\" long", + "product_model": "", + "product_mpn": "ADA4170", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4170", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4350", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4350-01.jpg", + "image_is_video": "0", + "product_name": "JST SH 9-Pin Cable - 100mm long", + "product_model": "", + "product_mpn": "ADA4350", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4350", + "product_stock": "in stock", + "products_hts": "8544.49.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4529", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4529-02.jpg", + "image_is_video": "0", + "product_name": "RockBLOCK 9603 Accessory Cable", + "product_model": "", + "product_mpn": "ADA4529", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4529", + "product_stock": "49", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4720", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4720-04.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 2-pin Cable Matching Pair - 40cm long", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4720", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4720", + "product_stock": "15", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4721", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4721-02.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 3-pin Cable Matching Pair - 40cm long", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4721", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4721", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4722", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4722-05.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 4-pin Cable Matching Pair - 40cm long", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4722", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4722", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4767", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4767-02.jpg", + "image_is_video": "0", + "product_name": "Replacement 5V Power Cable for RGB LED Matrices", + "product_model": "", + "product_mpn": "ADA4767", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4767", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4872", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4872-02.jpg", + "image_is_video": "0", + "product_name": "2.5mm Pitch 2-pin Cable Matching Pair - JST XH compatible", + "product_model": "", + "product_mpn": "ADA4872", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4872", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4873", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4873-02.jpg", + "image_is_video": "0", + "product_name": "2.5mm Pitch 3-pin Cable Matching Pair - JST XH Compatible", + "product_model": "", + "product_mpn": "ADA4873", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/4873", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4874", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4874-02.jpg", + "image_is_video": "0", + "product_name": "2.5mm Pitch 4-pin Cable Matching Pair - JST XH compatible", + "product_model": "", + "product_mpn": "ADA4874", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4874", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4875", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4875-02.jpg", + "image_is_video": "0", + "product_name": "2.5mm Pitch 5-pin Cable Matching Pair - JST XH compatible", + "product_model": "", + "product_mpn": "ADA4875", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4875", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4876", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4876-02.jpg", + "image_is_video": "0", + "product_name": "2.5mm Pitch 6-pin Cable Matching Pair - JST XH compatible", + "product_model": "", + "product_mpn": "ADA4876", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4876", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4922", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4922-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 2-pin Cable 20cm long 1:1 Cable", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4922", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4922", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4983", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4923", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4923-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 3-pin Cable 20cm long 1:N Cable", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4923", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4923", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4983", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4924", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4924-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 4-pin Cable 20cm long 1:N Cable", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4924", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4924", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4983", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4925", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4925-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 5-pin Cable 20cm long 1:1 Cable", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4925", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4925", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4983", + "discount_pricing": [] + }, + { + "product_id": "4927", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4927-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 7-pin Cable 20cm long 1:1 Cable", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4927", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4927", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4983", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4928", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4928-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 8-pin Cable 20cm long 1:1 Cable", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4928", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4928", + "product_stock": "67", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4983", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4929", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4929-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 9-pin Cable 20cm long 1:1 Cable", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4929", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4929", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4983", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4930", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4930-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 10-pin Cable 20cm long 1:1 Cable", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4930", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4930", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4983", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4975", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4975-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 5-pin Cable Matching Pair 10 cm long", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4975", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/4975", + "product_stock": "0", + "products_hts": "8544.49.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4986", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4986-01.jpg", + "image_is_video": "0", + "product_name": "1.25mm Pitch 6-pin Cable Matching Pair - 10 cm long", + "product_model": "Molex PicoBlade Compatible", + "product_mpn": "ADA4986", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4986", + "product_stock": "0", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5089", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5089-02.jpg", + "image_is_video": "0", + "product_name": "2.0mm Pitch 5-pin Cable Matching Pair - JST PH Compatible", + "product_model": "", + "product_mpn": "ADA5089", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/5089", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5161", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5090", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5090-03.jpg", + "image_is_video": "0", + "product_name": "2.0mm Pitch 6-pin Cable Matching Pair - JST PH Compatible", + "product_model": "", + "product_mpn": "ADA5090", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5090", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5161", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1682", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1682-00.jpg", + "image_is_video": "0", + "product_name": "50-pin 0.5mm Pitch FPC Flex Cable - 250mm \/ 10\" long", + "product_model": "", + "product_mpn": "ADA1682", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1682", + "product_stock": "53", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "556", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/556-00.jpg", + "image_is_video": "0", + "product_name": "10-pin Socket\/Socket IDC cable - Short 1.5\"", + "product_model": "", + "product_mpn": "ADA556", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/556", + "product_stock": "5", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1437", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1437-00.jpg", + "image_is_video": "0", + "product_name": "Silicone Cicoil Wire Cable - 4-pin 24AWG", + "product_model": "", + "product_mpn": "ADA1437", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "24.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1437", + "product_stock": "-3", + "products_hts": "8544.49.9000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "425", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/425-00.jpg", + "image_is_video": "0", + "product_name": "4-pin AT\/ATX\/IDE power cable", + "product_model": "", + "product_mpn": "ADA425", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "11.6", + "product_url": "https:\/\/www.adafruit.com\/product\/425", + "product_stock": "17", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1199", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1199-00.jpg", + "image_is_video": "0", + "product_name": "10-pin IDC Socket Rainbow Breakout Cable", + "product_model": "", + "product_mpn": "ADA1199", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1199", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "371", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/371-01.jpg", + "image_is_video": "0", + "product_name": "6-pin Socket\/Socket IDC cable", + "product_model": "6\"", + "product_mpn": "ADA371", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/371", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1003", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1003-05.jpg", + "image_is_video": "0", + "product_name": "Pig-Tail Cables - 0.1\" 2-pin - 4 Pack", + "product_model": "", + "product_mpn": "ADA1003", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1003", + "product_stock": "58", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "972", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/972-02.jpg", + "image_is_video": "0", + "product_name": "Servo Extension Cable - 30cm \/ 12\" long -", + "product_model": "", + "product_mpn": "ADA972", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.1", + "product_url": "https:\/\/www.adafruit.com\/product\/972", + "product_stock": "29", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "973", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/973-02.jpg", + "image_is_video": "0", + "product_name": "Servo Extension Cable - 50cm \/ 19.5\" long", + "product_model": "", + "product_mpn": "ADA973", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "7.2", + "product_url": "https:\/\/www.adafruit.com\/product\/973", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "206", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/206-01.jpg", + "image_is_video": "0", + "product_name": "6-conductor 0.1\" socket-socket cable", + "product_model": "6\" long", + "product_mpn": "ADA206", + "product_master_category": "146", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/206", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "1.49", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "761", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/761-00.jpg", + "image_is_video": "0", + "product_name": "Cable Gland PG-9 size - 0.158\" to 0.252\" Cable Diameter", + "product_model": "PG-9", + "product_mpn": "ADA761", + "product_master_category": "148", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "7.2", + "product_url": "https:\/\/www.adafruit.com\/product\/761", + "product_stock": "in stock", + "products_hts": "3917.40.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "762", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/762-00.jpg", + "image_is_video": "0", + "product_name": "Cable Gland PG-7 size - 0.118\" to 0.169\" Cable Diameter", + "product_model": "PG-7", + "product_mpn": "ADA762", + "product_master_category": "148", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/762", + "product_stock": "in stock", + "products_hts": "3917.40.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1028", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1028-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.9\" Red\/Black\/White eInk Display Breakout", + "product_model": "THINK INK", + "product_mpn": "ADA1028", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1028", + "product_stock": "36", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3625", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3625-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.54\" 152x152 Tri-Color eInk \/ ePaper Display with SRAM", + "product_model": "152x152 with IL0373", + "product_mpn": "ADA3625", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3625", + "product_stock": "74", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4086", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4086-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.13\" Tri-Color eInk \/ ePaper Display with SRAM", + "product_model": "Red Black White", + "product_mpn": "ADA4086", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4086", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4098", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4098-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.7\" Tri-Color eInk \/ ePaper Display with SRAM", + "product_model": "Red Black White", + "product_mpn": "ADA4098", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "32.50", + "product_shipping_weight": "25.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4098", + "product_stock": "25", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "32.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4128", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4128-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.13\" Tri-Color eInk \/ ePaper Display FeatherWing", + "product_model": "212 x 104 pixels - Z16 Panel wit", + "product_mpn": "ADA4128", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4128", + "product_stock": "-3", + "products_hts": "8542.32.0051", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4142", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4142-05.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Inky wHAT (ePaper\/eInk\/EPD) - Black\/White", + "product_model": "", + "product_mpn": "ADA4142", + "product_master_category": "150", + "product_manufacturer": "Pimoroni", + "product_price": "54.95", + "product_shipping_weight": "97.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4142", + "product_stock": "3", + "products_hts": "8542.31.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4143", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4143-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Inky wHAT (ePaper\/eInk\/EPD) - Red\/Black\/White", + "product_model": "", + "product_mpn": "ADA4143", + "product_master_category": "150", + "product_manufacturer": "Pimoroni", + "product_price": "64.95", + "product_shipping_weight": "98.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4143", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4195", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4195-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit 2.13\" Monochrome eInk \/ ePaper Display FeatherWing", + "product_model": "250x122 Monochrome with SSD1680", + "product_mpn": "ADA4195", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4195", + "product_stock": "97", + "products_hts": "8542.32.0051", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4196", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4196-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.54\" Monochrome eInk \/ ePaper Display with SRAM", + "product_model": "200x200 with SSD1681", + "product_mpn": "ADA4196", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "11.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4196", + "product_stock": "26", + "products_hts": "8542.32.0051", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4197", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4197-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.13\" Monochrome eInk \/ ePaper Display with SRAM", + "product_model": "250x122 Monochrome with SSD1680 ", + "product_mpn": "ADA4197", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4197", + "product_stock": "27", + "products_hts": "8542.32.0051", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4224", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4224-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit eInk Breakout Friend with 32KB SRAM", + "product_model": "", + "product_mpn": "ADA4224", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "8.50", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4224", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4230", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4230-05.jpg", + "image_is_video": "0", + "product_name": "24-pin eInk \/ ePaper Extension Cable 0.5mm Pitch - 25cm Long", + "product_model": "", + "product_mpn": "ADA4230", + "product_master_category": "150", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4230", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "1-99", + "min_qty": 1 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4243", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4243-00.jpg", + "image_is_video": "1", + "product_name": "2.13\" Flexible Monochrome eInk \/ ePaper Display", + "product_model": "212x104 Monochrome", + "product_mpn": "ADA4243", + "product_master_category": "150", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "26.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4243", + "product_stock": "50", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4262", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4262-06.jpg", + "image_is_video": "1", + "product_name": "2.9\" Flexible Monochrome eInk \/ ePaper Display", + "product_model": "296x128 Monochrome", + "product_mpn": "ADA4262", + "product_master_category": "150", + "product_manufacturer": null, + "product_price": "26.95", + "product_shipping_weight": "26.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4262", + "product_stock": "22", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "26.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "21.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4428", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4428-05.jpg", + "image_is_video": "1", + "product_name": "Circuit Playground 152x152 Tri-Color E-Ink Gizmo", + "product_model": "E-Ink Display + Audio Amplifier", + "product_mpn": "ADA4428", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "31.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4428", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4446", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4446-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit eInk Feather Friend with 32KB SRAM", + "product_model": "", + "product_mpn": "ADA4446", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4446", + "product_stock": "40", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4687", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4687-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.13\" Monochrome E-Ink Bonnet for Raspberry Pi", + "product_model": "THINK INK", + "product_mpn": "ADA4687", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4687", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4777", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4777-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit 2.9\" Grayscale eInk \/ ePaper Display FeatherWing", + "product_model": "4 Level Grayscale", + "product_mpn": "ADA4777", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4777", + "product_stock": "in stock", + "products_hts": "8542.32.0051", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4778", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4778-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit 2.9\" Tri-Color eInk \/ ePaper Display FeatherWing", + "product_model": "Red Black White", + "product_mpn": "ADA4778", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4778", + "product_stock": "79", + "products_hts": "8542.32.0051", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4800", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4800-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit MagTag - 2.9\" Grayscale E-Ink WiFi Display", + "product_model": "", + "product_mpn": "ADA4800", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "33.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4800", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "11-2", + "min_qty": 1 + } + ] + }, + { + "product_id": "4814", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4814-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.13\" HD Tri-Color eInk \/ ePaper Display FeatherWing", + "product_model": "250x122 RW Panel with SSD1680", + "product_mpn": "ADA4814", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4814", + "product_stock": "99", + "products_hts": "8542.32.0051", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4819", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4819-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit MagTag Starter Kit - 2.9\" Grayscale E-Ink WiFi Display", + "product_model": "", + "product_mpn": "ADA4819", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "70.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4819", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4868", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4868-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit 1.54\" Tri-Color eInk \/ ePaper 200x200 Display with SRAM", + "product_model": "SSD1681 Driver", + "product_mpn": "ADA4868", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "12.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4868", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4869", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4869-06.jpg", + "image_is_video": "1", + "product_name": "Circuit Playground 200x200 Tri-Color E-Ink Gizmo", + "product_model": "E-Ink Display + Audio Amplifier", + "product_mpn": "ADA4869", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "21.95", + "product_shipping_weight": "35.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4869", + "product_stock": "71", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4947", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4947-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit 2.13\" 250x122 Tri-Color eInk \/ ePaper Display with SRAM", + "product_model": "SSD1680 Driver", + "product_mpn": "ADA4947", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4947", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5023", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5023-06.jpg", + "image_is_video": "0", + "product_name": "Bluetooth eInk Display Clock with Temperature Humidity Sensor", + "product_model": "LYWSD02", + "product_mpn": "ADA5023", + "product_master_category": "150", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "97.2", + "product_url": "https:\/\/www.adafruit.com\/product\/5023", + "product_stock": "-2", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1347", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1347-00.jpg", + "image_is_video": "0", + "product_name": "RePaper - 1.44\" Graphic eInk Development Board", + "product_model": "SG020", + "product_mpn": "ADA1347", + "product_master_category": "150", + "product_manufacturer": "Pervasive Displays", + "product_price": "32.95", + "product_shipping_weight": "92.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1347", + "product_stock": "-3", + "products_hts": "8543.89.9200", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "32.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1316", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1316-00.jpg", + "image_is_video": "0", + "product_name": "RePaper - 2.0\" Graphic eInk Development Board", + "product_model": "SG020", + "product_mpn": "ADA1316", + "product_master_category": "150", + "product_manufacturer": "Pervasive Displays", + "product_price": "34.95", + "product_shipping_weight": "93.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1316", + "product_stock": "-3", + "products_hts": "8543.89.9200", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1346", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1346-00.jpg", + "image_is_video": "0", + "product_name": "RePaper - 2.7\" Graphic eInk Development Board", + "product_model": "SM027", + "product_mpn": "ADA1346", + "product_master_category": "150", + "product_manufacturer": "Pervasive Displays", + "product_price": "39.95", + "product_shipping_weight": "97.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1346", + "product_stock": "-3", + "products_hts": "8543.89.9200", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1393", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1393-00.jpg", + "image_is_video": "0", + "product_name": "SHARP Memory Display Breakout - 1.3\" 96x96 Silver Monochrome", + "product_model": "", + "product_mpn": "ADA1393", + "product_master_category": "150", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "55.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1393", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3082", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3082-05.jpg", + "image_is_video": "0", + "product_name": "Aluminum Heat Sink for Raspberry Pi 3 or 4 - 15 x 15 x 15mm", + "product_model": "", + "product_mpn": "ADA3082", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3082", + "product_stock": "in stock", + "products_hts": "8473.30.5100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3083", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3083-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Heat Sink for Raspberry Pi 3 - 14 x 14 x 8mm", + "product_model": "", + "product_mpn": "ADA3083", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3083", + "product_stock": "in stock", + "products_hts": "8473.30.5100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3084", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3084-00.jpg", + "image_is_video": "0", + "product_name": "Mini Aluminum Heat Sink for Raspberry Pi - 13 x 13 x 3mm", + "product_model": "", + "product_mpn": "ADA3084", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3084", + "product_stock": "0", + "products_hts": "8473.30.5100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1467", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1467-00.jpg", + "image_is_video": "0", + "product_name": "Heat Sink Thermal Tape - 3M 8810 - 25mm x 25mm", + "product_model": "", + "product_mpn": "ADA1467", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1467", + "product_stock": "in stock", + "products_hts": "4811.90.9080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1043", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1043-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum SMT Heat Sink - 0.27\"x0.27\" square", + "product_model": "", + "product_mpn": "ADA1043", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1043", + "product_stock": "0", + "products_hts": "8473.30.5100", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1493", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1493-02.jpg", + "image_is_video": "0", + "product_name": "Aluminum SMT Heat Sink - 0.26\"x0.26\" square - 0.39\" tall", + "product_model": "", + "product_mpn": "ADA1493", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1493", + "product_stock": "in stock", + "products_hts": "8473.30.5100", + "products_coo": "CA", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1042", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1042-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum SMT Heat Sink - 0.4\"x0.4\" square", + "product_model": "", + "product_mpn": "ADA1042", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1042", + "product_stock": "0", + "products_hts": "8473.30.5100", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1041", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1041-02.jpg", + "image_is_video": "0", + "product_name": "Aluminum SMT Heat Sink - 0.5\"x0.5\" square", + "product_model": "", + "product_mpn": "ADA1041", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "2.75", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1041", + "product_stock": "-3", + "products_hts": "8473.30.5100", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.48", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "977", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/977-06.jpg", + "image_is_video": "0", + "product_name": "TO-220 Clip-On Heatsink", + "product_model": "", + "product_mpn": "ADA977", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/977", + "product_stock": "-1", + "products_hts": "8473.30.5100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1515", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1515-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum SMT Heat Sinks 10 Pack - 0.25\"x0.25\" x 0.15\" tall", + "product_model": "", + "product_mpn": "ADA1515", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1515", + "product_stock": "in stock", + "products_hts": "8473.30.5100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1468", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1468-00.jpg", + "image_is_video": "0", + "product_name": "Heat Sink Thermal Tape - 3M 8810 - 80mm x 80mm", + "product_model": "", + "product_mpn": "ADA1468", + "product_master_category": "151", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1468", + "product_stock": "in stock", + "products_hts": "4811.90.9080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "430", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/430-00.jpg", + "image_is_video": "0", + "product_name": "Modular Snap Boxes - SMD component storage - 5 pack", + "product_model": "", + "product_mpn": "ADA430", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/430", + "product_stock": "in stock", + "products_hts": "3923.10.00", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "432", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/432-00.jpg", + "image_is_video": "0", + "product_name": "Small Modular Snap Boxes - SMD component storage - 3 pack", + "product_model": "Green", + "product_mpn": "ADA432", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "52.1", + "product_url": "https:\/\/www.adafruit.com\/product\/432", + "product_stock": "in stock", + "products_hts": "3923.10.00", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "433", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/433-00.jpg", + "image_is_video": "0", + "product_name": "Medium Modular Snap Boxes - SMD component storage - 2 pack", + "product_model": "Pink", + "product_mpn": "ADA433", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "56.0", + "product_url": "https:\/\/www.adafruit.com\/product\/433", + "product_stock": "in stock", + "products_hts": "3923.10.00", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "434", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/434-00.jpg", + "image_is_video": "0", + "product_name": "Large Modular Snap Box - SMD component storage", + "product_model": "Orange", + "product_mpn": "ADA434", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "41.0", + "product_url": "https:\/\/www.adafruit.com\/product\/434", + "product_stock": "in stock", + "products_hts": "3923.10.00", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "520", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/520-05.jpg", + "image_is_video": "0", + "product_name": "Blank SMT Storage Book - 20 pages", + "product_model": "", + "product_mpn": "ADA520", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "276.8", + "product_url": "https:\/\/www.adafruit.com\/product\/520", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2183", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2183-01.jpg", + "image_is_video": "0", + "product_name": "Blank SMT Storage Pages for 12 strips of 8mm Tape - 5 Pages", + "product_model": "", + "product_mpn": "ADA2183", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "31.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2183", + "product_stock": "58", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2184", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2184-04.jpg", + "image_is_video": "0", + "product_name": "Blank SMT Storage Pages for 6 strips of 24mm Tape - 5 Pages", + "product_model": "", + "product_mpn": "ADA2184", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "31.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2184", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2938", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2938-03.jpg", + "image_is_video": "0", + "product_name": "Latching 5-Compartment Storage Box", + "product_model": "", + "product_mpn": "ADA2938", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "57.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2938", + "product_stock": "48", + "products_hts": "3923.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "796", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/796-00.jpg", + "image_is_video": "0", + "product_name": "Bi-Fold Compartment Parts Box", + "product_model": "", + "product_mpn": "ADA796", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "116.4", + "product_url": "https:\/\/www.adafruit.com\/product\/796", + "product_stock": "in stock", + "products_hts": "4202.99.9000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "427", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/427-00.jpg", + "image_is_video": "0", + "product_name": "Tiny Modular Snap Boxes - SMD component storage - 10 pack", + "product_model": "Blue", + "product_mpn": "ADA427", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "59.9", + "product_url": "https:\/\/www.adafruit.com\/product\/427", + "product_stock": "in stock", + "products_hts": "3923.10.00", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "431", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/431-00.jpg", + "image_is_video": "0", + "product_name": "Tiny Modular Snap Boxes - SMD component storage - 10 pack", + "product_model": "White", + "product_mpn": "ADA431", + "product_master_category": "152", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "60.2", + "product_url": "https:\/\/www.adafruit.com\/product\/431", + "product_stock": "in stock", + "products_hts": "3923.10.00", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "807", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/807-01.jpg", + "image_is_video": "0", + "product_name": "Dual H-Bridge Motor Driver for DC or Steppers - 600mA - L293D", + "product_model": "", + "product_mpn": "ADA807", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/807", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "976", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/976-01.jpg", + "image_is_video": "0", + "product_name": "TIP120 Power Darlington Transistors - 3 pack", + "product_model": "", + "product_mpn": "ADA976", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/976", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1641", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1641-00.jpg", + "image_is_video": "0", + "product_name": "1N4148 Signal Diode - 10 pack", + "product_model": "", + "product_mpn": "ADA1641", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "1.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1641", + "product_stock": "96", + "products_hts": "8541.10.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2164", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2164-00.jpg", + "image_is_video": "0", + "product_name": "5V 1.5A Linear Voltage Regulator - 7805 TO-220", + "product_model": "", + "product_mpn": "ADA2164", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2164", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2165", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2165-00.jpg", + "image_is_video": "0", + "product_name": "3.3V 800mA Linear Voltage Regulator - LD1117-3.3 TO-220", + "product_model": "", + "product_mpn": "ADA2165", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2165", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2166", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2166-00.jpg", + "image_is_video": "0", + "product_name": "3.3V 250mA Linear Voltage Regulator - L4931-3.3 TO-92", + "product_model": "", + "product_mpn": "ADA2166", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2166", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2236", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2236-02.jpg", + "image_is_video": "0", + "product_name": "5.0V 250mA Linear Voltage Regulator - L4931-5.0 TO-92", + "product_model": "", + "product_mpn": "ADA2236", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "0.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2236", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3428", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3428-00.jpg", + "image_is_video": "0", + "product_name": "Reset \/ Enable Controller - KA75330 3.3V Voltage Detector", + "product_model": "", + "product_mpn": "ADA3428", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "0.50", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3428", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3598", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3598-02.jpg", + "image_is_video": "0", + "product_name": "PNP Bipolar Transistors (PN2907) - 10 pack", + "product_model": "", + "product_mpn": "ADA3598", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3598", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3599", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3599-03.jpg", + "image_is_video": "0", + "product_name": "Bipolar Transistor Kit - 5 x PN2222 NPN and 5 x PN2907 PNP", + "product_model": "", + "product_mpn": "ADA3599", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3599", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3877", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3877-00.jpg", + "image_is_video": "0", + "product_name": "74AHCT14 - Logic Level Inverter \/ Level Shifter", + "product_model": "", + "product_mpn": "ADA3877", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3877", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4489", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4489-03.jpg", + "image_is_video": "1", + "product_name": "L9110H H-Bridge Motor Driver for DC Motors - 8 DIP", + "product_model": "2.5V-12V 800mA", + "product_mpn": "ADA4489", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4489", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1564", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1564-00.jpg", + "image_is_video": "0", + "product_name": "W25Q80BV - 1 MByte SPI Flash", + "product_model": "", + "product_mpn": "ADA1564", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1564", + "product_stock": "-3", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2400", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2400-01.jpg", + "image_is_video": "0", + "product_name": "DSP-G1 Voice Chip", + "product_model": "", + "product_mpn": "ADA2400", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2400", + "product_stock": "-3", + "products_hts": "8542.31.90.00", + "products_coo": "SE", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1794", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1794-00.jpg", + "image_is_video": "0", + "product_name": "P-channel Power MOSFET - TO-220 Package", + "product_model": "25A \/ 60V", + "product_mpn": "ADA1794", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1794", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1681", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1681-00.jpg", + "image_is_video": "0", + "product_name": "VS1053B MP3\/WAV\/OGG\/MIDI Player & Recorder (CODEC) Chip", + "product_model": "", + "product_mpn": "ADA1681", + "product_master_category": "153", + "product_manufacturer": "VLSI", + "product_price": "12.50", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1681", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1787", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1787-02.jpg", + "image_is_video": "0", + "product_name": "74AHCT125 - Quad Level-Shifter (3V to 5V)", + "product_model": "74AHCT125", + "product_mpn": "ADA1787", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1787", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "457", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/457-00.jpg", + "image_is_video": "0", + "product_name": "TPIC6B595 High Power Shift Register", + "product_model": "TPIC6B595", + "product_mpn": "ADA457", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/457", + "product_stock": "90", + "products_hts": "8542.31.00.00", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "593", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/593-01.jpg", + "image_is_video": "0", + "product_name": "MCP23008 - i2c 8 input\/output port expander", + "product_model": "", + "product_mpn": "ADA593", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/593", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "970", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/970-01.jpg", + "image_is_video": "0", + "product_name": "ULN2803: 8 Channel Darlington Driver (Solenoid\/Unipolar Stepper)", + "product_model": "ULN2803A", + "product_mpn": "ADA970", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/970", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "MY", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "808", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/808-02.jpg", + "image_is_video": "0", + "product_name": "Op Amp - Dual Rail-to-Rail - 2.7-6V power @ 80mA output", + "product_model": "TLV2462", + "product_mpn": "ADA808", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/808", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "755", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/755-03.jpg", + "image_is_video": "0", + "product_name": "1N4001 Diode - 10 pack", + "product_model": "", + "product_mpn": "ADA755", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/755", + "product_stock": "in stock", + "products_hts": "8541.10.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "735", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/735-01.jpg", + "image_is_video": "0", + "product_name": "74LVC245 - Breadboard Friendly 8-bit Logic Level Shifter", + "product_model": "", + "product_mpn": "ADA735", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/735", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "756", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/756-03.jpg", + "image_is_video": "0", + "product_name": "NPN Bipolar Transistors (PN2222) - 10 pack", + "product_model": "", + "product_mpn": "ADA756", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/756", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "453", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/453-01.jpg", + "image_is_video": "0", + "product_name": "MAX7219CNG LED Matrix\/Digit Display Driver", + "product_model": "MAX7219", + "product_mpn": "ADA453", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "3.2", + "product_url": "https:\/\/www.adafruit.com\/product\/453", + "product_stock": "80", + "products_hts": "8542.31.00.00", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "450", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/450-01.jpg", + "image_is_video": "0", + "product_name": "74HC595 Shift Register - 3 pack", + "product_model": "", + "product_mpn": "ADA450", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "2.75", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/450", + "product_stock": "67", + "products_hts": "8542.31.00.00", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.48", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "732", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/732-02.jpg", + "image_is_video": "0", + "product_name": "MCP23017 - i2c 16 input\/output port expander", + "product_model": "", + "product_mpn": "ADA732", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/732", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "355", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/355-02.jpg", + "image_is_video": "0", + "product_name": "N-channel power MOSFET", + "product_model": "30V \/ 60A", + "product_mpn": "ADA355", + "product_master_category": "153", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/355", + "product_stock": "in stock", + "products_hts": "8541.21.0095", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "816", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/816-03.jpg", + "image_is_video": "0", + "product_name": "3x4 Right Angle Male Header - 4 pack", + "product_model": "", + "product_mpn": "ADA816", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/816", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2101", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2101-05.jpg", + "image_is_video": "0", + "product_name": "IDC Breakout Helper - 2x13 (26 pin)", + "product_model": "", + "product_mpn": "ADA2101", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2101", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2102", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2102-05.jpg", + "image_is_video": "0", + "product_name": "IDC Breakout Helper - 2x5 (10 pin)", + "product_model": "", + "product_mpn": "ADA2102", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2102", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2103", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2103-05.jpg", + "image_is_video": "0", + "product_name": "IDC Breakout Helper - 2x16 (32 pin)", + "product_model": "", + "product_mpn": "ADA2103", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2103", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2104", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2104-05.jpg", + "image_is_video": "0", + "product_name": "IDC Breakout Helper - 2x8 (16 pin)", + "product_model": "", + "product_mpn": "ADA2104", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2104", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2270", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2270-04.jpg", + "image_is_video": "0", + "product_name": "IDC Breakout Helper - 2x20 (40 pin)", + "product_model": "", + "product_mpn": "ADA2270", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.25", + "product_shipping_weight": "5.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2270", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.03", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2671", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2671-00.jpg", + "image_is_video": "0", + "product_name": "2mm Pitch 40-Pin Break-apart Male Headers - Pack of 5", + "product_model": "", + "product_mpn": "ADA2671", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2671", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2672", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2672-00.jpg", + "image_is_video": "0", + "product_name": "2mm Pitch 25-Pin Female Socket Headers - Pack of 5", + "product_model": "", + "product_mpn": "ADA2672", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2672", + "product_stock": "97", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3008", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3008-00.jpg", + "image_is_video": "0", + "product_name": "36-pin 0.1\" Short Female Header - Pack of 5", + "product_model": "", + "product_mpn": "ADA3008", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "10.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3008", + "product_stock": "0", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3009", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3009-00.jpg", + "image_is_video": "0", + "product_name": "36-pin 0.1\" Short Break-away Male Header - Pack of 10", + "product_model": "", + "product_mpn": "ADA3009", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "19.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3009", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3413", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3413-01.jpg", + "image_is_video": "0", + "product_name": "GPIO Hammer Headers - Solderless Raspberry Pi Connectors", + "product_model": "Male + Female + Installation Jig", + "product_mpn": "ADA3413", + "product_master_category": "154", + "product_manufacturer": "Pimoroni", + "product_price": "6.50", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3413", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3646", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3646-00.jpg", + "image_is_video": "0", + "product_name": "36-pin Swiss Female Socket Headers - Pack of 5", + "product_model": "", + "product_mpn": "ADA3646", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3646", + "product_stock": "0", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3647", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3647-00.jpg", + "image_is_video": "0", + "product_name": "36-pin Swiss Male Plug Headers - Pack of 5", + "product_model": "", + "product_mpn": "ADA3647", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3647", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3662", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3662-00.jpg", + "image_is_video": "0", + "product_name": "Hammer Header Male - Solderless Raspberry Pi Connector", + "product_model": "", + "product_mpn": "ADA3662", + "product_master_category": "154", + "product_manufacturer": "Pimoroni", + "product_price": "2.25", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3662", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.03", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3663", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3663-00.jpg", + "image_is_video": "0", + "product_name": "Hammer Header Female - Solderless Raspberry Pi Connector", + "product_model": "", + "product_mpn": "ADA3663", + "product_master_category": "154", + "product_manufacturer": "Pimoroni", + "product_price": "3.25", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3663", + "product_stock": "69", + "products_hts": "8535.90.80.20", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.93", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3883", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3883-00.jpg", + "image_is_video": "0", + "product_name": "Stacking Header Kit for ItsyBitsy or Teensy", + "product_model": "", + "product_mpn": "ADA3883", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3883", + "product_stock": "in stock", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4149", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4149-03.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 36-pin strip male header - White - 10 pack", + "product_model": "", + "product_mpn": "ADA4149", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4149", + "product_stock": "in stock", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4235", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4150", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4150-03.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 36-pin strip male header - Blue - 10 pack", + "product_model": "", + "product_mpn": "ADA4150", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4150", + "product_stock": "in stock", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4235", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4151", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4151-03.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 36-pin strip male header - Red - 10 pack", + "product_model": "", + "product_mpn": "ADA4151", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4151", + "product_stock": "97", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4235", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4152", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4152-03.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 36-pin strip male header - Yellow - 10 pack", + "product_model": "", + "product_mpn": "ADA4152", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4152", + "product_stock": "66", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4235", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4153", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4153-03.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 36-pin strip male header - Green - 10 pack", + "product_model": "", + "product_mpn": "ADA4153", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4153", + "product_stock": "19", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4235", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4154", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4154-01.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 36-pin strip male header - Rainbow Combo 10 Pack", + "product_model": "", + "product_mpn": "ADA4154", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4154", + "product_stock": "in stock", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4235", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4155", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4155-00.jpg", + "image_is_video": "0", + "product_name": "20-pin 0.1\" Female Header - White - 5 pack", + "product_model": "", + "product_mpn": "ADA4155", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "9.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4155", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4240", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4156", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4156-00.jpg", + "image_is_video": "0", + "product_name": "20-pin 0.1\" Female Header - Blue - 5 pack", + "product_model": "", + "product_mpn": "ADA4156", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "9.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4156", + "product_stock": "45", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4240", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4157", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4157-00.jpg", + "image_is_video": "0", + "product_name": "20-pin 0.1\" Female Header - Red - 5 pack", + "product_model": "", + "product_mpn": "ADA4157", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4157", + "product_stock": "92", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4240", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4158", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4158-01.jpg", + "image_is_video": "0", + "product_name": "20-pin 0.1\" Female Header - Yellow - 5 pack", + "product_model": "", + "product_mpn": "ADA4158", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "9.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4158", + "product_stock": "15", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4240", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4159", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4159-00.jpg", + "image_is_video": "0", + "product_name": "20-pin 0.1\" Female Header - Green - 5 pack", + "product_model": "", + "product_mpn": "ADA4159", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "9.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4159", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4240", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4160", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4160-00.jpg", + "image_is_video": "0", + "product_name": "20-pin 0.1\" Female Headers - Rainbow Color Mix - 5 pack", + "product_model": "", + "product_mpn": "ADA4160", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4160", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4240", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4173", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4173-00.jpg", + "image_is_video": "0", + "product_name": "Short Male Header Kit for ItsyBitsy", + "product_model": "", + "product_mpn": "ADA4173", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4173", + "product_stock": "in stock", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4174", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4174-00.jpg", + "image_is_video": "0", + "product_name": "Short Female Header Kit for ItsyBitsy", + "product_model": "", + "product_mpn": "ADA4174", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4174", + "product_stock": "in stock", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4855", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4855-00.jpg", + "image_is_video": "0", + "product_name": "GPIO Female Socket Riser Header - 2x2 4-pin", + "product_model": "", + "product_mpn": "ADA4855", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "0.50", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4855", + "product_stock": "-2", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2105", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2105-05.jpg", + "image_is_video": "0", + "product_name": "IDC Breakout Helper - 2x3 (6 pin)", + "product_model": "", + "product_mpn": "ADA2105", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2105", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "806", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/806-00.jpg", + "image_is_video": "0", + "product_name": "3x8 Male Header - 4 pack", + "product_model": "", + "product_mpn": "ADA806", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "5.8", + "product_url": "https:\/\/www.adafruit.com\/product\/806", + "product_stock": "-3", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1543", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1543-00.jpg", + "image_is_video": "0", + "product_name": "0.1\" 2x36-pin Strip Right-Angle Socket (Female) Header (5 pack)", + "product_model": "", + "product_mpn": "ADA1543", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "36.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1543", + "product_stock": "2", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1541", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1541-00.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 2x36-pin strip right-angle male header (5 pack)", + "product_model": "", + "product_mpn": "ADA1541", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "27.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1541", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1544", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1544-00.jpg", + "image_is_video": "0", + "product_name": "0.1\" 2x36-pin Strip Straight Socket (Female) Header (5 pack)", + "product_model": "", + "product_mpn": "ADA1544", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "33.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1544", + "product_stock": "0", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1539", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1539-00.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 2x36-pin strip dual male header (10 pieces)", + "product_model": "", + "product_mpn": "ADA1539", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "40.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1539", + "product_stock": "71", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "366", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/366-01.jpg", + "image_is_video": "0", + "product_name": "2mm 10 pin Socket Headers (for XBee) - Pack of 2", + "product_model": "", + "product_mpn": "ADA366", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "14.5", + "product_url": "https:\/\/www.adafruit.com\/product\/366", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1542", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1542-00.jpg", + "image_is_video": "0", + "product_name": "0.1\" 36-pin Strip Right-Angle Female\/Socket Header (5 pack)", + "product_model": "", + "product_mpn": "ADA1542", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1542", + "product_stock": "66", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1540", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1540-00.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 36-pin strip right-angle male header (10 pack)", + "product_model": "", + "product_mpn": "ADA1540", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "24.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1540", + "product_stock": "83", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "598", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/598-04.jpg", + "image_is_video": "0", + "product_name": "36-pin 0.1\" Female header - pack of 5!", + "product_model": "", + "product_mpn": "ADA598", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "17.7", + "product_url": "https:\/\/www.adafruit.com\/product\/598", + "product_stock": "92", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4240", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "400", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/400-03.jpg", + "image_is_video": "0", + "product_name": "Extra-long break-away 0.1\" 16-pin strip male header (5 pieces)", + "product_model": "", + "product_mpn": "ADA400", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "3.00", + "product_shipping_weight": "6.9", + "product_url": "https:\/\/www.adafruit.com\/product\/400", + "product_stock": "11", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "392", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/392-01.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 36-pin strip male header - Black - 10 pack", + "product_model": "", + "product_mpn": "ADA392", + "product_master_category": "154", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.8", + "product_url": "https:\/\/www.adafruit.com\/product\/392", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4235", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "805", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/805-03.jpg", + "image_is_video": "0", + "product_name": "Breadboard-friendly SPDT Slide Switch", + "product_model": "", + "product_mpn": "ADA805", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/805", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "817", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/817-00.jpg", + "image_is_video": "0", + "product_name": "Micro Switch - Premium Zippy 3-Terminal", + "product_model": "", + "product_mpn": "ADA817", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/817", + "product_stock": "95", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "818", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/818-06.jpg", + "image_is_video": "0", + "product_name": "Micro Switch w\/Lever - 2 Terminal", + "product_model": "", + "product_mpn": "ADA818", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/818", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "819", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/819-00.jpg", + "image_is_video": "0", + "product_name": "Micro Switch w\/Roller Lever - Three Terminal", + "product_model": "", + "product_mpn": "ADA819", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/819", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3218", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3218-00.jpg", + "image_is_video": "0", + "product_name": "Illuminated Toggle Switch with Cover - Red", + "product_model": "", + "product_mpn": "ADA3218", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3218", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3219", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3219-00.jpg", + "image_is_video": "0", + "product_name": "Illuminated Toggle Switch with Cover - Yellow", + "product_model": "", + "product_mpn": "ADA3219", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3219", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3220", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3220-01.jpg", + "image_is_video": "0", + "product_name": "Mini Panel Mount DPDT Toggle Switch", + "product_model": "", + "product_mpn": "ADA3220", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3220", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3221", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3221-01.jpg", + "image_is_video": "0", + "product_name": "Mini Panel Mount SPDT Toggle Switch", + "product_model": "", + "product_mpn": "ADA3221", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3221", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3306", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3306-02.jpg", + "image_is_video": "0", + "product_name": "Illuminated Toggle Switch with Cover - Blue", + "product_model": "", + "product_mpn": "ADA3306", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "38.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3306", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3307", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3307-02.jpg", + "image_is_video": "0", + "product_name": "Illuminated Toggle Switch with Cover - Green", + "product_model": "", + "product_mpn": "ADA3307", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "37.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3307", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3308", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3308-02.jpg", + "image_is_video": "0", + "product_name": "Illuminated Toggle Switch with Cover - White \/ Clear", + "product_model": "", + "product_mpn": "ADA3308", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "38.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3308", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3642", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3642-04.jpg", + "image_is_video": "1", + "product_name": "2.1mm DC Power Jack with Slide Switch", + "product_model": "", + "product_mpn": "ADA3642", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3642", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3643", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3643-04.jpg", + "image_is_video": "1", + "product_name": "2.1mm DC Power Jack with Rocker Switch", + "product_model": "", + "product_mpn": "ADA3643", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3643", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3758", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3758-02.jpg", + "image_is_video": "0", + "product_name": "Ball Top 4-Way Rocker Switch", + "product_model": "", + "product_mpn": "ADA3758", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "201.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3758", + "product_stock": "67", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4697", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4697-02.jpg", + "image_is_video": "0", + "product_name": "Black Rubber Joystick Nubbin Cap for Navigation Joystick", + "product_model": "", + "product_mpn": "ADA4697", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "0.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4697", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4979", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4979-10.jpg", + "image_is_video": "1", + "product_name": "NeoKey FeatherWing - Two Mechanical Key Switches with NeoPixels", + "product_model": "", + "product_mpn": "ADA4979", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4979", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1084", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1084-05.jpg", + "image_is_video": "0", + "product_name": "Mechanical Decade Counters - Small Size - Pack of 5", + "product_model": "", + "product_mpn": "ADA1084", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "18.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1084", + "product_stock": "72", + "products_hts": "9029.10.8000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1082", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1082-00.jpg", + "image_is_video": "0", + "product_name": "Mechanical Decade Counters - Large Size - Pack of 5", + "product_model": "", + "product_mpn": "ADA1082", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "40.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1082", + "product_stock": "21", + "products_hts": "9029.10.8000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1611", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1611-00.jpg", + "image_is_video": "0", + "product_name": "Silicone Elastomer 4x4 Button Keypad - for 3mm LEDs", + "product_model": "", + "product_mpn": "ADA1611", + "product_master_category": "155", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1611", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "504", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/504-03.jpg", + "image_is_video": "0", + "product_name": "Thru-hole 5-way Navigation switch", + "product_model": "", + "product_mpn": "ADA504", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/504", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "820", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/820-00.jpg", + "image_is_video": "0", + "product_name": "Micro Switch w\/Wire - Three Terminals", + "product_model": "", + "product_mpn": "ADA820", + "product_master_category": "155", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/820", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1616", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1616-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Trellis Monochrome Driver PCB for 4x4 Keypad & 3mm LEDs", + "product_model": "", + "product_mpn": "ADA1616", + "product_master_category": "155", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1616", + "product_stock": "95", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "356", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/356-03.jpg", + "image_is_video": "0", + "product_name": "Breadboard trim potentiometer", + "product_model": "10K", + "product_mpn": "ADA356", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/356", + "product_stock": "in stock", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "441", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/441-05.jpg", + "image_is_video": "0", + "product_name": "SMT\/SMD 0805 Resistor and Capacitor Book - 3725 pieces", + "product_model": "", + "product_mpn": "ADA441", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "337.8", + "product_url": "https:\/\/www.adafruit.com\/product\/441", + "product_stock": "in stock", + "products_hts": "8533.10.0042", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "442", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/442-04.jpg", + "image_is_video": "0", + "product_name": "SMT 0603 Resistor and Capacitor Book - 3725 pieces", + "product_model": "", + "product_mpn": "ADA442", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "329.9", + "product_url": "https:\/\/www.adafruit.com\/product\/442", + "product_stock": "in stock", + "products_hts": "8533.10.00.42", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3391", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3391-01.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 10K Log Potentiometer (Breadboard Friendly)", + "product_model": "10K Log", + "product_mpn": "ADA3391", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "7.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3391", + "product_stock": "in stock", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3392", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3392-01.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 10K Dual Linear Potentiometer", + "product_model": "10K Dual Linear", + "product_mpn": "ADA3392", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "8.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3392", + "product_stock": "91", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3393", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3393-03.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 10K Dual Linear Potentiometer w\/ On-Off Switch", + "product_model": "10K Dual Linear w\/ Switch", + "product_mpn": "ADA3393", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "8.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3393", + "product_stock": "58", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3394", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3394-01.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 10K Dual Log Potentiometer", + "product_model": "10K Dual Log", + "product_mpn": "ADA3394", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3394", + "product_stock": "in stock", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3395", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3395-01.jpg", + "image_is_video": "0", + "product_name": "Panel Mount Right Angle 10K Linear Potentiometer w\/On-Off Switch", + "product_model": "10K Linear w\/ Switch", + "product_mpn": "ADA3395", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3395", + "product_stock": "in stock", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3481", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3481-01.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 10K Log Potentiometer w\/ On-Off Switch", + "product_model": "10K Log w\/ Switch", + "product_mpn": "ADA3481", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3481", + "product_stock": "78", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3482", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3482-01.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 10K Dual Log Potentiometer w\/ On-Off Switch", + "product_model": "10K Dual Log w Switch", + "product_mpn": "ADA3482", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3482", + "product_stock": "in stock", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3739", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3739-01.jpg", + "image_is_video": "0", + "product_name": "Foot Pedal Potentiometer - Sewing Machine Speed Controller", + "product_model": "", + "product_mpn": "ADA3739", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "26.95", + "product_shipping_weight": "192.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3739", + "product_stock": "55", + "products_hts": "845.29.099", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "26.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "21.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4133", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4133-03.jpg", + "image_is_video": "0", + "product_name": "Potentiometer with Built In Knob - 10K ohm", + "product_model": "", + "product_mpn": "ADA4133", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4133", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4219", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4219-00.jpg", + "image_is_video": "0", + "product_name": "Slide Potentiometer with Knob - 75mm Long - 10K\u03a9", + "product_model": "", + "product_mpn": "ADA4219", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "7.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4219", + "product_stock": "in stock", + "products_hts": "8533.40.8070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4271", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4271-04.jpg", + "image_is_video": "1", + "product_name": "Slide Potentiometer with Plastic Knob - 35mm Long - 10K\u03a9", + "product_model": "", + "product_mpn": "ADA4271", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4271", + "product_stock": "in stock", + "products_hts": "8533.40.8070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4272", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4272-00.jpg", + "image_is_video": "1", + "product_name": "Slide Potentiometer with Plastic Knob - 45mm Long", + "product_model": "10K\u03a9", + "product_mpn": "ADA4272", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4272", + "product_stock": "in stock", + "products_hts": "533.40.8070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2194", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2194-00.jpg", + "image_is_video": "0", + "product_name": "47uF 25V Electrolytic Capacitors - Pack of 10", + "product_model": "", + "product_mpn": "ADA2194", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2194", + "product_stock": "24", + "products_hts": "8532.24.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2193", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2193-00.jpg", + "image_is_video": "0", + "product_name": "100uF 16V Electrolytic Capacitors - Pack of 10", + "product_model": "", + "product_mpn": "ADA2193", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2193", + "product_stock": "in stock", + "products_hts": "8532.24.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2192", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2192-00.jpg", + "image_is_video": "0", + "product_name": "220uF 16V Electrolytic Capacitors - Pack of 10", + "product_model": "", + "product_mpn": "ADA2192", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2192", + "product_stock": "68", + "products_hts": "8532.24.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2195", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2195-00.jpg", + "image_is_video": "0", + "product_name": "10uF 50V Electrolytic Capacitors - Pack of 10", + "product_model": "", + "product_mpn": "ADA2195", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2195", + "product_stock": "in stock", + "products_hts": "8532.24.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1831", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1831-01.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 100K potentiometer (Breadboard Friendly)", + "product_model": "100KB", + "product_mpn": "ADA1831", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "7.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1831", + "product_stock": "in stock", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1789", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1789-00.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 1K potentiometer (Breadboard Friendly)", + "product_model": "1K Linear", + "product_mpn": "ADA1789", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1789", + "product_stock": "in stock", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1885", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1885-05.jpg", + "image_is_video": "0", + "product_name": "Super Capacitor - 2.5V 700 Farad", + "product_model": "", + "product_mpn": "ADA1885", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "138.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1885", + "product_stock": "15", + "products_hts": "8532.24.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1589", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1589-02.jpg", + "image_is_video": "0", + "product_name": "4700uF 10v Electrolytic Capacitor", + "product_model": "", + "product_mpn": "ADA1589", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1589", + "product_stock": "in stock", + "products_hts": "8532.24.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "753", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/753-02.jpg", + "image_is_video": "0", + "product_name": "0.1uF ceramic capacitors - 10 pack", + "product_model": "", + "product_mpn": "ADA753", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/753", + "product_stock": "in stock", + "products_hts": "8532.24.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "562", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/562-00.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 10K potentiometer (Breadboard Friendly)", + "product_model": "10K Linear", + "product_mpn": "ADA562", + "product_master_category": "156", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.3", + "product_url": "https:\/\/www.adafruit.com\/product\/562", + "product_stock": "in stock", + "products_hts": "8533.40.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "373", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/373-04.jpg", + "image_is_video": "0", + "product_name": "Breadboard-friendly 2.1mm DC barrel jack", + "product_model": "", + "product_mpn": "ADA373", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/373", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "610", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/610-06.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 2.1mm DC barrel jack", + "product_model": "", + "product_mpn": "ADA610", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/610", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1576", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1576-00.jpg", + "image_is_video": "0", + "product_name": "SNES connector", + "product_model": "", + "product_mpn": "ADA1576", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1576", + "product_stock": "-3", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1769", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1769-07.jpg", + "image_is_video": "0", + "product_name": "JST-PH 2-Pin SMT Right Angle Connector", + "product_model": "", + "product_mpn": "ADA1769", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1769", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1862", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1862-04.jpg", + "image_is_video": "0", + "product_name": "JST-PH 2-Pin SMT Right Angle Breakout Board", + "product_model": "", + "product_mpn": "ADA1862", + "product_master_category": "157", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1862", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1863", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1863-04.jpg", + "image_is_video": "0", + "product_name": "Switched JST-PH 2-Pin SMT Right Angle Breakout Board", + "product_model": "", + "product_mpn": "ADA1863", + "product_master_category": "157", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1863", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2913", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2913-01.jpg", + "image_is_video": "0", + "product_name": "Ethernet RJ45 Male Plug Terminal Block", + "product_model": "", + "product_mpn": "ADA2913", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "18.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2913", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3310", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3310-00.jpg", + "image_is_video": "0", + "product_name": "5.5 \/ 2.1mm Barrel Connector - DC Power Plug", + "product_model": "", + "product_mpn": "ADA3310", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3310", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3691", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3691-00.jpg", + "image_is_video": "0", + "product_name": "Panel-Mount Banana Jacks 4mm - Pack of 5 Multi-Color", + "product_model": "", + "product_mpn": "ADA3691", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "22.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3691", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3692", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3692-01.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 1\/8\" \/ 3.5mm TRS Audio Jack Connector", + "product_model": "", + "product_mpn": "ADA3692", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3692", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3797", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3797-09.jpg", + "image_is_video": "0", + "product_name": "DIN Rail RJ-45 To Terminal Block Adapter", + "product_model": "Right Angle Jack", + "product_mpn": "ADA3797", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "40.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3797", + "product_stock": "45", + "products_hts": "8436.99.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3798", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3798-07.jpg", + "image_is_video": "0", + "product_name": "DIN Rail RJ-45 To Terminal Block Adapter", + "product_model": "Vertical Jack", + "product_mpn": "ADA3798", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "40.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3798", + "product_stock": "61", + "products_hts": "8471.50.0150", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4023", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4023-00.jpg", + "image_is_video": "0", + "product_name": "Micro B USB Connectors - Pack of 5", + "product_model": "", + "product_mpn": "ADA4023", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4023", + "product_stock": "in stock", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4129", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4129-06.jpg", + "image_is_video": "0", + "product_name": "HDMI Round Panel Mount Plug", + "product_model": "", + "product_mpn": "ADA4129", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "22.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4129", + "product_stock": "in stock", + "products_hts": "8544.49.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4130", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4130-06.jpg", + "image_is_video": "0", + "product_name": "RJ-45 Ethernet Round Panel Mount Adapter Plug", + "product_model": "", + "product_mpn": "ADA4130", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "20.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4130", + "product_stock": "in stock", + "products_hts": "8544.49.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4211", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4211-00.jpg", + "image_is_video": "0", + "product_name": "USB Mini B Jack to USB A Jack Round Panel Mount Adapter", + "product_model": "", + "product_mpn": "ADA4211", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "21.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4211", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4212", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4212-00.jpg", + "image_is_video": "0", + "product_name": "USB B Jack to USB A Jack Round Panel Mount Adapter", + "product_model": "", + "product_mpn": "ADA4212", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4212", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4213", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4213-00.jpg", + "image_is_video": "0", + "product_name": "Micro USB B Jack to USB A Plug Round Panel Mount Adapter", + "product_model": "", + "product_mpn": "ADA4213", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "21.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4213", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4214", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4214-00.jpg", + "image_is_video": "0", + "product_name": "USB A Jack to Micro USB B Jack Round Panel Mount Adapter", + "product_model": "", + "product_mpn": "ADA4214", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4214", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4247", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4247-05.jpg", + "image_is_video": "0", + "product_name": "HDMI Dummy Plug", + "product_model": "", + "product_mpn": "ADA4247", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4247", + "product_stock": "0", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4259", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4259-01.jpg", + "image_is_video": "0", + "product_name": "USB C Jack to USB A Jack Round Panel Mount Adapter", + "product_model": "", + "product_mpn": "ADA4259", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4259", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4422", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4422-01.jpg", + "image_is_video": "0", + "product_name": "JST PH 2.0mm Pitch Connector Kit - 220 Piece Kit", + "product_model": "", + "product_mpn": "ADA4422", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "82.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4422", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4423", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4423-01.jpg", + "image_is_video": "0", + "product_name": "JST-XH 2.54mm Pitch Connector Kit - 560 Piece Kit", + "product_model": "", + "product_mpn": "ADA4423", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "129.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4423", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4434", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4434-01.jpg", + "image_is_video": "0", + "product_name": "RJ12 Jack Connectors - EV3\/NXT LEGO Compatible - Pack of 10", + "product_model": "", + "product_mpn": "ADA4434", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4434", + "product_stock": "48", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4436", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4436-05.jpg", + "image_is_video": "0", + "product_name": "DIN Rail 2x8 IDC to Terminal Block Adapter Breakout", + "product_model": "", + "product_mpn": "ADA4436", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "73.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4436", + "product_stock": "15", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4437", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4437-05.jpg", + "image_is_video": "0", + "product_name": "DIN Rail 2x20 IDC to Terminal Block Adapter Breakout", + "product_model": "", + "product_mpn": "ADA4437", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "130.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4437", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4458", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4458-00.jpg", + "image_is_video": "0", + "product_name": "USB Type C SMT \/ THM Jack Connector - Pack of 10", + "product_model": "", + "product_mpn": "ADA4458", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4458", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4555", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4555-02.jpg", + "image_is_video": "0", + "product_name": "DIN Rail Terminal Block Adapter to Grand Central or Arduino Mega", + "product_model": "", + "product_mpn": "ADA4555", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "230.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4555", + "product_stock": "53", + "products_hts": "8471.50.0150", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4556", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4556-01.jpg", + "image_is_video": "0", + "product_name": "DIN Rail Terminal Block Adapter to Metro or Arduino Uno", + "product_model": "", + "product_mpn": "ADA4556", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "132.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4556", + "product_stock": "52", + "products_hts": "8471.50.0150", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4557", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4557-01.jpg", + "image_is_video": "0", + "product_name": "DIN Rail Mount Bracket for Raspberry Pi \/ BeagleBone \/ Arduino", + "product_model": "", + "product_mpn": "ADA4557", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "75.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4557", + "product_stock": "16", + "products_hts": "7616.99.5190", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4727", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4727-04.jpg", + "image_is_video": "0", + "product_name": "SMT Socket - Wide SOIC-16", + "product_model": "", + "product_mpn": "ADA4727", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4727", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4728", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4728-00.jpg", + "image_is_video": "0", + "product_name": "Replacement CSI\/DSI Connector for Raspberry Pi - Repair Part", + "product_model": "", + "product_mpn": "ADA4728", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4728", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4748", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4748-04.jpg", + "image_is_video": "0", + "product_name": "Spade Quick Connector Kit - 6.3mm \/ 4.8mm \/ 2.8mm", + "product_model": "", + "product_mpn": "ADA4748", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "128.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4748", + "product_stock": "5", + "products_hts": "8203.20.6060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4897", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4897-01.jpg", + "image_is_video": "0", + "product_name": "40-pin FPC to Right Angle 2x20 IDC Male Plug Header Adapter", + "product_model": "", + "product_mpn": "ADA4897", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4897", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4904", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4904-02.jpg", + "image_is_video": "0", + "product_name": "40-pin FPC to Straight 2x20 IDC Male Plug Header", + "product_model": "", + "product_mpn": "ADA4904", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4904", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4905", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4905-00.jpg", + "image_is_video": "0", + "product_name": "40-pin FPC to Straight 2x20 IDC Female Socket Header", + "product_model": "", + "product_mpn": "ADA4905", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "11.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4905", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4907", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4907-00.jpg", + "image_is_video": "0", + "product_name": "USB C SMT \/ THM Jack Connector - Power Only - Pack of 10", + "product_model": "", + "product_mpn": "ADA4907", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4907", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4909", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4909-00.jpg", + "image_is_video": "0", + "product_name": "40-pin FPC to Right Angle 2x20 IDC Female Socket Header", + "product_model": "", + "product_mpn": "ADA4909", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "11.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4909", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4932", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4932-00.jpg", + "image_is_video": "0", + "product_name": "Edge-Launch USB Type C SMT Plug Connector - Pack of 10", + "product_model": "", + "product_mpn": "ADA4932", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "9.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4932", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2658", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2658-02.jpg", + "image_is_video": "0", + "product_name": "SIM Card Adapters - Pack of 3", + "product_model": "", + "product_mpn": "ADA2658", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "6.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2658", + "product_stock": "in stock", + "products_hts": "8544.42.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2630", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2630-00.jpg", + "image_is_video": "0", + "product_name": "SIM Card Holder", + "product_model": "", + "product_mpn": "ADA2630", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2630", + "product_stock": "-3", + "products_hts": "8544.42.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2207", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2207-00.jpg", + "image_is_video": "0", + "product_name": "IC Socket for 40-pin 0.6\" Chips - Pack of 3", + "product_model": "", + "product_mpn": "ADA2207", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2207", + "product_stock": "52", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2309", + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2206", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2206-00.jpg", + "image_is_video": "0", + "product_name": "IC Socket - for 28-pin 0.6\" Chips - Pack of 3", + "product_model": "", + "product_mpn": "ADA2206", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2206", + "product_stock": "22", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2309", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2204", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2204-00.jpg", + "image_is_video": "0", + "product_name": "IC Socket - for 20-pin 0.3\" Chips - Pack of 3", + "product_model": "", + "product_mpn": "ADA2204", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2204", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2309", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2571", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2571-01.jpg", + "image_is_video": "0", + "product_name": "50-pin FPC Extension Board + 200mm Cable", + "product_model": "", + "product_mpn": "ADA2571", + "product_master_category": "157", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2571", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2202", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2202-00.jpg", + "image_is_video": "0", + "product_name": "IC Socket - for 8-pin 0.3\" Chips - Pack of 3", + "product_model": "", + "product_mpn": "ADA2202", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2202", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2309", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2225", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2225-00.jpg", + "image_is_video": "0", + "product_name": "USB Type-A Jack", + "product_model": "", + "product_mpn": "ADA2225", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2225", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2203", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2203-00.jpg", + "image_is_video": "0", + "product_name": "IC Socket - for 16-pin 0.3\" Chips - Pack of 3", + "product_model": "", + "product_mpn": "ADA2203", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2203", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2309", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2205", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2205-00.jpg", + "image_is_video": "0", + "product_name": "IC Socket - for 28-pin 0.3\" Chips - Pack of 3", + "product_model": "", + "product_mpn": "ADA2205", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2205", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2309", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1660", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1660-00.jpg", + "image_is_video": "0", + "product_name": "MicroSD Socket", + "product_model": "", + "product_mpn": "ADA1660", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1660", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2227", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2227-00.jpg", + "image_is_video": "0", + "product_name": "70-pin Hirose Receptacle Header for Intel Edison - 3mm Height", + "product_model": "Hirose DF40HC(3.0)-70DS", + "product_mpn": "ADA2227", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2227", + "product_stock": "31", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1773", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1773-00.jpg", + "image_is_video": "0", + "product_name": "50-pin 0.5mm pitch top-contact FPC SMT Connector", + "product_model": "", + "product_mpn": "ADA1773", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1773", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1134", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1134-08.jpg", + "image_is_video": "0", + "product_name": "Breadboard-friendly MIDI Jack (5-pin DIN)", + "product_model": "", + "product_mpn": "ADA1134", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1134", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2098", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2098-02.jpg", + "image_is_video": "0", + "product_name": "40-pin FPC Extension Board + 200mm Cable", + "product_model": "", + "product_mpn": "ADA2098", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2098", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "383", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/383-04.jpg", + "image_is_video": "0", + "product_name": "40-pin ZIF socket", + "product_model": "", + "product_mpn": "ADA383", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "4.00", + "product_shipping_weight": "22.4", + "product_url": "https:\/\/www.adafruit.com\/product\/383", + "product_stock": "90", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "804", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/804-00.jpg", + "image_is_video": "0", + "product_name": "PS\/2 Wired Connector - Panel Mount MiniDIN-6", + "product_model": "", + "product_mpn": "ADA804", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "5.1", + "product_url": "https:\/\/www.adafruit.com\/product\/804", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "382", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/382-03.jpg", + "image_is_video": "0", + "product_name": "28-pin ZIF socket", + "product_model": "", + "product_mpn": "ADA382", + "product_master_category": "157", + "product_manufacturer": null, + "product_price": "3.00", + "product_shipping_weight": "13.9", + "product_url": "https:\/\/www.adafruit.com\/product\/382", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "102", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/102-01.jpg", + "image_is_video": "0", + "product_name": "4GB Blank SD\/MicroSD Memory Card", + "product_model": "", + "product_mpn": "ADA102", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/102", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1294", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1294-03.jpg", + "image_is_video": "0", + "product_name": "SD\/MicroSD Memory Card (8 GB SDHC)", + "product_model": "", + "product_mpn": "ADA1294", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1294", + "product_stock": "in stock", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1331", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1331-04.jpg", + "image_is_video": "0", + "product_name": "Peltier Thermo-Electric Cooler Module - 5V 1A", + "product_model": "", + "product_mpn": "ADA1331", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1331", + "product_stock": "9", + "products_hts": "8418.69.0180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1481", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1481-03.jpg", + "image_is_video": "0", + "product_name": "Electric Heating Pad - 10cm x 5cm", + "product_model": "", + "product_mpn": "ADA1481", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1481", + "product_stock": "in stock", + "products_hts": "8516.79.90", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1699", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1699-00.jpg", + "image_is_video": "0", + "product_name": "Breadboard-Friendly 3.5mm Stereo Headphone Jack", + "product_model": "", + "product_mpn": "ADA1699", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1699", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2693", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2693-04.jpg", + "image_is_video": "0", + "product_name": "SD\/MicroSD Memory Card - 16GB Class 10 - Adapter Included", + "product_model": "", + "product_mpn": "ADA2693", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2693", + "product_stock": "in stock", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3670", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3670-00.jpg", + "image_is_video": "0", + "product_name": "EeonTex High-Conductivity Heater Fabric", + "product_model": "NW170-PI-20", + "product_mpn": "ADA3670", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "30.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3670", + "product_stock": "34", + "products_hts": "5603.92.00.90", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1898", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1898-00.jpg", + "image_is_video": "0", + "product_name": "Breadboard-Friendly PCB Mount Mini Speaker - 8 Ohm 0.2W", + "product_model": "", + "product_mpn": "ADA1898", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "1.85", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1898", + "product_stock": "in stock", + "products_hts": "8518.29.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.85", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.67", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.48", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1536", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1536-06.jpg", + "image_is_video": "0", + "product_name": "Buzzer 5V - Breadboard friendly", + "product_model": "", + "product_mpn": "ADA1536", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1536", + "product_stock": "in stock", + "products_hts": "8531.80.00.50", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "550", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/550-00.jpg", + "image_is_video": "0", + "product_name": "Little Rubber Bumper Feet - Pack of 4", + "product_model": "", + "product_mpn": "ADA550", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/550", + "product_stock": "in stock", + "products_hts": "4016.99.6050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1784", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1784-04.jpg", + "image_is_video": "0", + "product_name": "Large Surface Transducer with Wires - 4 Ohm 5 Watt", + "product_model": "", + "product_mpn": "ADA1784", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "176.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1784", + "product_stock": "0", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1330", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1330-02.jpg", + "image_is_video": "0", + "product_name": "Peltier Thermo-Electric Cooler Module - 12V 5A", + "product_model": "", + "product_mpn": "ADA1330", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "24.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1330", + "product_stock": "35", + "products_hts": "8418.69.0180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "939", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/939-05.jpg", + "image_is_video": "0", + "product_name": "USB MicroSD Card Reader\/Writer - microSD \/ microSDHC \/ microSDXC", + "product_model": "", + "product_mpn": "ADA939", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/939", + "product_stock": "8", + "products_hts": "8471.70.5065", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "480", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/480-00.jpg", + "image_is_video": "0", + "product_name": "Small Arcade Joystick", + "product_model": "", + "product_mpn": "ADA480", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "193.4", + "product_url": "https:\/\/www.adafruit.com\/product\/480", + "product_stock": "55", + "products_hts": "8536.50.9031", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1335", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1335-06.jpg", + "image_is_video": "0", + "product_name": "Peltier Thermo-Electric Cooler Module+Heatsink Assembly - 12V 5A", + "product_model": "", + "product_mpn": "ADA1335", + "product_master_category": "158", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "477.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1335", + "product_stock": "in stock", + "products_hts": "8418.69.0180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3907", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3907-00.jpg", + "image_is_video": "0", + "product_name": "Color Coded Header for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3907", + "product_master_category": "163", + "product_manufacturer": "Pi Supply", + "product_price": "1.75", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3907", + "product_stock": "0", + "products_hts": "8538.90.8180", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1601", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1601-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PiTFT - 320x240 2.8\" TFT+Touchscreen for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1601", + "product_master_category": "164", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "79.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1601", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "814", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/814-00.jpg", + "image_is_video": "0", + "product_name": "Miniature WiFi (802.11b\/g\/n) Module: For Raspberry Pi and more", + "product_model": "", + "product_mpn": "ADA814", + "product_master_category": "164", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "7.7", + "product_url": "https:\/\/www.adafruit.com\/product\/814", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3065", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3065-00.jpg", + "image_is_video": "0", + "product_name": "Pi-Top - GREEN - A Laptop Kit for Raspberry Pi B+ \/ Pi 2 \/ Pi 3", + "product_model": "", + "product_mpn": "ADA3065", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "274.95", + "product_shipping_weight": "2,526.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3065", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3092", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3092-06.jpg", + "image_is_video": "0", + "product_name": "OSMC RF Remote Control", + "product_model": "", + "product_mpn": "ADA3092", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "25.95", + "product_shipping_weight": "56.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3092", + "product_stock": "50", + "products_hts": "8526.92.5000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3116", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3116-01.jpg", + "image_is_video": "0", + "product_name": "Pi-Top - GREY - A Laptop Kit for Raspberry Pi B+ \/ Pi 2 \/ Pi 3", + "product_model": "", + "product_mpn": "ADA3116", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "274.95", + "product_shipping_weight": "2,526.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3116", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3368", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3368-00.jpg", + "image_is_video": "0", + "product_name": "Miniature 5V Cooling Fan for Raspberry Pi (and Other Computers)", + "product_model": "", + "product_mpn": "ADA3368", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "9.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3368", + "product_stock": "in stock", + "products_hts": "8473.30.5100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3518", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3518-00.jpg", + "image_is_video": "0", + "product_name": "Lens Adjustment Tool for Raspberry Pi Camera", + "product_model": "", + "product_mpn": "ADA3518", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3518", + "product_stock": "0", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3589", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3589-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3589", + "product_master_category": "166", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3589", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3762", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3762-00.jpg", + "image_is_video": "0", + "product_name": "pi-top Laptop with Inventor's Kit v2", + "product_model": "", + "product_mpn": "ADA3762", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "299.95", + "product_shipping_weight": "2,865.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3762", + "product_stock": "8", + "products_hts": "8471.30.0100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3850", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3850-00.jpg", + "image_is_video": "0", + "product_name": "PureAudio Array Microphone Kit for Raspberry Pi 3", + "product_model": "", + "product_mpn": "ADA3850", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "69.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3850", + "product_stock": "19", + "products_hts": "8518.10.8030", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4468", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4468-01.jpg", + "image_is_video": "0", + "product_name": "Miniature 5V Cooling Fan with Molex PicoBlade Connector", + "product_model": "", + "product_mpn": "ADA4468", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4468", + "product_stock": "in stock", + "products_hts": "8414.59.1500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5025", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5025-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero Pro Plate for HQ Camera", + "product_model": "", + "product_mpn": "ADA5025", + "product_master_category": "166", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "18.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5025", + "product_stock": "18", + "products_hts": "8473.30.9100", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "191", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/191-09.jpg", + "image_is_video": "0", + "product_name": "Arduino Mega 2560 R3 (Atmega2560 - assembled)", + "product_model": "", + "product_mpn": "ADA191", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "39.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/191", + "product_stock": "-3", + "products_hts": "8542.31.0001", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1076", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1076-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Due - assembled", + "product_model": "Due", + "product_mpn": "ADA1076", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "49.95", + "product_shipping_weight": "46.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1076", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1086", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1086-08.jpg", + "image_is_video": "0", + "product_name": "Arduino Micro with Headers - 5V 16MHz - (ATmega32u4 - assembled)", + "product_model": "", + "product_mpn": "ADA1086", + "product_master_category": "171", + "product_manufacturer": "Smart Projects", + "product_price": "24.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1086", + "product_stock": "-3", + "products_hts": "8471.50.0150", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2378", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2378-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Pro Mini 328 - 5V\/16 MHz", + "product_model": "", + "product_mpn": "ADA2378", + "product_master_category": "171", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2378", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2843", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2843-01.jpg", + "image_is_video": "0", + "product_name": "Arduino Zero - 32 bit Cortex M0 Arduino with Debug Interface", + "product_model": "", + "product_mpn": "ADA2843", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "54.95", + "product_shipping_weight": "30.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2843", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "HU", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3033", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3033-00.jpg", + "image_is_video": "0", + "product_name": "Arduino 101 with Intel Curie", + "product_model": "", + "product_mpn": "ADA3033", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "39.95", + "product_shipping_weight": "35.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3033", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3156", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3156-00.jpg", + "image_is_video": "0", + "product_name": "Arduino MKR1000", + "product_model": "", + "product_mpn": "ADA3156", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "44.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3156", + "product_stock": "-3", + "products_hts": "8471.50.0150", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3228", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3228-00.jpg", + "image_is_video": "0", + "product_name": "Seeeduino Lite - ATmega32u4", + "product_model": "", + "product_mpn": "ADA3228", + "product_master_category": "171", + "product_manufacturer": "SeeedStudio", + "product_price": "21.95", + "product_shipping_weight": "45.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3228", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4805", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4805-00.jpg", + "image_is_video": "0", + "product_name": "Arduino MKR WiFi 1010 - SAMD21 with WiFi and BLE", + "product_model": "", + "product_mpn": "ADA4805", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "31.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4805", + "product_stock": "0", + "products_hts": "8471.50.0150", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4806", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4806-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Uno R3", + "product_model": "", + "product_mpn": "ADA4806", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "22.50", + "product_shipping_weight": "45.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4806", + "product_stock": "99", + "products_hts": "8471.50.0150", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1315", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1315-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Micro without Headers - 5V 16MHz ATmega32u4 - Assembled", + "product_model": "", + "product_mpn": "ADA1315", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "22.95", + "product_shipping_weight": "6.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1315", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.66", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1348", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1348-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Esplora", + "product_model": "", + "product_mpn": "ADA1348", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "53.95", + "product_shipping_weight": "133.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1348", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1498", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1498-00.jpg", + "image_is_video": "0", + "product_name": "Arduino YUN (Y\u00daN)", + "product_model": "", + "product_mpn": "ADA1498", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "74.95", + "product_shipping_weight": "41.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1498", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1499", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1499-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Robot", + "product_model": "", + "product_mpn": "ADA1499", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "247.45", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1499", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2377", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2377-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Pro Mini 328 - 3.3V\/8 MHz", + "product_model": "", + "product_mpn": "ADA2377", + "product_master_category": "171", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2377", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "883", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/883-05.jpg", + "image_is_video": "0", + "product_name": "Arduino Leonardo ATmega32u4 without headers", + "product_model": "", + "product_mpn": "ADA883", + "product_master_category": "171", + "product_manufacturer": "Smart Projects", + "product_price": "22.50", + "product_shipping_weight": "27.5", + "product_url": "https:\/\/www.adafruit.com\/product\/883", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "563", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/563-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Mega R3 Android Accessory Development Kit (ADK) Board", + "product_model": "ATmega2560 ADK R3", + "product_mpn": "ADA563", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "84.95", + "product_shipping_weight": "51.2", + "product_url": "https:\/\/www.adafruit.com\/product\/563", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "849", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/849-01.jpg", + "image_is_video": "0", + "product_name": "Arduino Leonardo ATmega32u4 with headers", + "product_model": "", + "product_mpn": "ADA849", + "product_master_category": "171", + "product_manufacturer": "Arduino", + "product_price": "24.95", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/849", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "418", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/418-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Uno Ethernet", + "product_model": "", + "product_mpn": "ADA418", + "product_master_category": "171", + "product_manufacturer": null, + "product_price": "65.00", + "product_shipping_weight": "42.1", + "product_url": "https:\/\/www.adafruit.com\/product\/418", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "65.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "52.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1078", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1078-01.jpg", + "image_is_video": "0", + "product_name": "Arduino Starter Kit from Arduino.cc", + "product_model": "", + "product_mpn": "ADA1078", + "product_master_category": "172", + "product_manufacturer": "Arduino", + "product_price": "94.50", + "product_shipping_weight": "848.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1078", + "product_stock": "-3", + "products_hts": "8471.50.0150", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2768", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2768-00.jpg", + "image_is_video": "0", + "product_name": "Arduino 101 CurieBot Pack", + "product_model": "", + "product_mpn": "ADA2768", + "product_master_category": "172", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "1,000.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2768", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "193", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/193-01.jpg", + "image_is_video": "0", + "product_name": "Budget Pack for Metro 328 - with Assembled Metro ATmega328P", + "product_model": "", + "product_mpn": "ADA193", + "product_master_category": "172", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "247.7", + "product_url": "https:\/\/www.adafruit.com\/product\/193", + "product_stock": "78", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2817", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2817-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero Budget Pack - Includes Pi Zero v1.3", + "product_model": "", + "product_mpn": "ADA2817", + "product_master_category": "175", + "product_manufacturer": "Adafruit", + "product_price": "29.50", + "product_shipping_weight": "129.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2817", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3409", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3409-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero W Basic Pack - Includes Pi Zero W", + "product_model": "", + "product_mpn": "ADA3409", + "product_master_category": "175", + "product_manufacturer": "Adafruit", + "product_price": "24.50", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3409", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3410", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3410-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero W Budget Pack - Includes Pi Zero W", + "product_model": "", + "product_mpn": "ADA3410", + "product_master_category": "175", + "product_manufacturer": "Adafruit", + "product_price": "34.50", + "product_shipping_weight": "132.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3410", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3813", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3813-02.jpg", + "image_is_video": "1", + "product_name": "Adafruit Animated Eyes Bonnet for Raspberry Pi Pack", + "product_model": "Pi not included", + "product_mpn": "ADA3813", + "product_master_category": "175", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "86.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3813", + "product_stock": "96", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3974", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3974-02.jpg", + "image_is_video": "0", + "product_name": "Ad Blocking Kit for Pi-Hole with 2.8\" PiTFT - No Soldering!", + "product_model": "No Raspberry Pi Included", + "product_mpn": "ADA3974", + "product_master_category": "175", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "233.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3974", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4327", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4327-01.jpg", + "image_is_video": "0", + "product_name": "8 Channel LoRa Gateway Kit comes with Raspberry Pi, LoRa and GPS", + "product_model": "", + "product_mpn": "ADA4327", + "product_master_category": "175", + "product_manufacturer": null, + "product_price": "199.95", + "product_shipping_weight": "586.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4327", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4706", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4706-00.jpg", + "image_is_video": "0", + "product_name": "Budget Pack for Raspberry Pi 4 (Doesn't include Raspberry Pi)", + "product_model": "", + "product_mpn": "ADA4706", + "product_master_category": "175", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "372.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4706", + "product_stock": "23", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4710", + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4709", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4709-00.jpg", + "image_is_video": "0", + "product_name": "Budget Pack for Raspberry Pi 4 - 2G", + "product_model": "Includes Raspberry Pi 4 - 2GB", + "product_mpn": "ADA4709", + "product_master_category": "175", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "438.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4709", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4710", + "discount_pricing": [] + }, + { + "product_id": "2358", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2358-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 2 - Model B v1.2 - ARM Cortex-A53 with 1G RAM", + "product_model": "", + "product_mpn": "ADA2358", + "product_master_category": "176", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "97.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2358", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2885", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2885-06.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero - Version 1.3", + "product_model": "", + "product_mpn": "ADA2885", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "5.00", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2885", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3400", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3400-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero W", + "product_model": "", + "product_mpn": "ADA3400", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "10.00", + "product_shipping_weight": "11.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3400", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3440", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3440-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 3", + "product_model": "", + "product_mpn": "ADA3440", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "35.00", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3440", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3441", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3441-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 3 Lite", + "product_model": "", + "product_mpn": "ADA3441", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "29.95", + "product_shipping_weight": "17.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3441", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3442", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3442-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module I\/O Board V3", + "product_model": "", + "product_mpn": "ADA3442", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "114.95", + "product_shipping_weight": "69.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3442", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3708", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3708-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero WH (Zero W with Headers)", + "product_model": "", + "product_mpn": "ADA3708", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "14.00", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3708", + "product_stock": "in stock", + "products_hts": "8542.31.00.01", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4027", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4027-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model 3 A+", + "product_model": "", + "product_mpn": "ADA4027", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "25.00", + "product_shipping_weight": "48.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4027", + "product_stock": "61", + "products_hts": "8542.31.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4092", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4092-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 3+ Dev Kit with Two Computer Modules", + "product_model": "", + "product_mpn": "ADA4092", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "99.00", + "product_shipping_weight": "130.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4092", + "product_stock": "0", + "products_hts": "8471.50.0110", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4093", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4093-04.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 3+ Lite", + "product_model": "", + "product_mpn": "ADA4093", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "25.00", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4093", + "product_stock": "-4", + "products_hts": "8471.50.0110", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4094", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4094-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module M3+ 8 GB", + "product_model": "", + "product_mpn": "ADA4094", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "33.00", + "product_shipping_weight": "18.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4094", + "product_stock": "-5", + "products_hts": "8471.50.0110", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4292", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4292-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 4 Model B - 2 GB RAM", + "product_model": "", + "product_mpn": "ADA4292", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "35.00", + "product_shipping_weight": "66.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4292", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4297", + "discount_pricing": [] + }, + { + "product_id": "4295", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4295-05.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 4 Model B - 1 GB RAM", + "product_model": "", + "product_mpn": "ADA4295", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "30.00", + "product_shipping_weight": "66.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4295", + "product_stock": "-3", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4297", + "discount_pricing": [] + }, + { + "product_id": "4296", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4296-11.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 4 Model B - 4 GB RAM", + "product_model": "", + "product_mpn": "ADA4296", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "55.00", + "product_shipping_weight": "66.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4296", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4297", + "discount_pricing": [] + }, + { + "product_id": "4564", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4564-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 4 Model B - 8 GB RAM", + "product_model": "", + "product_mpn": "ADA4564", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "75.00", + "product_shipping_weight": "66.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4564", + "product_stock": "in stock", + "products_hts": "8471.50.0100", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4297", + "discount_pricing": [] + }, + { + "product_id": "4782", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4782-04.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 4 - 1GB \/ No MMC \/ No WiFi (Lite)", + "product_model": "", + "product_mpn": "ADA4782", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "25.00", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4782", + "product_stock": "in stock", + "products_hts": "8471.50.0110", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4789", + "discount_pricing": [] + }, + { + "product_id": "4787", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4787-06.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 4 IO Board", + "product_model": "", + "product_mpn": "ADA4787", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "35.00", + "product_shipping_weight": "108.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4787", + "product_stock": "-5", + "products_hts": "8542.31.99", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4788", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4788-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 4 - 2GB \/ w. WiFi \/ No MMC", + "product_model": "", + "product_mpn": "ADA4788", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "35.00", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4788", + "product_stock": "in stock", + "products_hts": "8471.50.0110", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4789", + "discount_pricing": [] + }, + { + "product_id": "4790", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4790-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 4 with WiFi - 2GB RAM and 8GB MMC", + "product_model": "", + "product_mpn": "ADA4790", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "40.00", + "product_shipping_weight": "14.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4790", + "product_stock": "0", + "products_hts": "8471.50.0150", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4789", + "discount_pricing": [] + }, + { + "product_id": "4791", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4791-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 4 - 2GB RAM 16GB MMC and WiFi", + "product_model": "", + "product_mpn": "ADA4791", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "45.00", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4791", + "product_stock": "0", + "products_hts": "8471.50.0150", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4789", + "discount_pricing": [] + }, + { + "product_id": "4982", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4982-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 4 - 4GB RAM, 32GB MMC and WiFi", + "product_model": "", + "product_mpn": "ADA4982", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "65.00", + "product_shipping_weight": "14.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4982", + "product_stock": "0", + "products_hts": "8471.50.0150", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4789", + "discount_pricing": [] + }, + { + "product_id": "2231", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2231-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module", + "product_model": "", + "product_mpn": "ADA2231", + "product_master_category": "176", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "24.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2231", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2266", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2266-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A+ 512MB RAM", + "product_model": "", + "product_mpn": "ADA2266", + "product_master_category": "176", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "24.95", + "product_shipping_weight": "38.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2266", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1914", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1914-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ 512MB RAM", + "product_model": "", + "product_mpn": "ADA1914", + "product_master_category": "176", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "57.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1914", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3671", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3671-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit CSI or DSI Cable Extender Thingy for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3671", + "product_master_category": "177", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3671", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4562", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4562-03.jpg", + "image_is_video": "0", + "product_name": "16mm 10MP Telephoto Lens for Raspberry Pi HQ Camera", + "product_model": "10MP", + "product_mpn": "ADA4562", + "product_master_category": "177", + "product_manufacturer": null, + "product_price": "50.00", + "product_shipping_weight": "133.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4562", + "product_stock": "in stock", + "products_hts": "9002.90.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4563", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4563-02.jpg", + "image_is_video": "0", + "product_name": "6mm 3MP Wide Angle Lens for Raspberry Pi HQ Camera", + "product_model": "3MP", + "product_mpn": "ADA4563", + "product_master_category": "177", + "product_manufacturer": null, + "product_price": "25.00", + "product_shipping_weight": "104.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4563", + "product_stock": "in stock", + "products_hts": "9002.90.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2076", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2076-02.jpg", + "image_is_video": "0", + "product_name": "2x23 Male Headers for BeagleBone Black - Two Pack!", + "product_model": "", + "product_mpn": "ADA2076", + "product_master_category": "178", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2076", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "706", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/706-04.jpg", + "image_is_video": "0", + "product_name": "Stacking Header Set for Beagle Bone Capes (2x23)", + "product_model": "", + "product_mpn": "ADA706", + "product_master_category": "178", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.9", + "product_url": "https:\/\/www.adafruit.com\/product\/706", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "702", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/702-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Proto Plate for Beagle Bone & Beagle Bone Black", + "product_model": "", + "product_mpn": "ADA702", + "product_master_category": "179", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "56.2", + "product_url": "https:\/\/www.adafruit.com\/product\/702", + "product_stock": "77", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2627", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2627-00.jpg", + "image_is_video": "0", + "product_name": "Anidees Beaglebone Black Case - Black Aluminum with Smoke Top", + "product_model": "", + "product_mpn": "ADA2627", + "product_master_category": "179", + "product_manufacturer": "anidees", + "product_price": "39.95", + "product_shipping_weight": "241.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2627", + "product_stock": "-3", + "products_hts": "7612.90.9000", + "products_coo": "FR", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2628", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2628-00.jpg", + "image_is_video": "0", + "product_name": "Anidees BeagleBoneBlack Case - Silver Aluminum with Crystal Top", + "product_model": "", + "product_mpn": "ADA2628", + "product_master_category": "179", + "product_manufacturer": "anidees", + "product_price": "39.95", + "product_shipping_weight": "244.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2628", + "product_stock": "-3", + "products_hts": "7612.90.9000", + "products_coo": "FR", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1810", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1810-01.jpg", + "image_is_video": "0", + "product_name": "uniBBB - Unibody Aluminum Case for BeagleBone Black", + "product_model": "", + "product_mpn": "ADA1810", + "product_master_category": "179", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "160.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1810", + "product_stock": "60", + "products_hts": "8538.10.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1555", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1555-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit BBB Case - Enclosure for Beagle Bone Black", + "product_model": "", + "product_mpn": "ADA1555", + "product_master_category": "179", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "48.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1555", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "699", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/699-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Bone Box - Enclosure for Beagle Bone\/Beagle Bone Black", + "product_model": "", + "product_mpn": "ADA699", + "product_master_category": "179", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "81.2", + "product_url": "https:\/\/www.adafruit.com\/product\/699", + "product_stock": "-3", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1278", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1278-00.jpg", + "image_is_video": "0", + "product_name": "BeagleBone Black - Rev B", + "product_model": "", + "product_mpn": "ADA1278", + "product_master_category": "181", + "product_manufacturer": "CircuitCo", + "product_price": "45.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1278", + "product_stock": "-3", + "products_hts": "8473.30.1180", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1996", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1996-01.jpg", + "image_is_video": "0", + "product_name": "BeagleBone Black Rev C - 4GB - Pre-installed Debian", + "product_model": "", + "product_mpn": "ADA1996", + "product_master_category": "181", + "product_manufacturer": null, + "product_price": "55.00", + "product_shipping_weight": "152.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1996", + "product_stock": "in stock", + "products_hts": "8473.30.1180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3396", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3396-05.jpg", + "image_is_video": "0", + "product_name": "4.3\" LCD Capacitive Touchscreen Display Cape for BeagleBone", + "product_model": "", + "product_mpn": "ADA3396", + "product_master_category": "181", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "175.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3396", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4179", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4179-00.jpg", + "image_is_video": "0", + "product_name": "PocketBeagle - Pocket Size BeagleBone Linux Computer", + "product_model": "", + "product_mpn": "ADA4179", + "product_master_category": "181", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4179", + "product_stock": "31", + "products_hts": "8537.10.9170", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "513", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/513-00.jpg", + "image_is_video": "0", + "product_name": "Beagle Bone A6<\/b> + Extras", + "product_model": "Rev. A6<\/b>", + "product_mpn": "ADA513", + "product_master_category": "181", + "product_manufacturer": null, + "product_price": "89.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/513", + "product_stock": "0", + "products_hts": "8473.30.1180", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "572", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/572-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Proto Cape Kit for Beagle Bone & Beagle Bone Black", + "product_model": "", + "product_mpn": "ADA572", + "product_master_category": "181", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "24.1", + "product_url": "https:\/\/www.adafruit.com\/product\/572", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1876", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1876-01.jpg", + "image_is_video": "0", + "product_name": "BeagleBone Black Rev C - 4GB Flash - Pre-installed Debian", + "product_model": "", + "product_mpn": "ADA1876", + "product_master_category": "181", + "product_manufacturer": "CircuitCo", + "product_price": "55.00", + "product_shipping_weight": "99.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1876", + "product_stock": "-3", + "products_hts": "8473.30.1180", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "703", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/703-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Beagle Bone Black Starter Pack", + "product_model": "", + "product_mpn": "ADA703", + "product_master_category": "182", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "406.2", + "product_url": "https:\/\/www.adafruit.com\/product\/703", + "product_stock": "77", + "products_hts": "8473.30.1180", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1138", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1138-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel Digital RGB LED Strip - White 60 LED", + "product_model": "WHITE", + "product_mpn": "ADA1138", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "99.80", + "product_shipping_weight": "232.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1138", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1138", + "discount_pricing": [ + { + "discounted_price": "99.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "1138", + "meters": "4", + "product_price": "99.80" + }, + { + "products_id": "4911", + "meters": "4", + "product_price": "64.95" + }, + { + "products_id": "2539", + "meters": "3", + "product_price": "74.85" + }, + { + "products_id": "2540", + "meters": "2", + "product_price": "49.90" + }, + { + "products_id": "2541", + "meters": "1", + "product_price": "24.95" + } + ] + }, + { + "product_id": "1376", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1376-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel Digital RGB LED Strip - White 30 LED", + "product_model": "WHITE", + "product_mpn": "ADA1376", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "84.75", + "product_shipping_weight": "257.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1376", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1376", + "discount_pricing": [ + { + "discounted_price": "84.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.28", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "1376", + "meters": "5", + "product_price": "84.75" + }, + { + "products_id": "4421", + "meters": "5", + "product_price": "14.95" + }, + { + "products_id": "3919", + "meters": "5", + "product_price": "12.50" + }, + { + "products_id": "3812", + "meters": "5", + "product_price": "14.95" + }, + { + "products_id": "3811", + "meters": "5", + "product_price": "12.50" + }, + { + "products_id": "4801", + "meters": "5", + "product_price": "12.50" + }, + { + "products_id": "2535", + "meters": "4", + "product_price": "67.80" + }, + { + "products_id": "2536", + "meters": "3", + "product_price": "50.85" + }, + { + "products_id": "2537", + "meters": "2", + "product_price": "33.90" + }, + { + "products_id": "2538", + "meters": "1", + "product_price": "16.95" + } + ] + }, + { + "product_id": "1460", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1460-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel Digital RGB LED Strip - Black 30 LED", + "product_model": "BLACK", + "product_mpn": "ADA1460", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "84.75", + "product_shipping_weight": "259.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1460", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1460", + "discount_pricing": [ + { + "discounted_price": "84.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.28", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "1460", + "meters": "5", + "product_price": "84.75" + }, + { + "products_id": "2549", + "meters": "4", + "product_price": "67.80" + }, + { + "products_id": "2550", + "meters": "3", + "product_price": "50.85" + }, + { + "products_id": "2551", + "meters": "2", + "product_price": "33.90" + }, + { + "products_id": "2552", + "meters": "1", + "product_price": "16.95" + } + ] + }, + { + "product_id": "1461", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1461-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel Digital RGB LED Strip - Black 60 LED", + "product_model": "BLACK", + "product_mpn": "ADA1461", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "99.80", + "product_shipping_weight": "221.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1461", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1461", + "discount_pricing": [ + { + "discounted_price": "99.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "1461", + "meters": "4", + "product_price": "99.80" + }, + { + "products_id": "2506", + "meters": "3", + "product_price": "74.85" + }, + { + "products_id": "2507", + "meters": "2", + "product_price": "49.90" + }, + { + "products_id": "2508", + "meters": "1", + "product_price": "24.95" + } + ] + }, + { + "product_id": "1506", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1506-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel Digital RGB LED Strip 144 LED - 1m Black", + "product_model": "BLACK", + "product_mpn": "ADA1506", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "104.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1506", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1507", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1507-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel Digital RGB LED Strip 144 LED - 1m White", + "product_model": "WHITE", + "product_mpn": "ADA1507", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "104.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1507", + "product_stock": "2", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2561", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2561-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Strip Starter Pack - 30 LED meter - White", + "product_model": "", + "product_mpn": "ADA2561", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "309.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2561", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2562", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2562-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Strip Starter Pack - 30 LED meter - Black", + "product_model": "", + "product_mpn": "ADA2562", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "282.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2562", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2824", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2824-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Digital RGBW LED Strip - Black PCB 30 LED\/m", + "product_model": "", + "product_mpn": "ADA2824", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "89.75", + "product_shipping_weight": "255.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2824", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2824", + "discount_pricing": [ + { + "discounted_price": "89.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.78", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2824", + "meters": "5", + "product_price": "89.75" + }, + { + "products_id": "2825", + "meters": "4", + "product_price": "71.80" + }, + { + "products_id": "2826", + "meters": "3", + "product_price": "53.85" + }, + { + "products_id": "2827", + "meters": "2", + "product_price": "35.90" + }, + { + "products_id": "2828", + "meters": "1", + "product_price": "17.95" + } + ] + }, + { + "product_id": "2832", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2832-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Digital RGBW LED Strip - White PCB 30 LED\/m", + "product_model": "", + "product_mpn": "ADA2832", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "89.75", + "product_shipping_weight": "252.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2832", + "product_stock": "32", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2832", + "discount_pricing": [ + { + "discounted_price": "89.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.78", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2832", + "meters": "5", + "product_price": "89.75" + }, + { + "products_id": "5137", + "meters": "5", + "product_price": "0.00" + }, + { + "products_id": "4851", + "meters": "5", + "product_price": "11.95" + }, + { + "products_id": "4850", + "meters": "5", + "product_price": "11.95" + }, + { + "products_id": "4849", + "meters": "5", + "product_price": "0.00" + }, + { + "products_id": "4848", + "meters": "5", + "product_price": "11.95" + }, + { + "products_id": "4847", + "meters": "5", + "product_price": "11.95" + }, + { + "products_id": "4846", + "meters": "5", + "product_price": "11.95" + }, + { + "products_id": "5138", + "meters": "5", + "product_price": "0.00" + }, + { + "products_id": "2833", + "meters": "4", + "product_price": "71.80" + }, + { + "products_id": "2834", + "meters": "3", + "product_price": "53.85" + }, + { + "products_id": "2835", + "meters": "2", + "product_price": "35.90" + }, + { + "products_id": "2836", + "meters": "1", + "product_price": "17.95" + } + ] + }, + { + "product_id": "2837", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2837-09.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Digital RGBW LED Strip - Black PCB 60 LED\/m", + "product_model": "", + "product_mpn": "ADA2837", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "107.80", + "product_shipping_weight": "225.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2837", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2837", + "discount_pricing": [ + { + "discounted_price": "107.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "97.02", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "86.24", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2837", + "meters": "4", + "product_price": "107.80" + }, + { + "products_id": "2839", + "meters": "3", + "product_price": "80.85" + }, + { + "products_id": "2840", + "meters": "2", + "product_price": "53.90" + }, + { + "products_id": "2841", + "meters": "1", + "product_price": "26.95" + } + ] + }, + { + "product_id": "2842", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2842-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Digital RGBW LED Strip - White PCB 60 LED\/m", + "product_model": "", + "product_mpn": "ADA2842", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "107.80", + "product_shipping_weight": "228.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2842", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2842", + "discount_pricing": [ + { + "discounted_price": "107.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "97.02", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "86.24", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2842", + "meters": "4", + "product_price": "107.80" + }, + { + "products_id": "2844", + "meters": "3", + "product_price": "80.85" + }, + { + "products_id": "2845", + "meters": "2", + "product_price": "53.90" + }, + { + "products_id": "2846", + "meters": "1", + "product_price": "26.95" + } + ] + }, + { + "product_id": "2847", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2847-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Digital RGBW LED Strip - White PCB 144 LED\/m", + "product_model": "1m", + "product_mpn": "ADA2847", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "106.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2847", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2848", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2848-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Digital RGBW LED Strip - Black PCB 144 LED\/m", + "product_model": "1m", + "product_mpn": "ADA2848", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "104.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2848", + "product_stock": "1", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2949", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2949-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini Skinny NeoPixel Digital RGB LED Strip - 30 LED\/m", + "product_model": "WHITE", + "product_mpn": "ADA2949", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "84.75", + "product_shipping_weight": "159.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2949", + "product_stock": "49", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2949", + "discount_pricing": [ + { + "discounted_price": "84.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.28", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2949", + "meters": "5", + "product_price": "84.75" + }, + { + "products_id": "2950", + "meters": "4", + "product_price": "67.80" + }, + { + "products_id": "2951", + "meters": "3", + "product_price": "50.85" + }, + { + "products_id": "2952", + "meters": "2", + "product_price": "33.90" + }, + { + "products_id": "2953", + "meters": "1", + "product_price": "16.95" + } + ] + }, + { + "product_id": "2954", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2954-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini Skinny NeoPixel Digital RGB LED Strip - 30 LED\/m", + "product_model": "BLACK", + "product_mpn": "ADA2954", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "84.75", + "product_shipping_weight": "152.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2954", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2954", + "discount_pricing": [ + { + "discounted_price": "84.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.28", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2954", + "meters": "5", + "product_price": "84.75" + }, + { + "products_id": "2955", + "meters": "4", + "product_price": "67.80" + }, + { + "products_id": "2956", + "meters": "3", + "product_price": "50.85" + }, + { + "products_id": "2957", + "meters": "2", + "product_price": "33.90" + }, + { + "products_id": "2958", + "meters": "1", + "product_price": "16.95" + } + ] + }, + { + "product_id": "2959", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2959-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini Skinny NeoPixel Digital RGB LED Strip - 60 LED\/m", + "product_model": "WHITE", + "product_mpn": "ADA2959", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "99.80", + "product_shipping_weight": "143.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2959", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2959", + "discount_pricing": [ + { + "discounted_price": "99.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2959", + "meters": "4", + "product_price": "99.80" + }, + { + "products_id": "2961", + "meters": "3", + "product_price": "74.85" + }, + { + "products_id": "2962", + "meters": "2", + "product_price": "49.90" + }, + { + "products_id": "2963", + "meters": "1", + "product_price": "24.95" + } + ] + }, + { + "product_id": "2964", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2964-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini Skinny NeoPixel Digital RGB LED Strip - 60 LED\/m", + "product_model": "BLACK", + "product_mpn": "ADA2964", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "99.80", + "product_shipping_weight": "138.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2964", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2964", + "discount_pricing": [ + { + "discounted_price": "99.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2964", + "meters": "4", + "product_price": "99.80" + }, + { + "products_id": "2966", + "meters": "3", + "product_price": "74.85" + }, + { + "products_id": "2967", + "meters": "2", + "product_price": "49.90" + }, + { + "products_id": "2968", + "meters": "1", + "product_price": "24.95" + } + ] + }, + { + "product_id": "2969", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2969-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini Skinny NeoPixel Digital RGB LED Strip - 144 LED\/m", + "product_model": "1m WHITE", + "product_mpn": "ADA2969", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "64.95", + "product_shipping_weight": "68.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2969", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2970", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2970-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini Skinny NeoPixel Digital RGB LED Strip - 144 LED\/m", + "product_model": "1m BLACK", + "product_mpn": "ADA2970", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "64.95", + "product_shipping_weight": "68.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2970", + "product_stock": "53", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3630", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3630-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Dots Strand - 20 LEDs at 2\" Pitch", + "product_model": "", + "product_mpn": "ADA3630", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "27.50", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3630", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3631", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3631-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Dots Strand - 20 LED 4\" Pitch", + "product_model": "", + "product_mpn": "ADA3631", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "27.50", + "product_shipping_weight": "47.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3631", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3634", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3634-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Side Light Strip - Black 120 LED", + "product_model": "", + "product_mpn": "ADA3634", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "72.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3634", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-9", + "min_qty": 10 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100-99", + "min_qty": 100 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3635", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3635-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Side Light Strip - Black 90 LED", + "product_model": "", + "product_mpn": "ADA3635", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "26.95", + "product_shipping_weight": "61.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3635", + "product_stock": "99", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "26.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.26", + "discounted_percent": "10", + "show_qty": "10-9", + "min_qty": 10 + }, + { + "discounted_price": "24.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "21.56", + "discounted_percent": "20", + "show_qty": "100-99", + "min_qty": 100 + }, + { + "discounted_price": "21.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3636", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3636-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Side Light Strip - Black 60 LED", + "product_model": "", + "product_mpn": "ADA3636", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "17.95", + "product_shipping_weight": "59.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3636", + "product_stock": "24", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-9", + "min_qty": 10 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100-99", + "min_qty": 100 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3811", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3811-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel LED Strip w\/ Alligator Clips - 60 LED\/m", + "product_model": "0.5 Meter Long - Black Flex", + "product_mpn": "ADA3811", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "64.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3811", + "product_stock": "6", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3812", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3812-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel LED Strip w\/ Alligator Clips - 30 LEDs\/meter", + "product_model": "1 Meter - BLACK", + "product_mpn": "ADA3812", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "83.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3812", + "product_stock": "2", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3851", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3851-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel UV LED Strip with 32 LED\/m", + "product_model": "White PCB - 1M", + "product_mpn": "ADA3851", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "85.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3851", + "product_stock": "0", + "products_hts": "9405.40.8200", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3869", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3869-04.jpg", + "image_is_video": "1", + "product_name": "NeoPixel RGB Neon-like LED Flex Strip with Silicone Tube", + "product_model": "1 meter", + "product_mpn": "ADA3869", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "303.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3869", + "product_stock": "98", + "products_hts": "9405.40.8200", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3919", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3919-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Strip with 3-pin JST PH Connector", + "product_model": "60 LED\/meter \/ 0.5 Meter", + "product_mpn": "ADA3919", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "49.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3919", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4310", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4310-00.jpg", + "image_is_video": "1", + "product_name": "Flexible Silicone Neon-like Skinny NeoPixel LED Strip", + "product_model": "96 LEDs per meter - 1m long", + "product_mpn": "ADA4310", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "102.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4310", + "product_stock": "18", + "products_hts": "9405.40.8440", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4560", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4560-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Soft Flexible Wire NeoPixel Strand - 50 NeoPixels", + "product_model": "", + "product_mpn": "ADA4560", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4560", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4689", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4689-00.jpg", + "image_is_video": "1", + "product_name": "NeoPixel RGBW Neon-like Flex Strip - Cool White 5500K - 1 meter", + "product_model": "5V 60 LEDs\/m", + "product_mpn": "ADA4689", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "255.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4689", + "product_stock": "56", + "products_hts": "9405.40.8440", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4801", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4801-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel LED Strip with 3-pin JST Connector - 1 meter", + "product_model": "30 LEDs \/ meter", + "product_mpn": "ADA4801", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "65.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4801", + "product_stock": "in stock", + "products_hts": "9405.40.8410", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4865", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4865-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel 332 LED-per-Meter Silicone Bead LED Strip", + "product_model": "0.5 Meter", + "product_mpn": "ADA4865", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "37.50", + "product_shipping_weight": "58.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4865", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "37.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "33.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4911", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4911-04.jpg", + "image_is_video": "1", + "product_name": "Dual Edge Side-Light NeoPixel LED Strip with120 LEDs per meter", + "product_model": "1 meter long", + "product_mpn": "ADA4911", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "64.95", + "product_shipping_weight": "83.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4911", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4913", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4913-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini Skinny NeoPixel LED Strip - Warm White 3000K", + "product_model": "60 LEDs\/m - 1m long", + "product_mpn": "ADA4913", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "21.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4913", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4914", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4914-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini Skinny NeoPixel RGBW LED Strip - Cool White 6500K", + "product_model": "60 LEDs\/m - 1m long", + "product_mpn": "ADA4914", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "21.95", + "product_shipping_weight": "63.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4914", + "product_stock": "84", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4915", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4915-00.jpg", + "image_is_video": "1", + "product_name": "Silicone Sheath NeoPixel LED Strip - 60 LEDs\/m", + "product_model": "1 meter", + "product_mpn": "ADA4915", + "product_master_category": "183", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "100.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4915", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4917", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4917-05.jpg", + "image_is_video": "1", + "product_name": "Fixed Address NeoPixel LED Fairy Lights - 100 Wired LEDs", + "product_model": "", + "product_mpn": "ADA4917", + "product_master_category": "183", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "43.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4917", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1463", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1463-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Ring - 16 x 5050 RGB LED with Integrated Drivers", + "product_model": "", + "product_mpn": "ADA1463", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1463", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1586", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1586-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Ring - 24 x 5050 RGB LED with Integrated Drivers", + "product_model": "", + "product_mpn": "ADA1586", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "16.95", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1586", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1643", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1643-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Ring - 12 x 5050 RGB LED with Integrated Drivers", + "product_model": "", + "product_mpn": "ADA1643", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1643", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1768", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1768-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel 1\/4 60 Ring - 5050 RGB LED w\/ Integrated Drivers", + "product_model": "", + "product_mpn": "ADA1768", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1768", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2851", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2851-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 12 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Warm White - ~3000K", + "product_mpn": "ADA2851", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "9.50", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2851", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "9.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2852", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2852-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 12 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Natural White - ~4500K", + "product_mpn": "ADA2852", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "9.50", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2852", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "9.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2853", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2853-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 12 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Cool White - ~6000K", + "product_mpn": "ADA2853", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "9.50", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2853", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "9.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2854", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2854-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 16 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Warm White - ~3000K", + "product_mpn": "ADA2854", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2854", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2855", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2855-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 16 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Natural White - ~4500K", + "product_mpn": "ADA2855", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2855", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2856", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2856-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 16 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Cool White - ~6000K", + "product_mpn": "ADA2856", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2856", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2861", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2861-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 24 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Warm White - ~3000K", + "product_mpn": "ADA2861", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "9.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2861", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2862", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2862-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 24 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Natural White - ~4500K", + "product_mpn": "ADA2862", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "9.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2862", + "product_stock": "31", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2863", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2863-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Ring - 24 x 5050 RGBW LEDs w\/ Integrated Drivers", + "product_model": "Cool White - ~6000K", + "product_mpn": "ADA2863", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "9.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2863", + "product_stock": "97", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2873", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2873-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel 1\/4 60 Ring - 5050 RGBW LED w\/ Integrated Drivers", + "product_model": "Warm White - ~3000K", + "product_mpn": "ADA2873", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2873", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2874", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2874-01.jpg", + "image_is_video": "1", + "product_name": "NeoPixel 1\/4 60 Ring - 5050 RGBW LED w\/ Integrated Drivers", + "product_model": "Natural White - ~4500K", + "product_mpn": "ADA2874", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2874", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2875", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2875-02.jpg", + "image_is_video": "1", + "product_name": "NeoPixel 1\/4 60 Ring - 5050 RGBW LED w\/ Integrated Drivers", + "product_model": "Cool White - ~6000K", + "product_mpn": "ADA2875", + "product_master_category": "184", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2875", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3042", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1426", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1426-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Stick - 8 x 5050 RGB LED with Integrated Drivers", + "product_model": "", + "product_mpn": "ADA1426", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1426", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3039", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1430", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1430-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel Shield for Arduino - 40 RGB LED Pixel Matrix", + "product_model": "", + "product_mpn": "ADA1430", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "27.95", + "product_shipping_weight": "27.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1430", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3053", + "discount_pricing": [ + { + "discounted_price": "27.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "25.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1487", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1487-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoPixel NeoMatrix 8x8 - 64 RGB LED Pixel Matrix", + "product_model": "", + "product_mpn": "ADA1487", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "27.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1487", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3052", + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2226", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2226-01.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Jewel - 7 x 5050 RGB LED with Integrated Drivers", + "product_model": "", + "product_mpn": "ADA2226", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2226", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3047", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2858", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2858-05.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Jewel - 7 x 5050 RGBW LED w\/ Integrated Drivers", + "product_model": "Warm White - ~3000K", + "product_mpn": "ADA2858", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2858", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3047", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2859", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2859-05.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Jewel - 7 x 5050 RGBW LED w\/ Integrated Drivers", + "product_model": "Natural White - ~4500K", + "product_mpn": "ADA2859", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2859", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3047", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2860", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2860-04.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Jewel - 7 x 5050 RGBW LED w\/ Integrated Drivers", + "product_model": "Cool White - ~6000K", + "product_mpn": "ADA2860", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2860", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3047", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2864", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2864-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Shield - 40 RGBW - Warm White", + "product_model": "~3000K", + "product_mpn": "ADA2864", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2864", + "product_stock": "55", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3053", + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2865", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2865-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Shield - 40 RGBW - Natural White", + "product_model": "~4500K", + "product_mpn": "ADA2865", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2865", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3053", + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2866", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2866-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel Shield - 40 RGBW - Cool White", + "product_model": "~6000K", + "product_mpn": "ADA2866", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2866", + "product_stock": "92", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3053", + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2867", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2867-07.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Stick - 8 x 5050 RGBW LEDs - Warm White - ~3000K", + "product_model": "", + "product_mpn": "ADA2867", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2867", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3039", + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2868", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2868-07.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Stick - 8 x 5050 RGBW LEDs - Natural White - ~4500K", + "product_model": "", + "product_mpn": "ADA2868", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2868", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3039", + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2869", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2869-07.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Stick - 8 x 5050 RGBW LEDs - Cool White - ~6000K", + "product_model": "", + "product_mpn": "ADA2869", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2869", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3039", + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2870", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2870-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel NeoMatrix - 64 RGBW - Warm White", + "product_model": "~3000K", + "product_mpn": "ADA2870", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2870", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3052", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-199", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "200+", + "min_qty": 200 + } + ] + }, + { + "product_id": "2871", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2871-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel NeoMatrix - 64 RGBW - Natural", + "product_model": "~4500K", + "product_mpn": "ADA2871", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2871", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3052", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2872", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2872-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPixel NeoMatrix - 64 RGBW - Cool White", + "product_model": "~6000K", + "product_mpn": "ADA2872", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "26.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2872", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3052", + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3444", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3444-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit DotStar High Density 8x8 Grid - 64 RGB LED Pixel Matrix", + "product_model": "", + "product_mpn": "ADA3444", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3444", + "product_stock": "61", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4222", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4222-03.jpg", + "image_is_video": "1", + "product_name": "NeoPixel Triple-Ring Board with 44 Thru-Hole LEDs", + "product_model": "66mm Diameter", + "product_mpn": "ADA4222", + "product_master_category": "186", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4222", + "product_stock": "48", + "products_hts": "9405.40.8200", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3483", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3483-00.jpg", + "image_is_video": "0", + "product_name": "Copper Foil Tape with Conductive Adhesive - 6mm x 5 meters long", + "product_model": "", + "product_mpn": "ADA3483", + "product_master_category": "190", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3483", + "product_stock": "in stock", + "products_hts": "7409.11.5050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3960", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3960-00.jpg", + "image_is_video": "0", + "product_name": "Conductive Nylon Fabric Tape - 8mm Wide x 10 meters long", + "product_model": "", + "product_mpn": "ADA3960", + "product_master_category": "190", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3960", + "product_stock": "in stock", + "products_hts": "3919.10.2055", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3961", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3961-00.jpg", + "image_is_video": "0", + "product_name": "Conductive Nylon Fabric Tape - 5mm Wide x 10 meters long", + "product_model": "", + "product_mpn": "ADA3961", + "product_master_category": "190", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "18.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3961", + "product_stock": "in stock", + "products_hts": "3919.10.2055", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4762", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4762-03.jpg", + "image_is_video": "1", + "product_name": "Nylon Fabric Squares with Conductive Adhesive", + "product_model": "10cm x 10cm - 3 pack", + "product_mpn": "ADA4762", + "product_master_category": "190", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "10.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4762", + "product_stock": "in stock", + "products_hts": "3919.10.2055", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4813", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4813-01.jpg", + "image_is_video": "0", + "product_name": "Clear Adhesive Squares - 6 pack", + "product_model": "UGlu Dashes", + "product_mpn": "ADA4813", + "product_master_category": "190", + "product_manufacturer": null, + "product_price": "0.50", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4813", + "product_stock": "in stock", + "products_hts": "3506.91.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2838", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2838-01.jpg", + "image_is_video": "0", + "product_name": "Silver Pin Back with Foam Adhesive", + "product_model": "", + "product_mpn": "ADA2838", + "product_master_category": "191", + "product_manufacturer": null, + "product_price": "0.45", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2838", + "product_stock": "-1", + "products_hts": "8308.90.8000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.45", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.41", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4387", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4387-04.jpg", + "image_is_video": "1", + "product_name": "Paper Diffraction Grating Glasses", + "product_model": "", + "product_mpn": "ADA4387", + "product_master_category": "191", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4387", + "product_stock": "92", + "products_hts": "9004.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1354", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1354-00.jpg", + "image_is_video": "0", + "product_name": "Litex White LEDs on White Fabric Ribbon Pack - 21\" 10 LEDs", + "product_model": "", + "product_mpn": "ADA1354", + "product_master_category": "192", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "15.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1354", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1355", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1355-00.jpg", + "image_is_video": "0", + "product_name": "Litex Spare Battery Case", + "product_model": "", + "product_mpn": "ADA1355", + "product_master_category": "192", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1355", + "product_stock": "4", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1353", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1353-00.jpg", + "image_is_video": "0", + "product_name": "Litex White LEDs on Black Fabric Ribbon Pack", + "product_model": "", + "product_mpn": "ADA1353", + "product_master_category": "192", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "14.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1353", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1398", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1398-00.jpg", + "image_is_video": "0", + "product_name": "Litex White LEDs on White Fabric Ribbon Pack - 1.5 meter 30 LEDs", + "product_model": "", + "product_mpn": "ADA1398", + "product_master_category": "192", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "45.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1398", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1397", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1397-03.jpg", + "image_is_video": "0", + "product_name": "Litex White LEDs on Black Fabric Ribbon Pack - 1.5 meter 20 LEDs", + "product_model": "", + "product_mpn": "ADA1397", + "product_master_category": "192", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "45.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1397", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "486", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/486-01.jpg", + "image_is_video": "0", + "product_name": "Circuit board necktie \"Resistor\" - Black with silver ink, narrow", + "product_model": "", + "product_mpn": "ADA486", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "30.00", + "product_shipping_weight": "454.0", + "product_url": "https:\/\/www.adafruit.com\/product\/486", + "product_stock": "-3", + "products_hts": "6215.20.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "521", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/521-00.jpg", + "image_is_video": "0", + "product_name": "Engineering Shirt", + "product_model": "Womens Large", + "product_mpn": "ADA521", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.00", + "product_shipping_weight": "107.3", + "product_url": "https:\/\/www.adafruit.com\/product\/521", + "product_stock": "0", + "products_hts": "6109.90.1050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "509", + "discount_pricing": [] + }, + { + "product_id": "522", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/522-00.jpg", + "image_is_video": "0", + "product_name": "Engineering Shirt", + "product_model": "Womens Medium", + "product_mpn": "ADA522", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.00", + "product_shipping_weight": "107.3", + "product_url": "https:\/\/www.adafruit.com\/product\/522", + "product_stock": "3", + "products_hts": "6109.10.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "509", + "discount_pricing": [] + }, + { + "product_id": "525", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/525-00.jpg", + "image_is_video": "0", + "product_name": "Engineering Shirt", + "product_model": "Mens Large", + "product_mpn": "ADA525", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/525", + "product_stock": "0", + "products_hts": "6109.90.1050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "509", + "discount_pricing": [] + }, + { + "product_id": "573", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/573-00.jpg", + "image_is_video": "0", + "product_name": "Circuit board necktie \"Resistor\" - Olive with gold ink, narrow", + "product_model": "", + "product_mpn": "ADA573", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "30.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/573", + "product_stock": "-3", + "products_hts": "6215.20.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "577", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/577-00.jpg", + "image_is_video": "0", + "product_name": "Ascii Heart <3 Necklace", + "product_model": "", + "product_mpn": "ADA577", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "149.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/577", + "product_stock": "-3", + "products_hts": "7113.11.5000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "839", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/839-00.jpg", + "image_is_video": "0", + "product_name": "Transistor Man Shirt - Womens Small", + "product_model": "", + "product_mpn": "ADA839", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "96.9", + "product_url": "https:\/\/www.adafruit.com\/product\/839", + "product_stock": "4", + "products_hts": "6109.10.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "838", + "discount_pricing": [] + }, + { + "product_id": "843", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/843-00.jpg", + "image_is_video": "0", + "product_name": "Transistor Man Shirt - Mens Large", + "product_model": "", + "product_mpn": "ADA843", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "96.7", + "product_url": "https:\/\/www.adafruit.com\/product\/843", + "product_stock": "-1", + "products_hts": "6109.90.1050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "838", + "discount_pricing": [] + }, + { + "product_id": "1414", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1414-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Mens Medium", + "product_mpn": "ADA1414", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1414", + "product_stock": "-3", + "products_hts": "6109.90.1050", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "1416", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1416-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Mens X-Large", + "product_mpn": "ADA1416", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "200.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1416", + "product_stock": "-3", + "products_hts": "6109.90.1050", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "1417", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1417-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Womens Small", + "product_mpn": "ADA1417", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "96.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1417", + "product_stock": "-3", + "products_hts": "6109.10.0040", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "1418", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1418-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Womens Medium", + "product_mpn": "ADA1418", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "102.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1418", + "product_stock": "-3", + "products_hts": "6109.10.0040", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "1419", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1419-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Womens Large", + "product_mpn": "ADA1419", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "118.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1419", + "product_stock": "-3", + "products_hts": "6109.10.0040", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "1420", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1420-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Kids Small", + "product_mpn": "ADA1420", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "95.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1420", + "product_stock": "-3", + "products_hts": "6109.10.0040", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "1421", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1421-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Kids Medium", + "product_mpn": "ADA1421", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "111.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1421", + "product_stock": "-3", + "products_hts": "6109.10.0040", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "1422", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1422-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Kids Large", + "product_mpn": "ADA1422", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "124.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1422", + "product_stock": "-3", + "products_hts": "6109.10.0040", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "1517", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1517-00.jpg", + "image_is_video": "0", + "product_name": "Glitch Scarf by Glitchaus", + "product_model": "", + "product_mpn": "ADA1517", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "79.95", + "product_shipping_weight": "220.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1517", + "product_stock": "-3", + "products_hts": "6214.30.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3007", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3007-01.jpg", + "image_is_video": "0", + "product_name": "Glitch Textiles Dark Code Throw", + "product_model": "", + "product_mpn": "ADA3007", + "product_master_category": "195", + "product_manufacturer": "Glitch Textiles", + "product_price": "275.00", + "product_shipping_weight": "1,163.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3007", + "product_stock": "-3", + "products_hts": "6301.30.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3849", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3849-01.jpg", + "image_is_video": "0", + "product_name": "Lock-sport Earrings", + "product_model": "", + "product_mpn": "ADA3849", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "14.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3849", + "product_stock": "-1", + "products_hts": "7113.11.5000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3916", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3916-07.jpg", + "image_is_video": "0", + "product_name": "Blue Circuit Board Pendant Necklace with Silver Chain", + "product_model": "", + "product_mpn": "ADA3916", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3916", + "product_stock": "0", + "products_hts": "7113.11.5000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3982", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3982-00.jpg", + "image_is_video": "0", + "product_name": "Double-Hook Lanyard in Adafruit Black", + "product_model": "", + "product_mpn": "ADA3982", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "15.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3982", + "product_stock": "36", + "products_hts": "9504.90.9080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3987", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3987-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Circuit Playground Lanyard", + "product_model": "", + "product_mpn": "ADA3987", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "22.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3987", + "product_stock": "in stock", + "products_hts": "9504.90.9080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4811", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4811-01.jpg", + "image_is_video": "0", + "product_name": "Bangle.js - Hackable Javascript Smart Watch", + "product_model": "", + "product_mpn": "ADA4811", + "product_master_category": "195", + "product_manufacturer": "Espruino", + "product_price": "94.95", + "product_shipping_weight": "152.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4811", + "product_stock": "87", + "products_hts": "9101.21.3000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "526", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/526-00.jpg", + "image_is_video": "0", + "product_name": "Engineering Shirt", + "product_model": "Mens Medium", + "product_mpn": "ADA526", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/526", + "product_stock": "0", + "products_hts": "6109.90.1050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "509", + "discount_pricing": [] + }, + { + "product_id": "1415", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1415-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Logo T-Shirt", + "product_model": "Mens Large", + "product_mpn": "ADA1415", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "80.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1415", + "product_stock": "-3", + "products_hts": "6109.90.1050", + "products_coo": "HT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "1423", + "discount_pricing": [] + }, + { + "product_id": "2295", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2295-00.jpg", + "image_is_video": "0", + "product_name": "Transistor Man Shirt - Womens X-Large", + "product_model": "", + "product_mpn": "ADA2295", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "100.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2295", + "product_stock": "8", + "products_hts": "6109.10.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "838", + "discount_pricing": [] + }, + { + "product_id": "1396", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1396-00.jpg", + "image_is_video": "0", + "product_name": "Transistor Man Shirt - Mens 4X-Large", + "product_model": "", + "product_mpn": "ADA1396", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "200.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1396", + "product_stock": "4", + "products_hts": "6109.10.0012", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "838", + "discount_pricing": [] + }, + { + "product_id": "840", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/840-00.jpg", + "image_is_video": "0", + "product_name": "Transistor Man Shirt - Womens Medium", + "product_model": "", + "product_mpn": "ADA840", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "96.7", + "product_url": "https:\/\/www.adafruit.com\/product\/840", + "product_stock": "0", + "products_hts": "6109.10.0040", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "838", + "discount_pricing": [] + }, + { + "product_id": "841", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/841-00.jpg", + "image_is_video": "0", + "product_name": "Transistor Man Shirt - Womens Large", + "product_model": "", + "product_mpn": "ADA841", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "96.7", + "product_url": "https:\/\/www.adafruit.com\/product\/841", + "product_stock": "-3", + "products_hts": "6109.10.0040", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "838", + "discount_pricing": [] + }, + { + "product_id": "557", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/557-00.jpg", + "image_is_video": "0", + "product_name": "Silver Bipolar Earrings - NPN \/ PNP", + "product_model": "", + "product_mpn": "ADA557", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/557", + "product_stock": "-3", + "products_hts": "7113.11.5000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "842", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/842-00.jpg", + "image_is_video": "0", + "product_name": "Transistor Man Shirt - Mens Medium", + "product_model": "", + "product_mpn": "ADA842", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "96.7", + "product_url": "https:\/\/www.adafruit.com\/product\/842", + "product_stock": "-3", + "products_hts": "6109.90.1050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "838", + "discount_pricing": [] + }, + { + "product_id": "867", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/867-00.jpg", + "image_is_video": "0", + "product_name": "Transistor Man Shirt - Mens X-Large", + "product_model": "", + "product_mpn": "ADA867", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "96.7", + "product_url": "https:\/\/www.adafruit.com\/product\/867", + "product_stock": "-1", + "products_hts": "6109.90.1050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "838", + "discount_pricing": [] + }, + { + "product_id": "1263", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1263-00.jpg", + "image_is_video": "0", + "product_name": "USB Flashdrive Cufflinks - 4 GB Storage", + "product_model": "", + "product_mpn": "ADA1263", + "product_master_category": "195", + "product_manufacturer": null, + "product_price": "29.00", + "product_shipping_weight": "67.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1263", + "product_stock": "-3", + "products_hts": "8471.70.9000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.10", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "379", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/379-00.jpg", + "image_is_video": "0", + "product_name": "iCufflinks", + "product_model": "v1.1", + "product_mpn": "ADA379", + "product_master_category": "195", + "product_manufacturer": "Adafruit", + "product_price": "128.00", + "product_shipping_weight": "109.2", + "product_url": "https:\/\/www.adafruit.com\/product\/379", + "product_stock": "-3", + "products_hts": "7117.11.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "440", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/440-00.jpg", + "image_is_video": "0", + "product_name": "iNecklace", + "product_model": "v1.0", + "product_mpn": "ADA440", + "product_master_category": "195", + "product_manufacturer": "Adafruit", + "product_price": "75.00", + "product_shipping_weight": "95.0", + "product_url": "https:\/\/www.adafruit.com\/product\/440", + "product_stock": "-3", + "products_hts": "7113.20.2100", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1762", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1762-00.jpg", + "image_is_video": "0", + "product_name": "5050 LED breakout PCB - 10 pack!", + "product_model": "", + "product_mpn": "ADA1762", + "product_master_category": "198", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1762", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3022", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3022-00.jpg", + "image_is_video": "0", + "product_name": "Paper Signals Bundle", + "product_model": "", + "product_mpn": "ADA3022", + "product_master_category": "203", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "64.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3022", + "product_stock": "0", + "products_hts": "8542.31.00.01", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3603", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3603-00.jpg", + "image_is_video": "0", + "product_name": "Ladyada's x0xb0x Synth Kit - PCB Set", + "product_model": "", + "product_mpn": "ADA3603", + "product_master_category": "203", + "product_manufacturer": "Adafruit", + "product_price": "30.30", + "product_shipping_weight": "187.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3603", + "product_stock": "4", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3665", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3665-04.jpg", + "image_is_video": "1", + "product_name": "PinBox 3000", + "product_model": "by Cardboard Teck Instantute", + "product_mpn": "ADA3665", + "product_master_category": "203", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "1,998.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3665", + "product_stock": "-1", + "products_hts": "9504.30.00.60", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3807", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3807-01.jpg", + "image_is_video": "0", + "product_name": "Onion Omega2+ Starter Kit", + "product_model": "", + "product_mpn": "ADA3807", + "product_master_category": "203", + "product_manufacturer": null, + "product_price": "124.95", + "product_shipping_weight": "725.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3807", + "product_stock": "14", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3808", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3808-01.jpg", + "image_is_video": "0", + "product_name": "Onion Omega2+ Maker Kit", + "product_model": "", + "product_mpn": "ADA3808", + "product_master_category": "203", + "product_manufacturer": null, + "product_price": "174.95", + "product_shipping_weight": "882.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3808", + "product_stock": "3", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3937", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3937-00.jpg", + "image_is_video": "0", + "product_name": "Adaptive Design's Morse Code for GBoard Hardware Interface Pack", + "product_model": "", + "product_mpn": "ADA3937", + "product_master_category": "203", + "product_manufacturer": null, + "product_price": "32.50", + "product_shipping_weight": "194.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3937", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "32.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4102", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4102-01.jpg", + "image_is_video": "0", + "product_name": "HackerBox #0041 - ItsyBitsy M4 + CircuitPython + MakeCode Arcade", + "product_model": "", + "product_mpn": "ADA4102", + "product_master_category": "203", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "245.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4102", + "product_stock": "-3", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "170", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/170-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit MetroX Classic Kit - Experimentation Kit for Metro 328", + "product_model": "", + "product_mpn": "ADA170", + "product_master_category": "204", + "product_manufacturer": "Adafruit", + "product_price": "84.95", + "product_shipping_weight": "450.0", + "product_url": "https:\/\/www.adafruit.com\/product\/170", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3588", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3588-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit MetroX Classic Kit - Experimentation Kit for Metro 328", + "product_model": "", + "product_mpn": "ADA3588", + "product_master_category": "204", + "product_manufacturer": "Adafruit", + "product_price": "84.95", + "product_shipping_weight": "450.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3588", + "product_stock": "0", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4277", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4277-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyGamer Starter Kit", + "product_model": "", + "product_mpn": "ADA4277", + "product_master_category": "204", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "131.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4277", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4623", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4623-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyBadge Starter Kit", + "product_model": "", + "product_mpn": "ADA4623", + "product_master_category": "204", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "86.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4623", + "product_stock": "22", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "11-99", + "min_qty": 1 + } + ] + }, + { + "product_id": "4624", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4624-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyBadge Low Cost Starter Kit", + "product_model": "", + "product_mpn": "ADA4624", + "product_master_category": "204", + "product_manufacturer": null, + "product_price": "32.50", + "product_shipping_weight": "82.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4624", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.25", + "discounted_percent": "10", + "show_qty": "11-99", + "min_qty": 1 + } + ] + }, + { + "product_id": "2751", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2751-03.jpg", + "image_is_video": "1", + "product_name": "Tiny Thermal Receipt Printer - TTL Serial \/ USB", + "product_model": "", + "product_mpn": "ADA2751", + "product_master_category": "205", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "226.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2751", + "product_stock": "89", + "products_hts": "8471.60.6500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2752", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2752-04.jpg", + "image_is_video": "1", + "product_name": "Nano Thermal Receipt Printer - TTL Serial", + "product_model": "", + "product_mpn": "ADA2752", + "product_master_category": "205", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2752", + "product_stock": "0", + "products_hts": "8471.60.6500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2753", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2753-04.jpg", + "image_is_video": "1", + "product_name": "Thermal Receipt Printer Guts", + "product_model": "", + "product_mpn": "ADA2753", + "product_master_category": "205", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "125.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2753", + "product_stock": "52", + "products_hts": "8471.60.6500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "287", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/287-06.jpg", + "image_is_video": "1", + "product_name": "The Brain Machine Kit", + "product_model": "v1", + "product_mpn": "ADA287", + "product_master_category": "206", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "223.5", + "product_url": "https:\/\/www.adafruit.com\/product\/287", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2403", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2403-02.jpg", + "image_is_video": "0", + "product_name": "Particle Maker Kit (with Core)", + "product_model": "", + "product_mpn": "ADA2403", + "product_master_category": "206", + "product_manufacturer": null, + "product_price": "64.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2403", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2648", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2648-00.jpg", + "image_is_video": "0", + "product_name": "MintySynth Kit - 2.0", + "product_model": "", + "product_mpn": "ADA2648", + "product_master_category": "206", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "55.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2648", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3280", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3280-00.jpg", + "image_is_video": "0", + "product_name": "Infinity Shred's Datadealer Synth Kit", + "product_model": "", + "product_mpn": "ADA3280", + "product_master_category": "206", + "product_manufacturer": "Adafruit", + "product_price": "225.00", + "product_shipping_weight": "658.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3280", + "product_stock": "-3", + "products_hts": "8542.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "101", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/101-00.jpg", + "image_is_video": "0", + "product_name": "SIM Reader kit", + "product_model": "v1.0", + "product_mpn": "ADA101", + "product_master_category": "206", + "product_manufacturer": "Adafruit", + "product_price": "17.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/101", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.30", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1924", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1924-01.jpg", + "image_is_video": "0", + "product_name": "Lumi Sunfold Printing Kit", + "product_model": "", + "product_mpn": "ADA1924", + "product_master_category": "206", + "product_manufacturer": "Lumi", + "product_price": "34.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1924", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1925", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1925-01.jpg", + "image_is_video": "0", + "product_name": "Lumi Shadow Printing Kit", + "product_model": "", + "product_mpn": "ADA1925", + "product_master_category": "206", + "product_manufacturer": "Lumi", + "product_price": "24.95", + "product_shipping_weight": "238.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1925", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1920", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1920-01.jpg", + "image_is_video": "0", + "product_name": "Lumi Photo Printing Kit", + "product_model": "", + "product_mpn": "ADA1920", + "product_master_category": "206", + "product_manufacturer": "Lumi", + "product_price": "39.95", + "product_shipping_weight": "498.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1920", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "89", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/89-04.jpg", + "image_is_video": "0", + "product_name": "Conway's Game of Life Kit", + "product_model": "v1.3", + "product_mpn": "ADA89", + "product_master_category": "206", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "38.9", + "product_url": "https:\/\/www.adafruit.com\/product\/89", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "10.63", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "609", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/609-00.jpg", + "image_is_video": "0", + "product_name": "NeTV Starter Pack", + "product_model": "", + "product_mpn": "ADA609", + "product_master_category": "206", + "product_manufacturer": null, + "product_price": "150.00", + "product_shipping_weight": "465.1", + "product_url": "https:\/\/www.adafruit.com\/product\/609", + "product_stock": "38", + "products_hts": "8525.10.10", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "339", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/339-03.jpg", + "image_is_video": "0", + "product_name": "Large waterproof OtterBox", + "product_model": "3000", + "product_mpn": "ADA339", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "20.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/339", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "20.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "18.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "16.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "340", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/340-00.jpg", + "image_is_video": "0", + "product_name": "Small waterproof OtterBox", + "product_model": "1000", + "product_mpn": "ADA340", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "10.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/340", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "341", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/341-00.jpg", + "image_is_video": "0", + "product_name": "Medium Waterproof OtterBox", + "product_model": "2000 \/ Pursuits 40", + "product_mpn": "ADA341", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/341", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2229", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2229-00.jpg", + "image_is_video": "0", + "product_name": "Extruded Aluminum Enclosure Box - 100mm x 67mm x 26mm", + "product_model": "", + "product_mpn": "ADA2229", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "109.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2229", + "product_stock": "21", + "products_hts": "7616.99.5190", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3690", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3690-00.jpg", + "image_is_video": "0", + "product_name": "Pycom Universal IP67 Case for Pycom boards", + "product_model": "", + "product_mpn": "ADA3690", + "product_master_category": "208", + "product_manufacturer": "Pycom", + "product_price": "19.95", + "product_shipping_weight": "99.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3690", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3931", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3931-00.jpg", + "image_is_video": "0", + "product_name": "Flanged Weatherproof Enclosure With PG-7 Cable Glands", + "product_model": "", + "product_mpn": "ADA3931", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "141.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3931", + "product_stock": "43", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3963", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3963-06.jpg", + "image_is_video": "0", + "product_name": "NeoTrellis M4 Acrylic Enclosure Kit", + "product_model": "", + "product_mpn": "ADA3963", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "97.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3963", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4013", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4013-01.jpg", + "image_is_video": "0", + "product_name": "Clear Acrylic Lens Holder + Hardware Kit for HalloWing", + "product_model": "", + "product_mpn": "ADA4013", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4013", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4020", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4020-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoTrellis M4 with Enclosure and Buttons Kit Pack", + "product_model": "", + "product_mpn": "ADA4020", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "172.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4020", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4146", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4146-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyPortal Desktop Stand Enclosure Kit", + "product_model": "", + "product_mpn": "ADA4146", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "48.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4146", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4238", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4238-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyGamer Acrylic Enclosure Kit", + "product_model": "", + "product_mpn": "ADA4238", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "43.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4238", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4330", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4330-02.jpg", + "image_is_video": "1", + "product_name": "Clear Acrylics and Hardware Kit for Monster M4sk", + "product_model": "", + "product_mpn": "ADA4330", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4330", + "product_stock": "84", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4339", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4339-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 4x4 Trellis Feather Acrylic Enclosure + Hardware Kit", + "product_model": "", + "product_mpn": "ADA4339", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "82.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4339", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4352", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4352-08.jpg", + "image_is_video": "1", + "product_name": "Adafruit 4x4 NeoTrellis Feather M4 Kit Pack", + "product_model": "", + "product_mpn": "ADA4352", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "45.95", + "product_shipping_weight": "132.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4352", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "45.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "41.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "36.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4372", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4372-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 8x8 Trellis Feather M4 Acrylic Enclosure + Hardware Kit", + "product_model": "", + "product_mpn": "ADA4372", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "214.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4372", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4435", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4435-03.jpg", + "image_is_video": "0", + "product_name": "DIN Rail Generic PCB Holder - 50x80mm", + "product_model": "", + "product_mpn": "ADA4435", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "34.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4435", + "product_stock": "6", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4490", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4490-06.jpg", + "image_is_video": "0", + "product_name": "Plastic Translucent Enclosure for Metro or Arduino", + "product_model": "LEGO Compatible", + "product_mpn": "ADA4490", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "31.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4490", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4807", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4807-00.jpg", + "image_is_video": "0", + "product_name": "Acrylic + Hardware Kit for Adafruit MagTag", + "product_model": "", + "product_mpn": "ADA4807", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4807", + "product_stock": "in stock", + "products_hts": "3926.90.9985", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4962", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4962-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit FunHouse Mounting Plate and Yellow Brick Stand", + "product_model": "", + "product_mpn": "ADA4962", + "product_master_category": "208", + "product_manufacturer": "Adafruit", + "product_price": "4.50", + "product_shipping_weight": "33.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4962", + "product_stock": "in stock", + "products_hts": "3920.51.1100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2230", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2230-00.jpg", + "image_is_video": "0", + "product_name": "Extruded Aluminum Enclosure Box - 94mm x 83mm x 30mm", + "product_model": "", + "product_mpn": "ADA2230", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "127.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2230", + "product_stock": "in stock", + "products_hts": "7616.99.5190", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1471", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1471-00.jpg", + "image_is_video": "0", + "product_name": "Large Tin With Clear Top Window", + "product_model": "", + "product_mpn": "ADA1471", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "165.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1471", + "product_stock": "26", + "products_hts": "7326.90.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "903", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/903-00.jpg", + "image_is_video": "0", + "product_name": "Small Plastic Project Enclosure - Weatherproof with Clear Top", + "product_model": "", + "product_mpn": "ADA903", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "136.0", + "product_url": "https:\/\/www.adafruit.com\/product\/903", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "905", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/905-00.jpg", + "image_is_video": "0", + "product_name": "Large Plastic Project Enclosure - Weatherproof with Clear Top", + "product_model": "", + "product_mpn": "ADA905", + "product_master_category": "208", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "346.1", + "product_url": "https:\/\/www.adafruit.com\/product\/905", + "product_stock": "22", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1584", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1584-00.jpg", + "image_is_video": "0", + "product_name": "Bigshot Camera - DIY Digital Camera Kit", + "product_model": "", + "product_mpn": "ADA1584", + "product_master_category": "209", + "product_manufacturer": "Elenco", + "product_price": "75.00", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1584", + "product_stock": "-3", + "products_hts": "8525.40.4000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1672", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1672-00.jpg", + "image_is_video": "0", + "product_name": "KONSTRUKTOR - DIY Film Camera Kit", + "product_model": "", + "product_mpn": "ADA1672", + "product_master_category": "209", + "product_manufacturer": "Lomography", + "product_price": "35.00", + "product_shipping_weight": "562.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1672", + "product_stock": "-3", + "products_hts": "8525.40.4000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2306", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2306-07.jpg", + "image_is_video": "1", + "product_name": "Solar Powered SKULL Blinky LED Pendant Kit from Lumen Electronic", + "product_model": "", + "product_mpn": "ADA2306", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "22.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2306", + "product_stock": "-5", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2352", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2352-00.jpg", + "image_is_video": "1", + "product_name": "Solar Powered Owl Blinky LED Pendant Kit from Lumen Electronic", + "product_model": "", + "product_mpn": "ADA2352", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2352", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3091", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3091-00.jpg", + "image_is_video": "0", + "product_name": "Thames & Kosmos Wind Power Kit", + "product_model": "3.0", + "product_mpn": "ADA3091", + "product_master_category": "209", + "product_manufacturer": "Thames & Kosmos", + "product_price": "54.95", + "product_shipping_weight": "1,069.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3091", + "product_stock": "0", + "products_hts": "9503.00.0090", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3256", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3256-05.jpg", + "image_is_video": "0", + "product_name": "Kano Screen Kit", + "product_model": "", + "product_mpn": "ADA3256", + "product_master_category": "209", + "product_manufacturer": "Kano", + "product_price": "149.95", + "product_shipping_weight": "1,353.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3256", + "product_stock": "-3", + "products_hts": "8531.20.00.20", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3257", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3257-09.jpg", + "image_is_video": "0", + "product_name": "Kano Computer Kit with Raspberry Pi 3", + "product_model": "", + "product_mpn": "ADA3257", + "product_master_category": "209", + "product_manufacturer": "Kano", + "product_price": "149.95", + "product_shipping_weight": "923.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3257", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3337", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3337-00.jpg", + "image_is_video": "0", + "product_name": "BlocklyProp Starter Kit", + "product_model": "", + "product_mpn": "ADA3337", + "product_master_category": "209", + "product_manufacturer": "Parallax", + "product_price": "249.95", + "product_shipping_weight": "534.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3337", + "product_stock": "3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3459", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3459-02.jpg", + "image_is_video": "0", + "product_name": "Star Simpson's Circuit Classics Stepped Tone Generator", + "product_model": "", + "product_mpn": "ADA3459", + "product_master_category": "209", + "product_manufacturer": "Circuit Classics", + "product_price": "34.95", + "product_shipping_weight": "285.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3459", + "product_stock": "10", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3460", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3460-02.jpg", + "image_is_video": "0", + "product_name": "Star Simpson's Circuit Classics Bargraph Voltage Indicator", + "product_model": "", + "product_mpn": "ADA3460", + "product_master_category": "209", + "product_manufacturer": "Circuit Classics", + "product_price": "34.95", + "product_shipping_weight": "278.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3460", + "product_stock": "15", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3461", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3461-02.jpg", + "image_is_video": "1", + "product_name": "Star Simpson's Circuit Classics - Dual LED Flasher Kit", + "product_model": "", + "product_mpn": "ADA3461", + "product_master_category": "209", + "product_manufacturer": "Circuit Classics", + "product_price": "34.95", + "product_shipping_weight": "247.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3461", + "product_stock": "18", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3512", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3512-04.jpg", + "image_is_video": "0", + "product_name": "MyMiniRaceCar Project Pack - Featuring TE & Digi-Key", + "product_model": "", + "product_mpn": "ADA3512", + "product_master_category": "209", + "product_manufacturer": "Adafruit", + "product_price": "94.95", + "product_shipping_weight": "598.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3512", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "94.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "85.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3542", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3542-05.jpg", + "image_is_video": "0", + "product_name": "Humble Velocipede Crankshaft Kit", + "product_model": "", + "product_mpn": "ADA3542", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "36.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3542", + "product_stock": "-3", + "products_hts": "9503.90.0030", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3652", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3652-00.jpg", + "image_is_video": "0", + "product_name": "Humble Velocipede Ligaments Kit", + "product_model": "", + "product_mpn": "ADA3652", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "44.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3652", + "product_stock": "15", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3728", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3728-08.jpg", + "image_is_video": "0", + "product_name": "Kano Computer Kit Complete", + "product_model": "", + "product_mpn": "ADA3728", + "product_master_category": "209", + "product_manufacturer": "Kano", + "product_price": "224.95", + "product_shipping_weight": "2,129.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3728", + "product_stock": "-3", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4071", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4071-02.jpg", + "image_is_video": "0", + "product_name": "Calliope Mini", + "product_model": "", + "product_mpn": "ADA4071", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "90.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4071", + "product_stock": "7", + "products_hts": "8542.90.0000", + "products_coo": "DE", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4088", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4088-01.jpg", + "image_is_video": "0", + "product_name": "Kano Computer Kit with Touch Screen", + "product_model": "", + "product_mpn": "ADA4088", + "product_master_category": "209", + "product_manufacturer": "Kano", + "product_price": "279.00", + "product_shipping_weight": "2,118.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4088", + "product_stock": "-1", + "products_hts": "8542.32.0071", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4141", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4141-02.jpg", + "image_is_video": "0", + "product_name": "Pimoroni MINI.MU Glove Kit - without micro:bit", + "product_model": "", + "product_mpn": "ADA4141", + "product_master_category": "209", + "product_manufacturer": "Pimoroni", + "product_price": "34.95", + "product_shipping_weight": "207.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4141", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4223", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4223-01.jpg", + "image_is_video": "0", + "product_name": "4-H Grow Your Own Clovers Kit", + "product_model": "", + "product_mpn": "ADA4223", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "72.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4223", + "product_stock": "34", + "products_hts": "0604.20.0080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4241", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4241-02.jpg", + "image_is_video": "0", + "product_name": "4-H Grow Your Own Clovers Kit with Circuit Playground Express", + "product_model": "Soil Sensor Mini Kit", + "product_mpn": "ADA4241", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "212.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4241", + "product_stock": "34", + "products_hts": "1209.22.4095", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4362", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4362-02.jpg", + "image_is_video": "0", + "product_name": "Bots! by Kathy Ceceri - Book and Parts Bundle", + "product_model": "", + "product_mpn": "ADA4362", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "758.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4362", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4550", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4550-01.jpg", + "image_is_video": "0", + "product_name": "Squishy Circuits Standard Kit", + "product_model": "", + "product_mpn": "ADA4550", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "747.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4550", + "product_stock": "4", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4809", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4809-02.jpg", + "image_is_video": "1", + "product_name": "DIY \"Be a Unicorn\" Light-Up Unicorn Headband Kit", + "product_model": "", + "product_mpn": "ADA4809", + "product_master_category": "209", + "product_manufacturer": "TechnoChic", + "product_price": "12.50", + "product_shipping_weight": "77.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4809", + "product_stock": "43", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4810", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4810-02.jpg", + "image_is_video": "1", + "product_name": "DIY Light Up Blinky Bow Ties Kit - 10 Pack", + "product_model": "", + "product_mpn": "ADA4810", + "product_master_category": "209", + "product_manufacturer": "TechnoChic", + "product_price": "19.95", + "product_shipping_weight": "84.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4810", + "product_stock": "49", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4837", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4837-02.jpg", + "image_is_video": "0", + "product_name": "DIY \"Watch Me Sparkle\" Light-Up Tote Bag Kit", + "product_model": "", + "product_mpn": "ADA4837", + "product_master_category": "209", + "product_manufacturer": "TechnoChic", + "product_price": "18.50", + "product_shipping_weight": "184.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4837", + "product_stock": "17", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4838", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4838-03.jpg", + "image_is_video": "0", + "product_name": "DIY \"Twinkling Tutu\" Light-Up Tutu Kit", + "product_model": "", + "product_mpn": "ADA4838", + "product_master_category": "209", + "product_manufacturer": "TechnoChic", + "product_price": "19.95", + "product_shipping_weight": "371.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4838", + "product_stock": "35", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4842", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4842-02.jpg", + "image_is_video": "1", + "product_name": "BBC Doctor Who HiFive Inventor - Computer Only", + "product_model": "", + "product_mpn": "ADA4842", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "0.00", + "product_shipping_weight": "109.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4842", + "product_stock": "-3", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4843", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4843-18.jpg", + "image_is_video": "0", + "product_name": "BBC Doctor Who HiFive Inventor Kit - Complete Coding Kit", + "product_model": "", + "product_mpn": "ADA4843", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "231.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4843", + "product_stock": "95", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1307", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1307-00.jpg", + "image_is_video": "0", + "product_name": "Bare Conductive Greeting Card Kit", + "product_model": "", + "product_mpn": "ADA1307", + "product_master_category": "209", + "product_manufacturer": "Bare Conductive", + "product_price": "19.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1307", + "product_stock": "-3", + "products_hts": "3206.49.4000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1402", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1402-00.jpg", + "image_is_video": "0", + "product_name": "Bare Conductive Greeting Card Kit - Classroom pack", + "product_model": "", + "product_mpn": "ADA1402", + "product_master_category": "209", + "product_manufacturer": "Bare Conductive", + "product_price": "99.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1402", + "product_stock": "-3", + "products_hts": "3206.49.4000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2317", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2317-03.jpg", + "image_is_video": "0", + "product_name": "Sylvia Super Awesome Project Book Add-On Pack w\/ Genuine Arduino", + "product_model": "", + "product_mpn": "ADA2317", + "product_master_category": "209", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "124.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2317", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1511", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1511-00.jpg", + "image_is_video": "0", + "product_name": "Thames & Kosmos Electronics Experiment Kit", + "product_model": "", + "product_mpn": "ADA1511", + "product_master_category": "209", + "product_manufacturer": "Thames & Kosmos", + "product_price": "34.95", + "product_shipping_weight": "362.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1511", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1728", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1728-00.jpg", + "image_is_video": "0", + "product_name": "Sew-Your-Own Owl Kit - Cynthia Treen Studio", + "product_model": "", + "product_mpn": "ADA1728", + "product_master_category": "209", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "85.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1728", + "product_stock": "-3", + "products_hts": "9503.00.0090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2123", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2123-02.jpg", + "image_is_video": "0", + "product_name": "DIY Gamer Kit from Technology Will Save Us", + "product_model": "", + "product_mpn": "ADA2123", + "product_master_category": "209", + "product_manufacturer": "Technology Will Save Us", + "product_price": "56.95", + "product_shipping_weight": "193.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2123", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "56.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "51.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "45.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "68", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/68-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Metro 328 Starter Pack", + "product_model": "", + "product_mpn": "ADA68", + "product_master_category": "209", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "344.9", + "product_url": "https:\/\/www.adafruit.com\/product\/68", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1117", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1117-00.jpg", + "image_is_video": "0", + "product_name": "Motor Kit for Kinetic Creatures", + "product_model": "", + "product_mpn": "ADA1117", + "product_master_category": "210", + "product_manufacturer": "Kinetic Creatures", + "product_price": "24.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1117", + "product_stock": "-3", + "products_hts": "8501.10.4060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1102", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1102-00.jpg", + "image_is_video": "0", + "product_name": "Rory the Rhino - Kinetic Creatures", + "product_model": "", + "product_mpn": "ADA1102", + "product_master_category": "210", + "product_manufacturer": "Kinetic Creatures", + "product_price": "49.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1102", + "product_stock": "12", + "products_hts": "9503.90.0030", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1101", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1101-00.jpg", + "image_is_video": "0", + "product_name": "Geno the Giraffe - Kinetic Creatures", + "product_model": "", + "product_mpn": "ADA1101", + "product_master_category": "210", + "product_manufacturer": "Kinetic Creatures", + "product_price": "49.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1101", + "product_stock": "-3", + "products_hts": "9503.90.0030", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1100", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1100-00.jpg", + "image_is_video": "0", + "product_name": "Elly the Elephant - Kinetic Creatures", + "product_model": "", + "product_mpn": "ADA1100", + "product_master_category": "210", + "product_manufacturer": "Kinetic Creatures", + "product_price": "39.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1100", + "product_stock": "-3", + "products_hts": "9503.90.0030", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1464", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1464-00.jpg", + "image_is_video": "0", + "product_name": "Goldie Blox and the Spinning Machine", + "product_model": "", + "product_mpn": "ADA1464", + "product_master_category": "211", + "product_manufacturer": "Goldie Blox", + "product_price": "29.99", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1464", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1595", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1595-00.jpg", + "image_is_video": "0", + "product_name": "Goldie Blox and the Parade Float", + "product_model": "", + "product_mpn": "ADA1595", + "product_master_category": "211", + "product_manufacturer": "Goldie Blox", + "product_price": "19.99", + "product_shipping_weight": "521.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1595", + "product_stock": "0", + "products_hts": "9503.00.00.90", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2408", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2408-08.jpg", + "image_is_video": "0", + "product_name": "Goldie Blox and the Movie Machine", + "product_model": "", + "product_mpn": "ADA2408", + "product_master_category": "211", + "product_manufacturer": "Goldie Blox", + "product_price": "29.95", + "product_shipping_weight": "725.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2408", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2409", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2409-08.jpg", + "image_is_video": "0", + "product_name": "Goldie Blox Action Figure with Zipline", + "product_model": "", + "product_mpn": "ADA2409", + "product_master_category": "211", + "product_manufacturer": "Goldie Blox", + "product_price": "24.95", + "product_shipping_weight": "265.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2409", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2405", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2405-08.jpg", + "image_is_video": "0", + "product_name": "Goldie Blox and the Builder's Survival Kit", + "product_model": "", + "product_mpn": "ADA2405", + "product_master_category": "211", + "product_manufacturer": "Goldie Blox", + "product_price": "59.95", + "product_shipping_weight": "1,270.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2405", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1765", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1765-00.jpg", + "image_is_video": "0", + "product_name": "Goldie Blox and the Dunk Tank", + "product_model": "", + "product_mpn": "ADA1765", + "product_master_category": "211", + "product_manufacturer": "Goldie Blox", + "product_price": "19.99", + "product_shipping_weight": "479.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1765", + "product_stock": "-3", + "products_hts": "9503.00.00.90", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1383", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1383-00.jpg", + "image_is_video": "0", + "product_name": "Nixie Seven-Segment Art Scratch-Off Card", + "product_model": "", + "product_mpn": "ADA1383", + "product_master_category": "212", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "23.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1383", + "product_stock": "0", + "products_hts": "3206.49.4000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1428", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1428-00.jpg", + "image_is_video": "0", + "product_name": "Rainbow Highlighters by OTOTO", + "product_model": "", + "product_mpn": "ADA1428", + "product_master_category": "212", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1428", + "product_stock": "-3", + "products_hts": "9609.90.8000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3264", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3264-00.jpg", + "image_is_video": "0", + "product_name": "Arduboy", + "product_model": "", + "product_mpn": "ADA3264", + "product_master_category": "212", + "product_manufacturer": "SeeedStudio", + "product_price": "49.95", + "product_shipping_weight": "59.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3264", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3285", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3285-00.jpg", + "image_is_video": "0", + "product_name": "Makedo Toolkit for Cardboard Construction", + "product_model": "", + "product_mpn": "ADA3285", + "product_master_category": "212", + "product_manufacturer": "Makedo", + "product_price": "12.50", + "product_shipping_weight": "75.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3285", + "product_stock": "-10", + "products_hts": "9503.00.0090", + "products_coo": "AU", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3510", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3510-02.jpg", + "image_is_video": "0", + "product_name": "Makedo Scru Add-On Pack", + "product_model": "", + "product_mpn": "ADA3510", + "product_master_category": "212", + "product_manufacturer": "Makedo", + "product_price": "9.95", + "product_shipping_weight": "64.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3510", + "product_stock": "18", + "products_hts": "9503.00.0090", + "products_coo": "AU", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4047", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4047-00.jpg", + "image_is_video": "0", + "product_name": "HD Magnet Viewing Film - 50x40mm", + "product_model": "", + "product_mpn": "ADA4047", + "product_master_category": "212", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4047", + "product_stock": "15", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4476", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4476-00.jpg", + "image_is_video": "0", + "product_name": "Makedo Cardboard Construction Mini-Kit", + "product_model": "6 Scrus and Mini-Tool", + "product_mpn": "ADA4476", + "product_master_category": "212", + "product_manufacturer": "Makedo", + "product_price": "1.95", + "product_shipping_weight": "12.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4476", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1035", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1035-00.jpg", + "image_is_video": "0", + "product_name": "Colorforms Brush with Genius", + "product_model": "", + "product_mpn": "ADA1035", + "product_master_category": "212", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "223.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1035", + "product_stock": "0", + "products_hts": "9603.40.4060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1040", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1040-00.jpg", + "image_is_video": "0", + "product_name": "Crayola Crayons - Rainbow 8 Pack", + "product_model": "", + "product_mpn": "ADA1040", + "product_master_category": "212", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "47.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1040", + "product_stock": "73", + "products_hts": "9609.90.8000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1382", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1382-00.jpg", + "image_is_video": "0", + "product_name": "Pixel Art Scratch-Off Card", + "product_model": "", + "product_mpn": "ADA1382", + "product_master_category": "212", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "24.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1382", + "product_stock": "0", + "products_hts": "3206.49.4000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1556", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1556-01.jpg", + "image_is_video": "0", + "product_name": "The Laser Game: KHET 2.0", + "product_model": "", + "product_mpn": "ADA1556", + "product_master_category": "212", + "product_manufacturer": "Khet", + "product_price": "39.95", + "product_shipping_weight": "1,179.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1556", + "product_stock": "0", + "products_hts": "9503.00.00.90", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1435", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1435-00.jpg", + "image_is_video": "0", + "product_name": "CELESTRON FirstScope Telescope", + "product_model": "", + "product_mpn": "ADA1435", + "product_master_category": "212", + "product_manufacturer": "Celestron", + "product_price": "59.95", + "product_shipping_weight": "2,268.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1435", + "product_stock": "0", + "products_hts": "9503.90.0030", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "515", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/515-03.jpg", + "image_is_video": "0", + "product_name": "Conductive Silver Ink Pen - Micro Tip", + "product_model": "CW2200MTP", + "product_mpn": "ADA515", + "product_master_category": "212", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "38.2", + "product_url": "https:\/\/www.adafruit.com\/product\/515", + "product_stock": "26", + "products_hts": "3208.90.9100", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2284", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2284-04.jpg", + "image_is_video": "0", + "product_name": "Werkstatt-\u00d81 Kit from Moog", + "product_model": "", + "product_mpn": "ADA2284", + "product_master_category": "212", + "product_manufacturer": "Moog", + "product_price": "289.00", + "product_shipping_weight": "1,088.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2284", + "product_stock": "-3", + "products_hts": "9207.10.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "514", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/514-03.jpg", + "image_is_video": "0", + "product_name": "Conductive Silver Ink Pen - Standard Tip", + "product_model": "CW2200STP", + "product_mpn": "ADA514", + "product_master_category": "212", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "38.7", + "product_url": "https:\/\/www.adafruit.com\/product\/514", + "product_stock": "0", + "products_hts": "3208.90.9100", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1671", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1671-00.jpg", + "image_is_video": "0", + "product_name": "Brushbot Party Pack", + "product_model": "", + "product_mpn": "ADA1671", + "product_master_category": "212", + "product_manufacturer": "Maker Shed", + "product_price": "34.99", + "product_shipping_weight": "200.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1671", + "product_stock": "-3", + "products_hts": "9603.40.4060", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3920", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3920-05.jpg", + "image_is_video": "0", + "product_name": "Smore Magazine", + "product_model": "Aug\/Sept 2018 Edition", + "product_mpn": "ADA3920", + "product_master_category": "213", + "product_manufacturer": "Smore", + "product_price": "8.95", + "product_shipping_weight": "206.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3920", + "product_stock": "47", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3976", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3976-01.jpg", + "image_is_video": "0", + "product_name": "Grace Hopper: Queen of Computer Code by Laurie Wallmark", + "product_model": "Illustrated by Katy Wu", + "product_mpn": "ADA3976", + "product_master_category": "213", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "496.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3976", + "product_stock": "3", + "products_hts": "4901.99.0050", + "products_coo": "CA", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1630", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1630-00.jpg", + "image_is_video": "0", + "product_name": "LEO the Maker Prince - Journeys in 3D Printing by Carla Diana", + "product_model": "", + "product_mpn": "ADA1630", + "product_master_category": "213", + "product_manufacturer": null, + "product_price": "14.99", + "product_shipping_weight": "327.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1630", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.49", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2316", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2316-00.jpg", + "image_is_video": "0", + "product_name": "Sylvia's Super Awesome Project Book - Super Simple Arduino!", + "product_model": "", + "product_mpn": "ADA2316", + "product_master_category": "213", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "126.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2316", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1751", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1751-00.jpg", + "image_is_video": "0", + "product_name": "LG LP097QX1 - iPad 3\/4 Retina Display", + "product_model": "", + "product_mpn": "ADA1751", + "product_master_category": "214", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "356.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1751", + "product_stock": "90", + "products_hts": "8531.20.0020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1716", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1716-00.jpg", + "image_is_video": "0", + "product_name": "Qualia Bare Driver Board for LP097QX1 Display", + "product_model": "", + "product_mpn": "ADA1716", + "product_master_category": "214", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "22.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1716", + "product_stock": "0", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1652", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1652-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Qualia 9.7\" DisplayPort Monitor - 2048x1536 Resolution", + "product_model": "", + "product_mpn": "ADA1652", + "product_master_category": "214", + "product_manufacturer": "Adafruit", + "product_price": "224.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1652", + "product_stock": "-1", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "224.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "202.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "179.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1676", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1676-00.jpg", + "image_is_video": "0", + "product_name": "Resistive Touchscreen Overlay - 7\" diag. 165mm x 105mm - 4 Wire", + "product_model": "", + "product_mpn": "ADA1676", + "product_master_category": "215", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "153.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1676", + "product_stock": "68", + "products_hts": "7017.90.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2819", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2819-00.jpg", + "image_is_video": "0", + "product_name": "Mini HDMI Plug to Standard HDMI Jack Adapter", + "product_model": "", + "product_mpn": "ADA2819", + "product_master_category": "215", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2819", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3305", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3305-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit TFT 50pin to 40pin + AR1100 Touchscreen Adapter", + "product_model": "", + "product_mpn": "ADA3305", + "product_master_category": "215", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3305", + "product_stock": "14", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3330", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3330-04.jpg", + "image_is_video": "1", + "product_name": "Large Liquid Crystal Light Valve - Controllable Shutter Glass", + "product_model": "", + "product_mpn": "ADA3330", + "product_master_category": "215", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "49.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3330", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3627", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3627-04.jpg", + "image_is_video": "1", + "product_name": "Small Liquid Crystal Light Valve - Controllable Shutter Glass", + "product_model": "", + "product_mpn": "ADA3627", + "product_master_category": "215", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "17.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3627", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1753", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1753-00.jpg", + "image_is_video": "0", + "product_name": "Adjustable Bent-Wire Stand for 8-10\" Tablets and Displays", + "product_model": "", + "product_mpn": "ADA1753", + "product_master_category": "215", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "133.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1753", + "product_stock": "53", + "products_hts": "7326.20.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1679", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1679-00.jpg", + "image_is_video": "0", + "product_name": "Adjustable Bent-Wire Stand - up to 7\" Tablets and Small Screens", + "product_model": "", + "product_mpn": "ADA1679", + "product_master_category": "215", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "94.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1679", + "product_stock": "88", + "products_hts": "7326.20.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "252", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/252-00.jpg", + "image_is_video": "0", + "product_name": "Analog panel meter", + "product_model": "50uA", + "product_mpn": "ADA252", + "product_master_category": "215", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "101.3", + "product_url": "https:\/\/www.adafruit.com\/product\/252", + "product_stock": "-3", + "products_hts": "9030.33.0040", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3057", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3057-01.jpg", + "image_is_video": "0", + "product_name": "High Temperature Polyimide Tape - 1cm wide x 33 meter roll", + "product_model": "", + "product_mpn": "ADA3057", + "product_master_category": "221", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "31.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3057", + "product_stock": "in stock", + "products_hts": "7409.11.5050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4607", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4607-00.jpg", + "image_is_video": "0", + "product_name": "Copper Foil Sheet with Conductive Adhesive - 12\" x12\" Sheet", + "product_model": "", + "product_mpn": "ADA4607", + "product_master_category": "221", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4607", + "product_stock": "in stock", + "products_hts": "7409.11.5050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4825", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4825-05.jpg", + "image_is_video": "0", + "product_name": "LOOMIA Prototyping Packs & Parts - Quick-Start Pack", + "product_model": "", + "product_mpn": "ADA4825", + "product_master_category": "221", + "product_manufacturer": null, + "product_price": "189.00", + "product_shipping_weight": "447.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4825", + "product_stock": "32", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1305", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1305-00.jpg", + "image_is_video": "0", + "product_name": "Bare Conductive Paint - 50mL", + "product_model": "", + "product_mpn": "ADA1305", + "product_master_category": "221", + "product_manufacturer": "Bare Conductive", + "product_price": "34.95", + "product_shipping_weight": "102.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1305", + "product_stock": "0", + "products_hts": "3206.49.4000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1310", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1310-00.jpg", + "image_is_video": "0", + "product_name": "ITO (Indium Tin Oxide) Coated Glass - 50mm x 50mm", + "product_model": "", + "product_mpn": "ADA1310", + "product_master_category": "221", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "18.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1310", + "product_stock": "in stock", + "products_hts": "7017.90.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1306", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1306-03.jpg", + "image_is_video": "0", + "product_name": "Bare Conductive Paint Pen - 10mL", + "product_model": "", + "product_mpn": "ADA1306", + "product_master_category": "221", + "product_manufacturer": "Bare Conductive", + "product_price": "12.50", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1306", + "product_stock": "0", + "products_hts": "3206.49.4000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1309", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1309-00.jpg", + "image_is_video": "0", + "product_name": "ITO (Indium Tin Oxide) Coated PET Plastic - 100mm x 200mm", + "product_model": "", + "product_mpn": "ADA1309", + "product_master_category": "221", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "110.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1309", + "product_stock": "in stock", + "products_hts": "3920.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "776", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/776-00.jpg", + "image_is_video": "0", + "product_name": "Toroid Slip Ring - 2.1\" OD 1\/2\" ID, 6 wires, max 240V @ 5A", + "product_model": "", + "product_mpn": "ADA776", + "product_master_category": "223", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/776", + "product_stock": "0", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1196", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1196-00.jpg", + "image_is_video": "0", + "product_name": "Slip Ring with Flange - 22mm diameter, 12 wires, max 240V @ 2A", + "product_model": "", + "product_mpn": "ADA1196", + "product_master_category": "223", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "25.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1196", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1662", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1662-00.jpg", + "image_is_video": "0", + "product_name": "Resistive Touchscreen Extension Cable - 20cm \/ 8\" - 1mm Pitch", + "product_model": "", + "product_mpn": "ADA1662", + "product_master_category": "224", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1662", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2676", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2676-00.jpg", + "image_is_video": "0", + "product_name": "USB Power & Data Signal Extender - 30+ meters \/ 100+ feet", + "product_model": "", + "product_mpn": "ADA2676", + "product_master_category": "224", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "81.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2676", + "product_stock": "19", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2452", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2452-00.jpg", + "image_is_video": "0", + "product_name": "Panavise Multi-Purpose Work Center", + "product_model": "PV-350", + "product_mpn": "ADA2452", + "product_master_category": "225", + "product_manufacturer": "Panavise", + "product_price": "109.95", + "product_shipping_weight": "2,540.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2452", + "product_stock": "1", + "products_hts": "8205.70.0010", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2474", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2474-05.jpg", + "image_is_video": "0", + "product_name": "Super Fancy Third Hand Kit from Hobby Creek with Four Arms", + "product_model": "", + "product_mpn": "ADA2474", + "product_master_category": "225", + "product_manufacturer": "Hobby Creek", + "product_price": "49.95", + "product_shipping_weight": "573.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2474", + "product_stock": "-3", + "products_hts": "8205.70.0010", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2579", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2579-09.jpg", + "image_is_video": "1", + "product_name": "Lockitron Motorized Door Lock Body", + "product_model": "", + "product_mpn": "ADA2579", + "product_master_category": "225", + "product_manufacturer": "Lockitron", + "product_price": "44.95", + "product_shipping_weight": "545.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2579", + "product_stock": "0", + "products_hts": "8301.60.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2740", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2740-03.jpg", + "image_is_video": "0", + "product_name": "Mini Hand from Hobby Creek with Two Arms", + "product_model": "", + "product_mpn": "ADA2740", + "product_master_category": "225", + "product_manufacturer": "Hobby Creek", + "product_price": "29.95", + "product_shipping_weight": "287.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2740", + "product_stock": "-3", + "products_hts": "8205.70.0010", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3019", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3019-11.jpg", + "image_is_video": "0", + "product_name": "Third Hand Pana Hand Workstation Add-On for Panavise", + "product_model": "", + "product_mpn": "ADA3019", + "product_master_category": "225", + "product_manufacturer": "Hobby Creek", + "product_price": "39.95", + "product_shipping_weight": "525.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3019", + "product_stock": "-3", + "products_hts": "8205.70.0010", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3197", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3197-00.jpg", + "image_is_video": "0", + "product_name": "Stickvise PCB Vise", + "product_model": "", + "product_mpn": "ADA3197", + "product_master_category": "225", + "product_manufacturer": "Stickvise", + "product_price": "32.95", + "product_shipping_weight": "179.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3197", + "product_stock": "in stock", + "products_hts": "8205.70.0090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "32.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3198", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3198-02.jpg", + "image_is_video": "0", + "product_name": "Stickvise High Temperature PTFE Jaws (pair)", + "product_model": "", + "product_mpn": "ADA3198", + "product_master_category": "225", + "product_manufacturer": "Stickvise", + "product_price": "16.50", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3198", + "product_stock": "49", + "products_hts": "8205.70.0090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3299", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3299-00.jpg", + "image_is_video": "0", + "product_name": "Black Nylon Machine Screw and Stand-off Set \u2013 M2.5 Thread", + "product_model": "", + "product_mpn": "ADA3299", + "product_master_category": "225", + "product_manufacturer": "Adafruit", + "product_price": "16.95", + "product_shipping_weight": "59.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3299", + "product_stock": "in stock", + "products_hts": "7318.15.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3363", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3363-13.jpg", + "image_is_video": "0", + "product_name": "FIDO2 U2F Security Key - U2F USB 2-Step Authentication Security", + "product_model": "", + "product_mpn": "ADA3363", + "product_master_category": "225", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "7.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3363", + "product_stock": "in stock", + "products_hts": "8523529000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3373", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3373-01.jpg", + "image_is_video": "0", + "product_name": "Hobby Creek Magnetic Helper Hand", + "product_model": "", + "product_mpn": "ADA3373", + "product_master_category": "225", + "product_manufacturer": "Hobby Creek", + "product_price": "15.95", + "product_shipping_weight": "287.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3373", + "product_stock": "-3", + "products_hts": "8205.70.0010", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3445", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3445-05.jpg", + "image_is_video": "0", + "product_name": "iFixit Essential Electronics Toolkit", + "product_model": "", + "product_mpn": "ADA3445", + "product_master_category": "225", + "product_manufacturer": "iFixit", + "product_price": "24.99", + "product_shipping_weight": "358.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3445", + "product_stock": "in stock", + "products_hts": "8206.00.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.49", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3529", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3529-03.jpg", + "image_is_video": "0", + "product_name": "Hobby Creek Mag Hand Professional Workstation", + "product_model": "", + "product_mpn": "ADA3529", + "product_master_category": "225", + "product_manufacturer": "Hobby Creek", + "product_price": "64.95", + "product_shipping_weight": "2,281.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3529", + "product_stock": "20", + "products_hts": "8205.70.0010", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3544", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3544-03.jpg", + "image_is_video": "1", + "product_name": "Miniature Desktop Fan - 12V", + "product_model": "", + "product_mpn": "ADA3544", + "product_master_category": "225", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "286.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3544", + "product_stock": "-3", + "products_hts": "8473.30.5100", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3658", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3658-00.jpg", + "image_is_video": "0", + "product_name": "White Nylon Machine Screw and Stand-off Set \u2013 M2.5 Thread", + "product_model": "", + "product_mpn": "ADA3658", + "product_master_category": "225", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "61.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3658", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3718", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3718-05.jpg", + "image_is_video": "0", + "product_name": "Heavy Stainless Steel Circuit Board Holder", + "product_model": "", + "product_mpn": "ADA3718", + "product_master_category": "225", + "product_manufacturer": null, + "product_price": "16.95", + "product_shipping_weight": "454.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3718", + "product_stock": "in stock", + "products_hts": "8203.20.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3790", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3790-00.jpg", + "image_is_video": "0", + "product_name": "NumWorks Graphing Calculator", + "product_model": "", + "product_mpn": "ADA3790", + "product_master_category": "225", + "product_manufacturer": "NumWorks", + "product_price": "124.95", + "product_shipping_weight": "243.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3790", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3791", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3791-00.jpg", + "image_is_video": "0", + "product_name": "Fully Adjustable PCB Clamp Holder", + "product_model": "Pro's Kit SN-390", + "product_mpn": "ADA3791", + "product_master_category": "225", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "645.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3791", + "product_stock": "in stock", + "products_hts": "8205.70.0010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4685", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4685-01.jpg", + "image_is_video": "0", + "product_name": "Black Nylon Machine Screw and Stand-off Set \u2013 M3 Thread", + "product_model": "", + "product_mpn": "ADA4685", + "product_master_category": "225", + "product_manufacturer": null, + "product_price": "16.95", + "product_shipping_weight": "75.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4685", + "product_stock": "in stock", + "products_hts": "4819.10.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4705", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4705-01.jpg", + "image_is_video": "0", + "product_name": "Stickvise Part Lifter (pack of 2)", + "product_model": "", + "product_mpn": "ADA4705", + "product_master_category": "225", + "product_manufacturer": "Stickvise", + "product_price": "16.50", + "product_shipping_weight": "65.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4705", + "product_stock": "in stock", + "products_hts": "8205.70.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1797", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1797-01.jpg", + "image_is_video": "0", + "product_name": "Octopart Pocket Electronics Reference PCB", + "product_model": "", + "product_mpn": "ADA1797", + "product_master_category": "225", + "product_manufacturer": "Adafruit", + "product_price": "9.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1797", + "product_stock": "0", + "products_hts": "8534.00.0040", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.10", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3769", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3769-00.jpg", + "image_is_video": "0", + "product_name": "Snap-on Hub for TT Motor", + "product_model": "", + "product_mpn": "ADA3769", + "product_master_category": "227", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3769", + "product_stock": "0", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3810", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3810-03.jpg", + "image_is_video": "0", + "product_name": "DC Gearbox \"TT\" Motor to LEGO\u00ae compatible Cross Axle", + "product_model": "", + "product_mpn": "ADA3810", + "product_master_category": "227", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3810", + "product_stock": "in stock", + "products_hts": "8501.10.4020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3896", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3896-00.jpg", + "image_is_video": "0", + "product_name": "3-Bladed Trifoil Propeller Fan for DC Motor", + "product_model": "", + "product_mpn": "ADA3896", + "product_master_category": "227", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3896", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1166", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1166-00.jpg", + "image_is_video": "0", + "product_name": "OpenBeam Precut Machinist Kit - Silver Aluminum", + "product_model": "", + "product_mpn": "ADA1166", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "199.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1166", + "product_stock": "-3", + "products_hts": "7616.99.5090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1169", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1169-00.jpg", + "image_is_video": "0", + "product_name": "OpenBeam Precut Machinist Kit - Black Aluminum", + "product_model": "", + "product_mpn": "ADA1169", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "199.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1169", + "product_stock": "-3", + "products_hts": "7616.99.5090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1113", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1113-00.jpg", + "image_is_video": "0", + "product_name": "OpenBeam Starter Kit - Silver Aluminum", + "product_model": "", + "product_mpn": "ADA1113", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "79.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1113", + "product_stock": "-3", + "products_hts": "7616.99.5090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1114", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1114-00.jpg", + "image_is_video": "0", + "product_name": "OpenBeam Starter Kit - Black Aluminum", + "product_model": "", + "product_mpn": "ADA1114", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "79.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1114", + "product_stock": "-3", + "products_hts": "7616.99.5090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1274", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1274-00.jpg", + "image_is_video": "0", + "product_name": "OpenBeam Advanced Precut Kit - Silver Aluminum", + "product_model": "", + "product_mpn": "ADA1274", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "149.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1274", + "product_stock": "-3", + "products_hts": "7616.99.5090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1275", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1275-00.jpg", + "image_is_video": "0", + "product_name": "OpenBeam Advanced Precut Kit - Black Aluminum", + "product_model": "", + "product_mpn": "ADA1275", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "149.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1275", + "product_stock": "-3", + "products_hts": "7616.99.5090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1302", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1302-00.jpg", + "image_is_video": "0", + "product_name": "Slotted Aluminum Extrusion - 20mm x 40mm - 610mm long", + "product_model": "", + "product_mpn": "ADA1302", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1302", + "product_stock": "0", + "products_hts": "7604.21.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1229", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1229-00.jpg", + "image_is_video": "0", + "product_name": "Allen Wrench (Hex Key) - 2.5mm", + "product_model": "", + "product_mpn": "ADA1229", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1229", + "product_stock": "0", + "products_hts": "8204.11.0060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1217", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1217-00.jpg", + "image_is_video": "0", + "product_name": "Coupling Plate - 2 Holes - 20x20 Aluminum Extrusion", + "product_model": "", + "product_mpn": "ADA1217", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "7.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1217", + "product_stock": "9", + "products_hts": "7606.11.3060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1220", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1220-00.jpg", + "image_is_video": "0", + "product_name": "Cross-Plate for 2020 Aluminum Extrusion", + "product_model": "", + "product_mpn": "ADA1220", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "46.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1220", + "product_stock": "15", + "products_hts": "7606.11.3060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1216", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1216-00.jpg", + "image_is_video": "0", + "product_name": "Coupling Plate - 3 Holes - 20x20 Aluminum Extrusion", + "product_model": "", + "product_mpn": "ADA1216", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "11.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1216", + "product_stock": "19", + "products_hts": "7606.11.3060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1156", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1156-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Extrusion End Cap (for 20x20) - pack of 10", + "product_model": "", + "product_mpn": "ADA1156", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1156", + "product_stock": "40", + "products_hts": "3923.50.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1215", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1215-00.jpg", + "image_is_video": "0", + "product_name": "Plastic Hinge for 20x20 Aluminum Extrusion", + "product_model": "", + "product_mpn": "ADA1215", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1215", + "product_stock": "0", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1219", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1219-00.jpg", + "image_is_video": "0", + "product_name": "T-Plate for 2020 Aluminum Extrusion", + "product_model": "", + "product_mpn": "ADA1219", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "29.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1219", + "product_stock": "37", + "products_hts": "7606.11.3060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1160", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1160-00.jpg", + "image_is_video": "0", + "product_name": "Button Hex Machine Screw - M4 thread - 8mm long - pack of 50", + "product_model": "", + "product_mpn": "ADA1160", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "51.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1160", + "product_stock": "23", + "products_hts": "7318.14.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1257", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1257-00.jpg", + "image_is_video": "0", + "product_name": "Adjustable Angle Support for 2020 Aluminum Extrusion", + "product_model": "", + "product_mpn": "ADA1257", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "39.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1257", + "product_stock": "75", + "products_hts": "7616.99.5090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1159", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1159-00.jpg", + "image_is_video": "0", + "product_name": "Button Hex Machine Screw - M4 thread - 10mm long - pack of 50", + "product_model": "", + "product_mpn": "ADA1159", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "59.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1159", + "product_stock": "16", + "products_hts": "7318.14.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1158", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1158-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Extrusion Oval T-Nut for 20x20 - M4 Thread - pack of 50", + "product_model": "", + "product_mpn": "ADA1158", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "81.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1158", + "product_stock": "42", + "products_hts": "7318.16.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1155", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1155-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Extrusion Corner Brace Support (for 20x20)", + "product_model": "", + "product_mpn": "ADA1155", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1155", + "product_stock": "in stock", + "products_hts": "7616.99.5090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1259", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1259-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Extrusion Double Corner Brace Support (for 20x20)", + "product_model": "", + "product_mpn": "ADA1259", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "17.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1259", + "product_stock": "51", + "products_hts": "7616.99.5090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1218", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1218-00.jpg", + "image_is_video": "0", + "product_name": "L-Plate for 2020 Aluminum Extrusion", + "product_model": "", + "product_mpn": "ADA1218", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "28.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1218", + "product_stock": "58", + "products_hts": "7606.11.3060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1157", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1157-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Extrusion Slim T-Nut for 20x20 - M4 Thread - pack of 50", + "product_model": "", + "product_mpn": "ADA1157", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "59.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1157", + "product_stock": "48", + "products_hts": "7318.16.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1221", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1221-00.jpg", + "image_is_video": "0", + "product_name": "Slotted Aluminum Extrusion - 20mm x 20mm - 610mm long", + "product_model": "", + "product_mpn": "ADA1221", + "product_master_category": "228", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "272.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1221", + "product_stock": "68", + "products_hts": "7604.21.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2941", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2941-00.jpg", + "image_is_video": "0", + "product_name": "DC Motor in Micro Servo Body", + "product_model": "", + "product_mpn": "ADA2941", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "10.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2941", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3757", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3757-00.jpg", + "image_is_video": "0", + "product_name": "Skinny Wheel for TT DC Gearbox Motors", + "product_model": "", + "product_mpn": "ADA3757", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3757", + "product_stock": "in stock", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3763", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3763-00.jpg", + "image_is_video": "0", + "product_name": "Thin White Wheel for TT DC Gearbox Motors - 65mm Diameter", + "product_model": "", + "product_mpn": "ADA3763", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "33.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3763", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3766", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3766-00.jpg", + "image_is_video": "0", + "product_name": "Orange and Clear TT Motor Wheel for TT DC Gearbox Motor", + "product_model": "", + "product_mpn": "ADA3766", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3766", + "product_stock": "0", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3768", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3768-00.jpg", + "image_is_video": "0", + "product_name": "Motor Mount for TT Gearbox DC Motors - L-Bracket Type", + "product_model": "", + "product_mpn": "ADA3768", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "11.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3768", + "product_stock": "in stock", + "products_hts": "7326.90.8688", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3777", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3777-00.jpg", + "image_is_video": "0", + "product_name": "DC Gearbox Motor - \"TT Motor\" - 200RPM - 3 to 6VDC", + "product_model": "", + "product_mpn": "ADA3777", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "31.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3777", + "product_stock": "in stock", + "products_hts": "8501.10.4020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3801", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3801-01.jpg", + "image_is_video": "0", + "product_name": "TT Motor Bi-Metal Gearbox - 1:90 Gear Ratio", + "product_model": "", + "product_mpn": "ADA3801", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "35.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3801", + "product_stock": "in stock", + "products_hts": "8501.10.4020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3802", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3802-00.jpg", + "image_is_video": "0", + "product_name": "TT Motor All-Metal Gearbox - 1:90 Gear Ratio", + "product_model": "", + "product_mpn": "ADA3802", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "40.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3802", + "product_stock": "in stock", + "products_hts": "8501.10.4020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3815", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3815-03.jpg", + "image_is_video": "0", + "product_name": "LEGO compatible Brick Bracket for DC Gearbox \"TT\" Motor", + "product_model": "", + "product_mpn": "ADA3815", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "9.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3815", + "product_stock": "1", + "products_hts": "9006.99.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3843", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3843-03.jpg", + "image_is_video": "0", + "product_name": "DC Motor Plastic Mount - 130 Size \/ 20mm Diameter", + "product_model": "", + "product_mpn": "ADA3843", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3843", + "product_stock": "in stock", + "products_hts": "7326.90.8688", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3871", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3871-06.jpg", + "image_is_video": "1", + "product_name": "Mini Geared Pager Motor with Return Spring", + "product_model": "", + "product_mpn": "ADA3871", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3871", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3880", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3880-00.jpg", + "image_is_video": "1", + "product_name": "Eccentric Hub for TT Motors", + "product_model": "", + "product_mpn": "ADA3880", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3880", + "product_stock": "95", + "products_hts": "8501.10.6080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3881", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3881-03.jpg", + "image_is_video": "1", + "product_name": "Rotating Door Lock DC Motor", + "product_model": "", + "product_mpn": "ADA3881", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "62.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3881", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3910", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3910-05.jpg", + "image_is_video": "1", + "product_name": "Peristaltic Liquid Pump with Silicone Tubing - 5V to 6V DC Power", + "product_model": "", + "product_mpn": "ADA3910", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "105.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3910", + "product_stock": "in stock", + "products_hts": "8413.60.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.71", + "discounted_percent": "25", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4416", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4416-05.jpg", + "image_is_video": "1", + "product_name": "Geared DC Motor with Magnetic Encoder Outputs - 7 VDC 1:20 Ratio", + "product_model": "", + "product_mpn": "ADA4416", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "13.50", + "product_shipping_weight": "69.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4416", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4546", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4546-05.jpg", + "image_is_video": "0", + "product_name": "Submersible 3V DC Water Pump with 1 Meter Wire - Horizontal Type", + "product_model": "", + "product_mpn": "ADA4546", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "33.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4546", + "product_stock": "in stock", + "products_hts": "8413.60.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4547", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4547-04.jpg", + "image_is_video": "0", + "product_name": "Submersible 3V DC Water Pump - Vertical Type", + "product_model": "", + "product_mpn": "ADA4547", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "28.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4547", + "product_stock": "in stock", + "products_hts": "8413.60.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4638", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4638-05.jpg", + "image_is_video": "1", + "product_name": "N20 DC Motor with Magnetic Encoder - 6V with 1:50 Gear Ratio", + "product_model": "", + "product_mpn": "ADA4638", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4638", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4737", + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4639", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4639-07.jpg", + "image_is_video": "1", + "product_name": "N20 DC Motor with Magnetic Encoder - 6V with 1:100 Gear Ratio", + "product_model": "", + "product_mpn": "ADA4639", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4639", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4737", + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4640", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4640-05.jpg", + "image_is_video": "1", + "product_name": "N20 DC Motor with Magnetic Encoder - 6V with 1:150 Gear Ratio", + "product_model": "", + "product_mpn": "ADA4640", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4640", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4737", + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4641", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4641-06.jpg", + "image_is_video": "1", + "product_name": "N20 DC Motor with Magnetic Encoder - 6V with 1:298 Gear Ratio", + "product_model": "", + "product_mpn": "ADA4641", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4641", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4737", + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4699", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4699-06.jpg", + "image_is_video": "1", + "product_name": "Air Pump and Vacuum DC Motor - 4.5 V and 2.5 LPM", + "product_model": "ZR370-02PM", + "product_mpn": "ADA4699", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "61.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4699", + "product_stock": "22", + "products_hts": "8413.60.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4700", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4700-05.jpg", + "image_is_video": "1", + "product_name": "Air Pump and Vacuum DC Motor - 4.5V and 1.8 LPM", + "product_model": "ZR320-02PM", + "product_mpn": "ADA4700", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "61.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4700", + "product_stock": "in stock", + "products_hts": "8413.60.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4768", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4768-07.jpg", + "image_is_video": "1", + "product_name": "DYNAMIXEL Motor - AX-12A", + "product_model": "", + "product_mpn": "ADA4768", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "91.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4768", + "product_stock": "21", + "products_hts": "8479.89.9499", + "products_coo": "KR", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1201", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1201-01.jpg", + "image_is_video": "0", + "product_name": "Vibrating Mini Motor Disc", + "product_model": "", + "product_mpn": "ADA1201", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1201", + "product_stock": "in stock", + "products_hts": "8501.10.4020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "711", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/711-06.jpg", + "image_is_video": "0", + "product_name": "DC Toy \/ Hobby Motor - 130 Size", + "product_model": "", + "product_mpn": "ADA711", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "18.0", + "product_url": "https:\/\/www.adafruit.com\/product\/711", + "product_stock": "in stock", + "products_hts": "8501.10.4020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1150", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1150-07.jpg", + "image_is_video": "0", + "product_name": "Peristaltic Liquid Pump with Silicone Tubing - 12V DC Power", + "product_model": "", + "product_mpn": "ADA1150", + "product_master_category": "229", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "108.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1150", + "product_stock": "in stock", + "products_hts": "8481.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1195", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1195-04.jpg", + "image_is_video": "0", + "product_name": "Miniature Slip Ring - 12mm diameter, 12 wires, max 240V @ 2A", + "product_model": "", + "product_mpn": "ADA1195", + "product_master_category": "230", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "10.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1195", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "775", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/775-01.jpg", + "image_is_video": "0", + "product_name": "Miniature Slip Ring - 12mm diameter, 6 wires, max 240V @ 2A", + "product_model": "", + "product_mpn": "ADA775", + "product_master_category": "230", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/775", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "736", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/736-05.jpg", + "image_is_video": "0", + "product_name": "Slip Ring with Flange - 22mm diameter, 6 wires, max 240V @ 2A", + "product_model": "", + "product_mpn": "ADA736", + "product_master_category": "230", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "16.3", + "product_url": "https:\/\/www.adafruit.com\/product\/736", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "412", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/412-00.jpg", + "image_is_video": "0", + "product_name": "Small Push-Pull Solenoid - 12VDC", + "product_model": "", + "product_mpn": "ADA412", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "38.1", + "product_url": "https:\/\/www.adafruit.com\/product\/412", + "product_stock": "in stock", + "products_hts": "8505.90.7501", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "413", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/413-00.jpg", + "image_is_video": "0", + "product_name": "Large push-pull solenoid", + "product_model": "", + "product_mpn": "ADA413", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "132.1", + "product_url": "https:\/\/www.adafruit.com\/product\/413", + "product_stock": "in stock", + "products_hts": "8505.90.7501", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2776", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2776-07.jpg", + "image_is_video": "1", + "product_name": "Mini Push-Pull Solenoid - 5V", + "product_model": "", + "product_mpn": "ADA2776", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2776", + "product_stock": "0", + "products_hts": "8481.80.9005", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3872", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3872-04.jpg", + "image_is_video": "1", + "product_name": "5V Electromagnet - 2.5 Kg Holding Force", + "product_model": "P20\/15", + "product_mpn": "ADA3872", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "26.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3872", + "product_stock": "in stock", + "products_hts": "8505.90.7501", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3873", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3873-04.jpg", + "image_is_video": "1", + "product_name": "5V Electromagnet - 5 Kg Holding Force", + "product_model": "P25\/20", + "product_mpn": "ADA3873", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "59.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3873", + "product_stock": "in stock", + "products_hts": "8505.90.3000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3874", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3874-03.jpg", + "image_is_video": "1", + "product_name": "5V Electromagnet - 10 Kg Holding Force", + "product_model": "P30\/22", + "product_mpn": "ADA3874", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "86.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3874", + "product_stock": "in stock", + "products_hts": "8505.90.3000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3875", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3875-00.jpg", + "image_is_video": "1", + "product_name": "5V Electromagnet - 25 Kg Holding Force", + "product_model": "P40\/20", + "product_mpn": "ADA3875", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "145.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3875", + "product_stock": "81", + "products_hts": "8505.90.3000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3992", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3992-01.jpg", + "image_is_video": "0", + "product_name": "Medium Push-Pull Solenoid - 5V or 6V", + "product_model": "", + "product_mpn": "ADA3992", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "68.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3992", + "product_stock": "in stock", + "products_hts": "8505.90.7501", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4663", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4663-08.jpg", + "image_is_video": "0", + "product_name": "6V Air Valve with 2-pin JST PH Connector", + "product_model": "FA0520E", + "product_mpn": "ADA4663", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "68.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4663", + "product_stock": "in stock", + "products_hts": "8481.80.9005", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1512", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1512-00.jpg", + "image_is_video": "0", + "product_name": "Lock-style Solenoid - 12VDC", + "product_model": "", + "product_mpn": "ADA1512", + "product_master_category": "231", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "147.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1512", + "product_stock": "in stock", + "products_hts": "8505.90.7501", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "167", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/167-02.jpg", + "image_is_video": "0", + "product_name": "Continuous Rotation Servo Wheel", + "product_model": "", + "product_mpn": "ADA167", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "22.5", + "product_url": "https:\/\/www.adafruit.com\/product\/167", + "product_stock": "7", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "169", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/169-06.jpg", + "image_is_video": "0", + "product_name": "Micro servo", + "product_model": "", + "product_mpn": "ADA169", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "14.1", + "product_url": "https:\/\/www.adafruit.com\/product\/169", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "815", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/815-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 16-Channel 12-bit PWM\/Servo Driver - I2C interface", + "product_model": "PCA9685", + "product_mpn": "ADA815", + "product_master_category": "232", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "11.2", + "product_url": "https:\/\/www.adafruit.com\/product\/815", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1143", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1143-08.jpg", + "image_is_video": "0", + "product_name": "Micro Servo - MG90D High Torque Metal Gear", + "product_model": "", + "product_mpn": "ADA1143", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "16.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1143", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1968", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1968-02.jpg", + "image_is_video": "0", + "product_name": "Unassembled Mini Pan-Tilt Kit (Without Micro Servos)", + "product_model": "", + "product_mpn": "ADA1968", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1968", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2744", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2744-00.jpg", + "image_is_video": "0", + "product_name": "Wheel for Micro Continuous Rotation FS90R Servo", + "product_model": "", + "product_mpn": "ADA2744", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "11.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2744", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3614", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3614-01.jpg", + "image_is_video": "0", + "product_name": "Feedback 360 Degree - High Speed Continuous Rotation Servo", + "product_model": "", + "product_mpn": "ADA3614", + "product_master_category": "232", + "product_manufacturer": "Parallax", + "product_price": "27.99", + "product_shipping_weight": "42.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3614", + "product_stock": "85", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3837", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3837-01.jpg", + "image_is_video": "0", + "product_name": "Machined Aluminum Servo Arm", + "product_model": "", + "product_mpn": "ADA3837", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3837", + "product_stock": "47", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4250", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4250-00.jpg", + "image_is_video": "0", + "product_name": "Standard Servo Arm and Horn Set - 25 Spline", + "product_model": "", + "product_mpn": "ADA4250", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4250", + "product_stock": "81", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4251", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4251-03.jpg", + "image_is_video": "0", + "product_name": "Micro Servo Arm and Horn Set", + "product_model": "", + "product_mpn": "ADA4251", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4251", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2307", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2307-00.jpg", + "image_is_video": "0", + "product_name": "Micro Servo - High Powered, High Torque Metal Gear", + "product_model": "", + "product_mpn": "ADA2307", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "19.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2307", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2442", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2442-02.jpg", + "image_is_video": "1", + "product_name": "Continuous Rotation Micro Servo", + "product_model": "FS90R", + "product_mpn": "ADA2442", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "15.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2442", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2201", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2201-01.jpg", + "image_is_video": "0", + "product_name": "Sub-micro Servo - SG51R", + "product_model": "", + "product_mpn": "ADA2201", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "9.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2201", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1449", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1449-00.jpg", + "image_is_video": "0", + "product_name": "Analog Feedback Micro Servo - Plastic Gear", + "product_model": "", + "product_mpn": "ADA1449", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "14.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1449", + "product_stock": "47", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1450", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1450-00.jpg", + "image_is_video": "0", + "product_name": "Analog Feedback Micro Servo - Metal Gear", + "product_model": "", + "product_mpn": "ADA1450", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1450", + "product_stock": "49", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1404", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1404-04.jpg", + "image_is_video": "0", + "product_name": "Analog Feedback Servo", + "product_model": "", + "product_mpn": "ADA1404", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "46.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1404", + "product_stock": "0", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1142", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1142-06.jpg", + "image_is_video": "0", + "product_name": "Standard Size - High Torque - Metal Gear Servo", + "product_model": "", + "product_mpn": "ADA1142", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "69.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1142", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1967", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1967-02.jpg", + "image_is_video": "1", + "product_name": "Mini Pan-Tilt Kit - Assembled with Micro Servos", + "product_model": "", + "product_mpn": "ADA1967", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "18.95", + "product_shipping_weight": "36.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1967", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "155", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/155-01.jpg", + "image_is_video": "0", + "product_name": "Standard servo - TowerPro SG-5010", + "product_model": "5010", + "product_mpn": "ADA155", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "12.00", + "product_shipping_weight": "58.2", + "product_url": "https:\/\/www.adafruit.com\/product\/155", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "154", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/154-07.jpg", + "image_is_video": "0", + "product_name": "Continuous Rotation Servo", + "product_model": "FeeTech FS5103R", + "product_mpn": "ADA154", + "product_master_category": "232", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "49.5", + "product_url": "https:\/\/www.adafruit.com\/product\/154", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1062", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1062-00.jpg", + "image_is_video": "0", + "product_name": "\"3 Laws of Robotics\" poster", + "product_model": "", + "product_mpn": "ADA1062", + "product_master_category": "233", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "249.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1062", + "product_stock": "-3", + "products_hts": "4911.91.4020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2942", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2942-06.jpg", + "image_is_video": "0", + "product_name": "Supporting Swivel Caster Wheel - 1.3\" Diameter", + "product_model": "", + "product_mpn": "ADA2942", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "49.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2942", + "product_stock": "in stock", + "products_hts": "8205.51.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3659", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3659-03.jpg", + "image_is_video": "0", + "product_name": "Silicone Tubing for Peristaltic Liquid Pump - 1 Meter", + "product_model": "", + "product_mpn": "ADA3659", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "22.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3659", + "product_stock": "83", + "products_hts": "8413.60.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3782", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3782-00.jpg", + "image_is_video": "0", + "product_name": "TT Motor Encoder (Pack of 2)", + "product_model": "", + "product_mpn": "ADA3782", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3782", + "product_stock": "in stock", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3789", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3789-03.jpg", + "image_is_video": "0", + "product_name": "TT Motor Pulley - 36mm Diameter", + "product_model": "", + "product_mpn": "ADA3789", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3789", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3864", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3864-01.jpg", + "image_is_video": "0", + "product_name": "Paddle Wheel Pack for TT Gearbox Motor", + "product_model": "", + "product_mpn": "ADA3864", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "11.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3864", + "product_stock": "18", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3948", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3948-00.jpg", + "image_is_video": "0", + "product_name": "20mm Height Metal Caster Bearing Wheel", + "product_model": "", + "product_mpn": "ADA3948", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3948", + "product_stock": "in stock", + "products_hts": "8482.80.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3949", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3949-00.jpg", + "image_is_video": "0", + "product_name": "16mm Height Metal Caster Bearing Wheel", + "product_model": "", + "product_mpn": "ADA3949", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3949", + "product_stock": "13", + "products_hts": "8482.80.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4205", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4205-05.jpg", + "image_is_video": "0", + "product_name": "Black Multi-Hub Wheel for TT \/ Lego or N20 Motor - 65mm Diameter", + "product_model": "", + "product_mpn": "ADA4205", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "20.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4205", + "product_stock": "23", + "products_hts": "8501.10.6080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4252", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4252-05.jpg", + "image_is_video": "0", + "product_name": "Plastic Micro Servo Adapter for LEGO Cross - 16mm long", + "product_model": "", + "product_mpn": "ADA4252", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4252", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4545", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4545-01.jpg", + "image_is_video": "0", + "product_name": "Tubing for Submersible Pumps - PVC 6mm ID - 1 Meter Long", + "product_model": "", + "product_mpn": "ADA4545", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "98.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4545", + "product_stock": "in stock", + "products_hts": "4006.90.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4661", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4661-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Tubing for Air Pumps and Valves - 3mm ID - 1 Meter Long", + "product_model": "", + "product_mpn": "ADA4661", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "20.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4661", + "product_stock": "in stock", + "products_hts": "8413.60.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4662", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4662-00.jpg", + "image_is_video": "0", + "product_name": "T-Connector For Silicone Tubing - 5 Pack", + "product_model": "", + "product_mpn": "ADA4662", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4662", + "product_stock": "93", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4678", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4678-01.jpg", + "image_is_video": "0", + "product_name": "Right Mecanum Wheel - 48mm Diameter - TT Motor or Cross Axle", + "product_model": "", + "product_mpn": "ADA4678", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4678", + "product_stock": "in stock", + "products_hts": "8432.90.0060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4679", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4679-01.jpg", + "image_is_video": "0", + "product_name": "Left Mecanum Wheel - 48mm Diameter - TT Motor or Cross Axle", + "product_model": "", + "product_mpn": "ADA4679", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4679", + "product_stock": "in stock", + "products_hts": "8432.90.0060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4764", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4764-00.jpg", + "image_is_video": "0", + "product_name": "2-Prong Barbed Fitting Connector for Silicone Tubing - 5-pack", + "product_model": "", + "product_mpn": "ADA4764", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4764", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2415", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2415-00.jpg", + "image_is_video": "0", + "product_name": "ADABOT \"Make Robot Friend\" Poster", + "product_model": "", + "product_mpn": "ADA2415", + "product_master_category": "233", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "133.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2415", + "product_stock": "-3", + "products_hts": "4911.91.4020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1200", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1200-00.jpg", + "image_is_video": "0", + "product_name": "Ball Caster - 3\/4\" Metal Ball", + "product_model": "", + "product_mpn": "ADA1200", + "product_master_category": "233", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "31.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1200", + "product_stock": "in stock", + "products_hts": "8302.20.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2600", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2600-03.jpg", + "image_is_video": "0", + "product_name": "Blinka the CircuitPython Temporary Tattoo", + "product_model": "", + "product_mpn": "ADA2600", + "product_master_category": "234", + "product_manufacturer": "Adafruit", + "product_price": "0.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2600", + "product_stock": "in stock", + "products_hts": "4908.90.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3437", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3437-00.jpg", + "image_is_video": "0", + "product_name": "AdaBot LunchBox", + "product_model": "", + "product_mpn": "ADA3437", + "product_master_category": "234", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "254.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3437", + "product_stock": "in stock", + "products_hts": "4202.19.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3699", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3699-01.jpg", + "image_is_video": "0", + "product_name": "Maker-Friendly Zipper Case - Pink", + "product_model": "", + "product_mpn": "ADA3699", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "36.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3699", + "product_stock": "16", + "products_hts": "4202.12.2120", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": "3726", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3700", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3700-05.jpg", + "image_is_video": "0", + "product_name": "Maker-Friendly Zipper Case - Red", + "product_model": "", + "product_mpn": "ADA3700", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "36.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3700", + "product_stock": "35", + "products_hts": "4202.12.2120", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": "3726", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3701", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3701-05.jpg", + "image_is_video": "0", + "product_name": "Maker-Friendly Zipper Case - Orange", + "product_model": "", + "product_mpn": "ADA3701", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "36.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3701", + "product_stock": "in stock", + "products_hts": "4202.12.2120", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": "3726", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3702", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3702-05.jpg", + "image_is_video": "0", + "product_name": "Maker-Friendly Zipper Case - Light Blue", + "product_model": "", + "product_mpn": "ADA3702", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "36.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3702", + "product_stock": "in stock", + "products_hts": "4202.12.2120", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": "3726", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3703", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3703-04.jpg", + "image_is_video": "0", + "product_name": "Maker-Friendly Zipper Case - Black", + "product_model": "", + "product_mpn": "ADA3703", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "36.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3703", + "product_stock": "in stock", + "products_hts": "4202.12.2120", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": "3726", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3704", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3704-05.jpg", + "image_is_video": "0", + "product_name": "Maker-Friendly Zipper Case - Purple", + "product_model": "", + "product_mpn": "ADA3704", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "36.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3704", + "product_stock": "in stock", + "products_hts": "4202.12.2120", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": "3726", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3705", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3705-05.jpg", + "image_is_video": "0", + "product_name": "Maker-Friendly Zipper Case - Royal Blue", + "product_model": "", + "product_mpn": "ADA3705", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "36.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3705", + "product_stock": "in stock", + "products_hts": "4202.12.2120", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": "3726", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3714", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3714-00.jpg", + "image_is_video": "0", + "product_name": "USB Key Key - 2GB", + "product_model": "", + "product_mpn": "ADA3714", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "9.50", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3714", + "product_stock": "71", + "products_hts": "8523.52.00.90", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3722", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3722-04.jpg", + "image_is_video": "1", + "product_name": "DIY Snow Globe Kit", + "product_model": "108mm Diameter", + "product_mpn": "ADA3722", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "86.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3722", + "product_stock": "0", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3774", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3774-01.jpg", + "image_is_video": "0", + "product_name": "KittenBot Silicone Sleeve for micro:bit", + "product_model": "Blue", + "product_mpn": "ADA3774", + "product_master_category": "234", + "product_manufacturer": "KittenBot", + "product_price": "6.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3774", + "product_stock": "34", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3818", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3793", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3793-01.jpg", + "image_is_video": "0", + "product_name": "CircuitPython 3 Poster", + "product_model": "", + "product_mpn": "ADA3793", + "product_master_category": "234", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "308.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3793", + "product_stock": "22", + "products_hts": "4911.91.4020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3817", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3817-02.jpg", + "image_is_video": "0", + "product_name": "Make Robot Friend Jigsaw Puzzle", + "product_model": "", + "product_mpn": "ADA3817", + "product_master_category": "234", + "product_manufacturer": "Adafruit", + "product_price": "0.95", + "product_shipping_weight": "134.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3817", + "product_stock": "in stock", + "products_hts": "9503.00.0071", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3821", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3821-03.jpg", + "image_is_video": "1", + "product_name": "Plastic Pop Rivets for Cardboard Crafts (100-pack)", + "product_model": "", + "product_mpn": "ADA3821", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "32.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3821", + "product_stock": "in stock", + "products_hts": "7318.14.1060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3822", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3822-00.jpg", + "image_is_video": "0", + "product_name": "Plastic Pop Rivets for Cardboard Crafts (20-pack)", + "product_model": "", + "product_mpn": "ADA3822", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3822", + "product_stock": "60", + "products_hts": "7318.23.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3853", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3853-00.jpg", + "image_is_video": "0", + "product_name": "Convex Glass Lens with Edge - 40mm Diameter", + "product_model": "", + "product_mpn": "ADA3853", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "36.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3853", + "product_stock": "in stock", + "products_hts": "9001.40.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3917", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3917-00.jpg", + "image_is_video": "0", + "product_name": "Convex Plastic Lens with Edge", + "product_model": "40mm Diameter", + "product_mpn": "ADA3917", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "23.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3917", + "product_stock": "1", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.96", + "discounted_percent": "25", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3921", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3921-02.jpg", + "image_is_video": "0", + "product_name": "Round Black Zipper Case", + "product_model": "", + "product_mpn": "ADA3921", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3921", + "product_stock": "2", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3946", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3946-00.jpg", + "image_is_video": "0", + "product_name": "Large Long Plastic Snap Rivets - 13mm to 16mm - 10 pack", + "product_model": "", + "product_mpn": "ADA3946", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "17.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3946", + "product_stock": "30", + "products_hts": "7318.23.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3947", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3947-00.jpg", + "image_is_video": "0", + "product_name": "Large Short Plastic Snap Rivets - 9mm to 13mm - 10 pack", + "product_model": "", + "product_mpn": "ADA3947", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3947", + "product_stock": "97", + "products_hts": "7318.23.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4035", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4035-06.jpg", + "image_is_video": "0", + "product_name": "DIY Ornament Kit - 7cm Diameter", + "product_model": "", + "product_mpn": "ADA4035", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "65.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4035", + "product_stock": "36", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4036", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4036-00.jpg", + "image_is_video": "0", + "product_name": "DIY Ornament Kit - 6cm Diameter - Perfect for Circuit Playground", + "product_model": "", + "product_mpn": "ADA4036", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "61.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4036", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4082", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4082-01.jpg", + "image_is_video": "0", + "product_name": "CircuitPython 4 Poster", + "product_model": "", + "product_mpn": "ADA4082", + "product_master_category": "234", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "270.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4082", + "product_stock": "11", + "products_hts": "4911.91.4020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4365", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4365-00.jpg", + "image_is_video": "0", + "product_name": "CircuitPython 5 Poster", + "product_model": "", + "product_mpn": "ADA4365", + "product_master_category": "234", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "270.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4365", + "product_stock": "10", + "products_hts": "4911.91.4020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4713", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4713-00.jpg", + "image_is_video": "0", + "product_name": "CircuitPython 6 Poster", + "product_model": "", + "product_mpn": "ADA4713", + "product_master_category": "234", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "235.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4713", + "product_stock": "9", + "products_hts": "4911.91.4020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4826", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4826-00.jpg", + "image_is_video": "0", + "product_name": "Flexible Magnetic Dry Erase Whiteboard - 21cm x 15cm", + "product_model": "", + "product_mpn": "ADA4826", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "43.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4826", + "product_stock": "in stock", + "products_hts": "9610.00.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4966", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4966-02.jpg", + "image_is_video": "0", + "product_name": "Gridded Sticky Notepad - 80 Sheets - 3\" \/ 75mm Square", + "product_model": "", + "product_mpn": "ADA4966", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "32.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4966", + "product_stock": "-3", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4992", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4992-00.jpg", + "image_is_video": "0", + "product_name": "Silicone USB A Dust Cover Inserts - 10 Pack", + "product_model": "", + "product_mpn": "ADA4992", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4992", + "product_stock": "in stock", + "products_hts": "8546.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4993", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4993-02.jpg", + "image_is_video": "0", + "product_name": "Silicone USB C Dust Cover Inserts - 10 pack", + "product_model": "", + "product_mpn": "ADA4993", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4993", + "product_stock": "47", + "products_hts": "8546.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4994", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4994-01.jpg", + "image_is_video": "0", + "product_name": "Silicone HDMI Dust Cover Inserts - 10 Pack", + "product_model": "", + "product_mpn": "ADA4994", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4994", + "product_stock": "in stock", + "products_hts": "8546.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4995", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4995-04.jpg", + "image_is_video": "0", + "product_name": "Silicone RJ-45 Dust Cover Inserts - 10 Pack", + "product_model": "", + "product_mpn": "ADA4995", + "product_master_category": "234", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4995", + "product_stock": "2", + "products_hts": "8546.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5067", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5067-00.jpg", + "image_is_video": "0", + "product_name": "CircuitPython 7 Poster", + "product_model": "", + "product_mpn": "ADA5067", + "product_master_category": "234", + "product_manufacturer": "Adafruit", + "product_price": "0.00", + "product_shipping_weight": "235.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5067", + "product_stock": "-3", + "products_hts": "4911.91.4020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "558", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/558-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Metal Pushbutton with White LED Ring", + "product_model": "16mm White Momentary", + "product_mpn": "ADA558", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.9", + "product_url": "https:\/\/www.adafruit.com\/product\/558", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "559", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/559-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Metal Pushbutton with Red LED Ring", + "product_model": "16mm Red Momentary", + "product_mpn": "ADA559", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/559", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1445", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1445-00.jpg", + "image_is_video": "0", + "product_name": "16mm Panel Mount Momentary Pushbutton - Red", + "product_model": "", + "product_mpn": "ADA1445", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1445", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1502", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1502-00.jpg", + "image_is_video": "0", + "product_name": "16mm Panel Mount Momentary Pushbutton - Yellow", + "product_model": "", + "product_mpn": "ADA1502", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1502", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1505", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1505-00.jpg", + "image_is_video": "0", + "product_name": "16mm Panel Mount Momentary Pushbutton - Black", + "product_model": "", + "product_mpn": "ADA1505", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1505", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1684", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1684-03.jpg", + "image_is_video": "0", + "product_name": "On-Off-On-Off Alternating Power Button \/ Pushbutton 3-Way Toggle", + "product_model": "", + "product_mpn": "ADA1684", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1684", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3350", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3350-03.jpg", + "image_is_video": "1", + "product_name": "Rugged Metal Pushbutton - 16mm 6V RGB Momentary", + "product_model": "", + "product_mpn": "ADA3350", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "10.95", + "product_shipping_weight": "12.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3350", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3423", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3423-04.jpg", + "image_is_video": "1", + "product_name": "Rugged Metal Pushbutton - 22mm 6V RGB Momentary", + "product_model": "", + "product_mpn": "ADA3423", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "16.50", + "product_shipping_weight": "25.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3423", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "16.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3424", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3424-04.jpg", + "image_is_video": "1", + "product_name": "Rugged Metal On\/Off Switch - 22mm 6V RGB On\/Off", + "product_model": "", + "product_mpn": "ADA3424", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "16.95", + "product_shipping_weight": "26.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3424", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3486", + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3425", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3425-04.jpg", + "image_is_video": "1", + "product_name": "Rugged Metal Pushbutton - 19mm 6V RGB Momentary", + "product_model": "", + "product_mpn": "ADA3425", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "17.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3425", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3426", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3426-04.jpg", + "image_is_video": "1", + "product_name": "Rugged Metal On\/Off Switch - 19mm 6V RGB On\/Off", + "product_model": "", + "product_mpn": "ADA3426", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "18.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3426", + "product_stock": "24", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3486", + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3838", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3838-02.jpg", + "image_is_video": "0", + "product_name": "Arcade Button and Switch Quick-Connect Wires - 0.25\" (10-pack)", + "product_model": "", + "product_mpn": "ADA3838", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "27.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3838", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3870", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3870-00.jpg", + "image_is_video": "0", + "product_name": "Mini On\/Off Push-Button Switch", + "product_model": "", + "product_mpn": "ADA3870", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3870", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3983", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3983-00.jpg", + "image_is_video": "0", + "product_name": "Mini Soft Touch Push-button Switches (6mm square) x 10 pack", + "product_model": "", + "product_mpn": "ADA3983", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3983", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4519", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4519-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Picade Wiring Loom", + "product_model": "Version 2", + "product_mpn": "ADA4519", + "product_master_category": "235", + "product_manufacturer": "Pimoroni", + "product_price": "7.95", + "product_shipping_weight": "44.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4519", + "product_stock": "13", + "products_hts": "8544.42.9090", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4659", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4659-03.jpg", + "image_is_video": "1", + "product_name": "Rugged Metal Silver Finish Pushbutton - 16mm 6V RGB Latching", + "product_model": "16mm RGB Latching", + "product_mpn": "ADA4659", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "15.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4659", + "product_stock": "82", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4660", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4660-03.jpg", + "image_is_video": "1", + "product_name": "Rugged Metal Pushbutton with Black Finish - 16mm 6V RGB Latching", + "product_model": "16mm Black Latching", + "product_mpn": "ADA4660", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4660", + "product_stock": "0", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1503", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1503-06.jpg", + "image_is_video": "0", + "product_name": "16mm Panel Mount Momentary Pushbutton - Burgundy", + "product_model": "", + "product_mpn": "ADA1503", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1503", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1504", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1504-00.jpg", + "image_is_video": "0", + "product_name": "16mm Panel Mount Momentary Pushbutton - Green", + "product_model": "", + "product_mpn": "ADA1504", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1504", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1685", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1685-01.jpg", + "image_is_video": "0", + "product_name": "Tactile Alternating Button w\/3 Wire Leads", + "product_model": "", + "product_mpn": "ADA1685", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1685", + "product_stock": "30", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1683", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1683-07.jpg", + "image_is_video": "0", + "product_name": "On-Off Power Button \/ Pushbutton Toggle Switch", + "product_model": "", + "product_mpn": "ADA1683", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1683", + "product_stock": "-21", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1188", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1188-00.jpg", + "image_is_video": "0", + "product_name": "Massive Arcade Button with LED - 100mm Green", + "product_model": "", + "product_mpn": "ADA1188", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "135.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1188", + "product_stock": "24", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1152", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1152-06.jpg", + "image_is_video": "0", + "product_name": "Arcade Button Quick-Connect Wire Pairs - 0.11\" (10 pack)", + "product_model": "", + "product_mpn": "ADA1152", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1152", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "916", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/916-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Metal On\/Off Switch with Red LED Ring", + "product_model": "16mm Red On\/Off", + "product_mpn": "ADA916", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.9", + "product_url": "https:\/\/www.adafruit.com\/product\/916", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3486", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "917", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/917-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Metal On\/Off Switch with White LED Ring", + "product_model": "16mm White On\/Off", + "product_mpn": "ADA917", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.9", + "product_url": "https:\/\/www.adafruit.com\/product\/917", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3486", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "915", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/915-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Metal On\/Off Switch with Blue LED Ring", + "product_model": "16mm Blue On\/Off", + "product_mpn": "ADA915", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.7", + "product_url": "https:\/\/www.adafruit.com\/product\/915", + "product_stock": "44", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3486", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "482", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/482-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Metal On\/Off Switch with Green LED Ring", + "product_model": "16mm Green On\/Off", + "product_mpn": "ADA482", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.6", + "product_url": "https:\/\/www.adafruit.com\/product\/482", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3486", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "560", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/560-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Metal Pushbutton with Green LED Ring", + "product_model": "16mm Green Momentary", + "product_mpn": "ADA560", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/560", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "481", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/481-00.jpg", + "image_is_video": "0", + "product_name": "Rugged Metal Pushbutton with Blue LED Ring", + "product_model": "16mm Blue Momentary", + "product_mpn": "ADA481", + "product_master_category": "235", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.4", + "product_url": "https:\/\/www.adafruit.com\/product\/481", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2093", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4021", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4021-00.jpg", + "image_is_video": "0", + "product_name": "Silicone Elastomer 4x4 Button Keypad - 2 Pack", + "product_model": "", + "product_mpn": "ADA4021", + "product_master_category": "236", + "product_manufacturer": "Adafruit", + "product_price": "9.50", + "product_shipping_weight": "38.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4021", + "product_stock": "-3", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4206", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4206-00.jpg", + "image_is_video": "0", + "product_name": "SMT \/ Solderable Standoff Nuts - M3 x 6mm - 10 pack", + "product_model": "", + "product_mpn": "ADA4206", + "product_master_category": "237", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4206", + "product_stock": "in stock", + "products_hts": "7318.16.0045", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4207", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4207-00.jpg", + "image_is_video": "0", + "product_name": "SMT \/ Solderable Standoff Nuts - M3 x 3mm - 10 pack", + "product_model": "", + "product_mpn": "ADA4207", + "product_master_category": "237", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "5.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4207", + "product_stock": "in stock", + "products_hts": "7318.16.0045", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4308", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4308-02.jpg", + "image_is_video": "0", + "product_name": "Electric Heating Pad - 14cm x 5cm", + "product_model": "", + "product_mpn": "ADA4308", + "product_master_category": "238", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "7.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4308", + "product_stock": "in stock", + "products_hts": "8516.79.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "160", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/160-01.jpg", + "image_is_video": "0", + "product_name": "Piezo Buzzer", + "product_model": "PS1240", + "product_mpn": "ADA160", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/160", + "product_stock": "in stock", + "products_hts": "8531.80.00.50", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "1.13", + "discounted_percent": "25", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1966", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1966-03.jpg", + "image_is_video": "0", + "product_name": "Cell-phone TRRS Headset - Earbud Headphones w\/ Microphone", + "product_model": "", + "product_mpn": "ADA1966", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "16.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1966", + "product_stock": "in stock", + "products_hts": "8518.30.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2791", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2791-01.jpg", + "image_is_video": "0", + "product_name": "3.5mm (1\/8\") Stereo Audio Jack Terminal Block", + "product_model": "", + "product_mpn": "ADA2791", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "8.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2791", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2914", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2914-01.jpg", + "image_is_video": "0", + "product_name": "3.5mm (1\/8\") 4-Pole (TRRS) Audio Plug Terminal Block", + "product_model": "", + "product_mpn": "ADA2914", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "7.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2914", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2915", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2915-03.jpg", + "image_is_video": "0", + "product_name": "3.5mm (1\/8\") 4-Pole (TRRS) Audio Jack Terminal Block", + "product_model": "", + "product_mpn": "ADA2915", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2915", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3959", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3959-10.jpg", + "image_is_video": "0", + "product_name": "Analog Potentiometer Volume Adjustable TRRS Headset", + "product_model": "", + "product_mpn": "ADA3959", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "32.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3959", + "product_stock": "13", + "products_hts": "8518.30.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4031", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4031-05.jpg", + "image_is_video": "0", + "product_name": "Vertical Breadboard-Friendly 3.5mm Mono Headphone Jack", + "product_model": "", + "product_mpn": "ADA4031", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4031", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4361", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4361-00.jpg", + "image_is_video": "0", + "product_name": "Panel Mount 1\/8\" \/ 3.5mm Mono Connector", + "product_model": "", + "product_mpn": "ADA4361", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4361", + "product_stock": "42", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1740", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1740-00.jpg", + "image_is_video": "0", + "product_name": "Small Enclosed Piezo w\/Wires", + "product_model": "", + "product_mpn": "ADA1740", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1740", + "product_stock": "in stock", + "products_hts": "8531.80.00.50", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1739", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1739-00.jpg", + "image_is_video": "0", + "product_name": "Large Enclosed Piezo Element w\/Wires", + "product_model": "", + "product_mpn": "ADA1739", + "product_master_category": "239", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1739", + "product_stock": "in stock", + "products_hts": "8531.80.00.50", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2692", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2692-01.jpg", + "image_is_video": "0", + "product_name": "8GB Class 10 SD\/MicroSD Memory Card - SD Adapter Included", + "product_model": "", + "product_mpn": "ADA2692", + "product_master_category": "241", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2692", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1692", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1692-00.jpg", + "image_is_video": "0", + "product_name": "Pink Shortening microSD card adapter for Raspberry Pi & Macbooks", + "product_model": "", + "product_mpn": "ADA1692", + "product_master_category": "241", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "1.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1692", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2091", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1202", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1202-06.jpg", + "image_is_video": "0", + "product_name": "Barcode Reader\/Scanner Module - CCD Camera - PS\/2 Interface", + "product_model": "", + "product_mpn": "ADA1202", + "product_master_category": "243", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "111.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1202", + "product_stock": "0", + "products_hts": "8471.90.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "854", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/854-00.jpg", + "image_is_video": "0", + "product_name": "Magstripe Reader - PS\/2 Interface - 2 Tracks (1&2)", + "product_model": "", + "product_mpn": "ADA854", + "product_master_category": "243", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "135.5", + "product_url": "https:\/\/www.adafruit.com\/product\/854", + "product_stock": "-3", + "products_hts": "8471.99.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "853", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/853-06.jpg", + "image_is_video": "0", + "product_name": "Magstripe Reader - PS\/2 Interface - 3 Tracks (1&2&3)", + "product_model": "", + "product_mpn": "ADA853", + "product_master_category": "243", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "134.2", + "product_url": "https:\/\/www.adafruit.com\/product\/853", + "product_stock": "1", + "products_hts": "8471.99.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1203", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1203-08.jpg", + "image_is_video": "0", + "product_name": "Barcode Reader\/Scanner Module - CCD Camera - USB Interface", + "product_model": "", + "product_mpn": "ADA1203", + "product_master_category": "243", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "75.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1203", + "product_stock": "58", + "products_hts": "8471.90.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1760", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1760-05.jpg", + "image_is_video": "0", + "product_name": "PrintrBot Simple Metal 3D Printer - Black - Assembled", + "product_model": "", + "product_mpn": "ADA1760", + "product_master_category": "245", + "product_manufacturer": "Printrbot", + "product_price": "599.00", + "product_shipping_weight": "6,803.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1760", + "product_stock": "-3", + "products_hts": "8443.32.1090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2323", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2323-01.png", + "image_is_video": "0", + "product_name": "Othermill Pro - Compact Precision CNC + PCB Milling Machine", + "product_model": "", + "product_mpn": "ADA2323", + "product_master_category": "245", + "product_manufacturer": "Othermill", + "product_price": "3,299.00", + "product_shipping_weight": "11,339.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2323", + "product_stock": "0", + "products_hts": "8443.32.1090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2412", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2412-04.jpg", + "image_is_video": "0", + "product_name": "Type A Machines Series 1 Pro 3D Printer", + "product_model": "", + "product_mpn": "ADA2412", + "product_master_category": "245", + "product_manufacturer": "Type A Machines", + "product_price": "4,095.00", + "product_shipping_weight": "20,865.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2412", + "product_stock": "-3", + "products_hts": "8443.32.1090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2673", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2673-01.jpg", + "image_is_video": "0", + "product_name": "Ultimaker 2+ 3D Printer", + "product_model": "", + "product_mpn": "ADA2673", + "product_master_category": "245", + "product_manufacturer": "Ultimaker", + "product_price": "2,499.00", + "product_shipping_weight": "15,240.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2673", + "product_stock": "-1", + "products_hts": "8443.32.1090", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2742", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2742-00.jpg", + "image_is_video": "0", + "product_name": "Flashforge Creator PRO", + "product_model": "", + "product_mpn": "ADA2742", + "product_master_category": "245", + "product_manufacturer": "Flashforge", + "product_price": "1,299.00", + "product_shipping_weight": "22,498.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2742", + "product_stock": "-3", + "products_hts": "8443.32.1090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2933", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2933-01.jpg", + "image_is_video": "0", + "product_name": "Micro 3D Printer - Black - Retail Edition", + "product_model": "", + "product_mpn": "ADA2933", + "product_master_category": "245", + "product_manufacturer": "M3D", + "product_price": "449.95", + "product_shipping_weight": "1,956.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2933", + "product_stock": "-3", + "products_hts": "8477.59.0100", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3300", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3300-10.jpg", + "image_is_video": "0", + "product_name": "Ultimaker 3 - 3D Printer", + "product_model": "", + "product_mpn": "ADA3300", + "product_master_category": "245", + "product_manufacturer": "Ultimaker", + "product_price": "3,495.00", + "product_shipping_weight": "15,875.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3300", + "product_stock": "0", + "products_hts": "8443.32.1090", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3528", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3528-04.jpg", + "image_is_video": "0", + "product_name": "BCN3D Sigma 3D Printer", + "product_model": "", + "product_mpn": "ADA3528", + "product_master_category": "245", + "product_manufacturer": "BCN3D", + "product_price": "2,495.00", + "product_shipping_weight": "21,000.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3528", + "product_stock": "0", + "products_hts": "8443.32.1090", + "products_coo": "ES", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3897", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3897-00.jpg", + "image_is_video": "0", + "product_name": "Monoprice Inventor II 3D Printer with Touchscreen and WiFi", + "product_model": "", + "product_mpn": "ADA3897", + "product_master_category": "245", + "product_manufacturer": null, + "product_price": "650.00", + "product_shipping_weight": "15,875.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3897", + "product_stock": "0", + "products_hts": "8443.32.1090", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1735", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1735-00.jpg", + "image_is_video": "0", + "product_name": "Printrbot Simple Kit - 1405 Model", + "product_model": "", + "product_mpn": "ADA1735", + "product_master_category": "245", + "product_manufacturer": "Printrbot", + "product_price": "399.00", + "product_shipping_weight": "4,263.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1735", + "product_stock": "-3", + "products_hts": "8443.32.1090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2302", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2302-07.jpg", + "image_is_video": "0", + "product_name": "PrintrBot Metal PLUS 3D Printer - Black Assembled", + "product_model": "Heated Bed - Model 1504", + "product_mpn": "ADA2302", + "product_master_category": "245", + "product_manufacturer": "Printrbot", + "product_price": "1,299.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2302", + "product_stock": "-3", + "products_hts": "8443.32.1090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2259", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2259-04.jpg", + "image_is_video": "0", + "product_name": "ORION\u2122 Delta 3D Printer - Black", + "product_model": "", + "product_mpn": "ADA2259", + "product_master_category": "245", + "product_manufacturer": "Orion", + "product_price": "1,299.00", + "product_shipping_weight": "753.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2259", + "product_stock": "-3", + "products_hts": "8443.32.1090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2416", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2416-02.jpg", + "image_is_video": "0", + "product_name": "Blue Masking Tape for 3D Printing Plates", + "product_model": "60 Yards", + "product_mpn": "ADA2416", + "product_master_category": "246", + "product_manufacturer": "3M", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2416", + "product_stock": "-3", + "products_hts": "4811.41.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.95", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "49.95", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2896", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2896-01.jpg", + "image_is_video": "0", + "product_name": "OctoPrint Parts Pack", + "product_model": "", + "product_mpn": "ADA2896", + "product_master_category": "246", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "274.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2896", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3080", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3080-02.jpg", + "image_is_video": "0", + "product_name": "Othermill Precision Fixturing and Toe Clamp Set", + "product_model": "", + "product_mpn": "ADA3080", + "product_master_category": "246", + "product_manufacturer": null, + "product_price": "174.95", + "product_shipping_weight": "165.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3080", + "product_stock": "-3", + "products_hts": "8443.91.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3095", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3095-00.jpg", + "image_is_video": "0", + "product_name": "PRINTinZ Skin for Micro 3D Printer - 116mm x 116mm", + "product_model": "", + "product_mpn": "ADA3095", + "product_master_category": "246", + "product_manufacturer": "PRINTinZ", + "product_price": "7.50", + "product_shipping_weight": "32.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3095", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3097", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3097-00.jpg", + "image_is_video": "0", + "product_name": "PRINTinZ Skin for Flashforge - 152mm x 232mm", + "product_model": "", + "product_mpn": "ADA3097", + "product_master_category": "246", + "product_manufacturer": null, + "product_price": "14.00", + "product_shipping_weight": "81.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3097", + "product_stock": "0", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3098", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3098-00.jpg", + "image_is_video": "0", + "product_name": "PRINTinZ Skin for Ultimaker - 229mm x 257mm", + "product_model": "", + "product_mpn": "ADA3098", + "product_master_category": "246", + "product_manufacturer": "PRINTinZ", + "product_price": "22.50", + "product_shipping_weight": "116.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3098", + "product_stock": "-3", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4239", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4239-06.jpg", + "image_is_video": "0", + "product_name": "Heat-Set Insert For Soldering Irons - #4-40 \/ M3 Inserts", + "product_model": "from Virtjoule", + "product_mpn": "ADA4239", + "product_master_category": "246", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4239", + "product_stock": "in stock", + "products_hts": "9504.90.9080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4249", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4249-04.jpg", + "image_is_video": "0", + "product_name": "Heat-Set Insert For Soldering Irons - M5 Inserts", + "product_model": "from Virtjoule", + "product_mpn": "ADA4249", + "product_master_category": "246", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "7.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4249", + "product_stock": "54", + "products_hts": "8473.30.5100", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4255", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4255-02.jpg", + "image_is_video": "0", + "product_name": "Brass Heat-Set Inserts for Plastic - M3 x 4mm - 50 pack", + "product_model": "", + "product_mpn": "ADA4255", + "product_master_category": "246", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4255", + "product_stock": "82", + "products_hts": "7326.90.8688", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4256", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4256-03.jpg", + "image_is_video": "0", + "product_name": "Brass Heat-Set Inserts for Plastic - M3 x 3mm - 50 pack", + "product_model": "", + "product_mpn": "ADA4256", + "product_master_category": "246", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4256", + "product_stock": "in stock", + "products_hts": "7326.90.8688", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2132", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2132-03.jpg", + "image_is_video": "1", + "product_name": "PRINTinZ Flexible 3D Printer Plate - 300mm x 300mm", + "product_model": "", + "product_mpn": "ADA2132", + "product_master_category": "246", + "product_manufacturer": null, + "product_price": "84.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2132", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "84.95", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "84.95", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "649", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/649-01.jpg", + "image_is_video": "0", + "product_name": "3D printing - Sticker!", + "product_model": "", + "product_mpn": "ADA649", + "product_master_category": "246", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/649", + "product_stock": "4", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2391", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2391-00.jpg", + "image_is_video": "0", + "product_name": "AstroBox pack - Includes Raspberry Pi 2, Model B", + "product_model": "", + "product_mpn": "ADA2391", + "product_master_category": "246", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "309.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2391", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "490", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/490-00.jpg", + "image_is_video": "0", + "product_name": "3D printing - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA490", + "product_master_category": "246", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/490", + "product_stock": "-3", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2233", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2233-03.jpg", + "image_is_video": "1", + "product_name": "PRINTinZ Flexible 3D Printer Plate for Printrbot - 168mm x 237mm", + "product_model": "", + "product_mpn": "ADA2233", + "product_master_category": "246", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "301.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2233", + "product_stock": "-3", + "products_hts": "3920.99.1000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.95", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "44.95", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2985", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2985-01.jpg", + "image_is_video": "0", + "product_name": "Encyclopedia of Electronic Components Volume 3", + "product_model": "", + "product_mpn": "ADA2985", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "29.99", + "product_shipping_weight": "588.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2985", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3087", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3087-01.jpg", + "image_is_video": "0", + "product_name": "USB Complete: The Developer's Guide by Jan Axelson", + "product_model": "Fifth Edition", + "product_mpn": "ADA3087", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "831.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3087", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3189", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3189-05.jpg", + "image_is_video": "0", + "product_name": "The Essential Guide to Electronics in Shenzhen by Bunnie Huang", + "product_model": "", + "product_mpn": "ADA3189", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "35.00", + "product_shipping_weight": "454.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3189", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3524", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3524-05.jpg", + "image_is_video": "0", + "product_name": "Make: Magazine - Vol 57", + "product_model": "Signed by Limor \"LadyAda\" Fried", + "product_mpn": "ADA3524", + "product_master_category": "247", + "product_manufacturer": "Make:", + "product_price": "9.95", + "product_shipping_weight": "245.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3524", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3532", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3532-04.jpg", + "image_is_video": "0", + "product_name": "How To Be A Digital Revolutionary \u2013 E-Book with USB Bracelet", + "product_model": "by Violet Blue", + "product_mpn": "ADA3532", + "product_master_category": "247", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "19.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3532", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3541", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3541-01.jpg", + "image_is_video": "0", + "product_name": "2600: The Hacker Quarterly", + "product_model": "Summer 2017", + "product_mpn": "ADA3541", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "99.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3541", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3655", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3655-06.jpg", + "image_is_video": "0", + "product_name": "The Book of Cosplay Lights - Getting Started with LEDs", + "product_model": "by Svetlana Quindt @KamuiCosplay", + "product_mpn": "ADA3655", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "228.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3655", + "product_stock": "11", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3656", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3656-01.jpg", + "image_is_video": "0", + "product_name": "Advanced Cosplay Lights - Animated LEDs", + "product_model": "by Svetlana Quindt @KamuiCosplay", + "product_mpn": "ADA3656", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "219.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3656", + "product_stock": "5", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3715", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3715-02.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Soldering", + "product_model": "by Marc de Vinck", + "product_mpn": "ADA3715", + "product_master_category": "247", + "product_manufacturer": "Make:", + "product_price": "19.95", + "product_shipping_weight": "168.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3715", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3717", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3717-00.jpg", + "image_is_video": "0", + "product_name": "Make: Magazine - Vol 61 - Spotlight Shenzhen", + "product_model": "with Naomi Wu @RealSexyCyborg", + "product_mpn": "ADA3717", + "product_master_category": "247", + "product_manufacturer": "Make:", + "product_price": "9.95", + "product_shipping_weight": "245.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3717", + "product_stock": "2", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3924", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3924-05.jpg", + "image_is_video": "0", + "product_name": "2600: The Hacker Quarterly", + "product_model": "Winter 2017-2018", + "product_mpn": "ADA3924", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "2.99", + "product_shipping_weight": "99.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3924", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.69", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.39", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3925", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3925-06.jpg", + "image_is_video": "0", + "product_name": "HackSpace Magazine Issue #3", + "product_model": "February 2018", + "product_mpn": "ADA3925", + "product_master_category": "247", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "4.95", + "product_shipping_weight": "483.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3925", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3944", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3944-07.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Adafruit Circuit Playground Express", + "product_model": "by Anne Barela", + "product_mpn": "ADA3944", + "product_master_category": "247", + "product_manufacturer": "Make:", + "product_price": "19.45", + "product_shipping_weight": "309.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3944", + "product_stock": "28", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4312", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4312-00.jpg", + "image_is_video": "0", + "product_name": "Wireframe Magazine - Issue #13", + "product_model": "", + "product_mpn": "ADA4312", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "180.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4312", + "product_stock": "in stock", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4495", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4495-05.jpg", + "image_is_video": "0", + "product_name": "Reinvented Magazine - Issue 2: LADIES WHO HACK", + "product_model": "Limor Fried", + "product_mpn": "ADA4495", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "8.50", + "product_shipping_weight": "251.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4495", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4501", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4501-01.jpg", + "image_is_video": "0", + "product_name": "HackSpace Magazine Issue #25", + "product_model": "Maker Christmas - December 2019", + "product_mpn": "ADA4501", + "product_master_category": "247", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "4.95", + "product_shipping_weight": "477.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4501", + "product_stock": "in stock", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4717", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4717-02.jpg", + "image_is_video": "0", + "product_name": "Make: Magazine - The Rise of Python", + "product_model": "Vol 74", + "product_mpn": "ADA4717", + "product_master_category": "247", + "product_manufacturer": "Make:", + "product_price": "9.95", + "product_shipping_weight": "238.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4717", + "product_stock": "3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4744", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4744-02.jpg", + "image_is_video": "0", + "product_name": "HackSpace Magazine Issue #34 - Discover Feather", + "product_model": "September 2020", + "product_mpn": "ADA4744", + "product_master_category": "247", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "9.95", + "product_shipping_weight": "357.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4744", + "product_stock": "3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5154", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5154-01.jpg", + "image_is_video": "0", + "product_name": "Digi-Key Innovation Handbook", + "product_model": "", + "product_mpn": "ADA5154", + "product_master_category": "247", + "product_manufacturer": "Digikey", + "product_price": "0.00", + "product_shipping_weight": "284.3", + "product_url": "https:\/\/www.adafruit.com\/product\/5154", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2560", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2560-01.jpg", + "image_is_video": "0", + "product_name": "Make: The Annotated Build-It-Yourself Science Laboratory", + "product_model": "by Windell Oskay", + "product_mpn": "ADA2560", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2560", + "product_stock": "-1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2318", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2318-00.jpg", + "image_is_video": "0", + "product_name": "Building OSH: DIY Manufacturing for Hackers and Makers", + "product_model": "", + "product_mpn": "ADA2318", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "31.99", + "product_shipping_weight": "592.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2318", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2322", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2322-01.jpg", + "image_is_video": "0", + "product_name": "Encyclopedia of Electronic Components Vol. 2 by Charles Platt", + "product_model": "", + "product_mpn": "ADA2322", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "29.99", + "product_shipping_weight": "725.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2322", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1839", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1839-08.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Adafruit FLORA", + "product_model": "", + "product_mpn": "ADA1839", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "16.99", + "product_shipping_weight": "148.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1839", + "product_stock": "24", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2311", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2311-00.jpg", + "image_is_video": "0", + "product_name": "The Big Book of Maker Skills by Chris Hackett", + "product_model": "", + "product_mpn": "ADA2311", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "31.95", + "product_shipping_weight": "907.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2311", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1838", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1838-03.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Adafruit Trinket", + "product_model": "", + "product_mpn": "ADA1838", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "19.99", + "product_shipping_weight": "318.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1838", + "product_stock": "15", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2374", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2374-00.jpg", + "image_is_video": "0", + "product_name": "Pocket Ref - 4th Edition - by Thomas J. Glover", + "product_model": "", + "product_mpn": "ADA2374", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2374", + "product_stock": "51", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "769", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/769-03.jpg", + "image_is_video": "0", + "product_name": "Hackerspace passport", + "product_model": "", + "product_mpn": "ADA769", + "product_master_category": "247", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "15.3", + "product_url": "https:\/\/www.adafruit.com\/product\/769", + "product_stock": "in stock", + "products_hts": "4820.10.2010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2170", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2170-01.jpg", + "image_is_video": "0", + "product_name": "Make: Wearable Electronics by Kate Hartman", + "product_model": "", + "product_mpn": "ADA2170", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "584.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2170", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "295", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/295-09.jpg", + "image_is_video": "0", + "product_name": "The Maker's Notebook", + "product_model": "", + "product_mpn": "ADA295", + "product_master_category": "247", + "product_manufacturer": null, + "product_price": "19.99", + "product_shipping_weight": "362.9", + "product_url": "https:\/\/www.adafruit.com\/product\/295", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.99", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1942", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1942-02.jpg", + "image_is_video": "0", + "product_name": "Learning Python with Raspberry Pi by Alex Bradbury", + "product_model": "", + "product_mpn": "ADA1942", + "product_master_category": "248", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "498.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1942", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1960", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1960-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 20", + "product_model": "", + "product_mpn": "ADA1960", + "product_master_category": "248", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1960", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1961", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1961-03.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 21", + "product_model": "", + "product_mpn": "ADA1961", + "product_master_category": "248", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1961", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1962", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1962-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 22", + "product_model": "", + "product_mpn": "ADA1962", + "product_master_category": "248", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1962", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1161", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1161-02.jpg", + "image_is_video": "0", + "product_name": "Python for Kids - A Playful Introduction to Programming", + "product_model": "", + "product_mpn": "ADA1161", + "product_master_category": "248", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "725.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1161", + "product_stock": "11", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1089", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1089-04.jpg", + "image_is_video": "0", + "product_name": "Programming the Raspberry Pi: Getting Started with Python", + "product_model": "Second Edition - 2016", + "product_mpn": "ADA1089", + "product_master_category": "248", + "product_manufacturer": null, + "product_price": "15.00", + "product_shipping_weight": "272.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1089", + "product_stock": "57", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1000", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1000-08.jpg", + "image_is_video": "0", + "product_name": "Coloring book - \"Ladyada's E is for electronics\"", + "product_model": "", + "product_mpn": "ADA1000", + "product_master_category": "249", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "47.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1000", + "product_stock": "11", + "products_hts": "4903.00.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1340", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1340-07.jpg", + "image_is_video": "0", + "product_name": "Welcome to your Awesome Robot by Viviane Schwarz", + "product_model": "", + "product_mpn": "ADA1340", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "241.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1340", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1936", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1936-17.jpg", + "image_is_video": "0", + "product_name": "Ladyada's Coloring book - \"R is for Robots\"", + "product_model": "", + "product_mpn": "ADA1936", + "product_master_category": "249", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "96.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1936", + "product_stock": "95", + "products_hts": "4903.00.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2878", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2878-01.jpg", + "image_is_video": "0", + "product_name": "The Cynja: Volume 1", + "product_model": "", + "product_mpn": "ADA2878", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "413.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2878", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2879", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2879-03.jpg", + "image_is_video": "0", + "product_name": "The Cynja Field Instruction Manual", + "product_model": "", + "product_mpn": "ADA2879", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "192.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2879", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3572", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3572-01.jpg", + "image_is_video": "0", + "product_name": "Electricity for Young Makers: Fun & Easy Do-It-Yourself Projects", + "product_model": "by Marc de Vinck", + "product_mpn": "ADA3572", + "product_master_category": "249", + "product_manufacturer": "Make:", + "product_price": "14.95", + "product_shipping_weight": "220.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3572", + "product_stock": "-1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3820", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3820-00.jpg", + "image_is_video": "0", + "product_name": "Ada Twist, Scientist", + "product_model": "", + "product_mpn": "ADA3820", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "465.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3820", + "product_stock": "-1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3834", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3834-01.jpg", + "image_is_video": "0", + "product_name": "Love To Code: Volume 1 Add-on Booklet Kit", + "product_model": "Microsoft MakeCode Edition", + "product_mpn": "ADA3834", + "product_master_category": "249", + "product_manufacturer": "Chibitronics", + "product_price": "4.95", + "product_shipping_weight": "288.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3834", + "product_stock": "21", + "products_hts": "4901.10.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3918", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3918-04.jpg", + "image_is_video": "0", + "product_name": "Girl CEO by Ronnie Cohen & Katherine Ellison", + "product_model": "", + "product_mpn": "ADA3918", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "416.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3918", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4348", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4348-02.jpg", + "image_is_video": "0", + "product_name": "Bots! Robotics Engineering with Hands-On Makerspace Activities", + "product_model": "By Kathy Ceceri", + "product_mpn": "ADA4348", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "500.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4348", + "product_stock": "22", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1677", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1677-01.jpg", + "image_is_video": "0", + "product_name": "Rosie Revere, Engineer", + "product_model": "", + "product_mpn": "ADA1677", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "518.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1677", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1585", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1585-04.jpg", + "image_is_video": "0", + "product_name": "Super Scratch Programming Adventure!", + "product_model": "", + "product_mpn": "ADA1585", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "408.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1585", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1403", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1403-00.jpg", + "image_is_video": "0", + "product_name": "My Little Geek by Andrew & Sarah Spear", + "product_model": "", + "product_mpn": "ADA1403", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "17.95", + "product_shipping_weight": "151.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1403", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1896", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1896-00.jpg", + "image_is_video": "0", + "product_name": "Maker Dad by Mark Frauenfelder", + "product_model": "", + "product_mpn": "ADA1896", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1896", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "267", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/267-02.jpg", + "image_is_video": "0", + "product_name": "Manga Guide to Electricity by Kazuhiro Fujitaki", + "product_model": "", + "product_mpn": "ADA267", + "product_master_category": "249", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/267", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2603", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2603-04.jpg", + "image_is_video": "0", + "product_name": "Exploring Arduino: Tools and Techniques for Engineering Wizardry", + "product_model": "2nd Edition by Jeremy Blum", + "product_mpn": "ADA2603", + "product_master_category": "250", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "1,196.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2603", + "product_stock": "-1", + "products_hts": "4903.00.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1457", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1457-00.jpg", + "image_is_video": "0", + "product_name": "Exploring Arduino by Jeremy Blum", + "product_model": "", + "product_mpn": "ADA1457", + "product_master_category": "250", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1457", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1742", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1742-00.jpg", + "image_is_video": "0", + "product_name": "Arduino for Beginners", + "product_model": "", + "product_mpn": "ADA1742", + "product_master_category": "250", + "product_manufacturer": null, + "product_price": "29.99", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1742", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.99", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1744", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1744-02.jpg", + "image_is_video": "0", + "product_name": "Beginning NFC with Arduino, Android, and PhoneGap", + "product_model": "", + "product_mpn": "ADA1744", + "product_master_category": "250", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "362.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1744", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "868", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/868-02.jpg", + "image_is_video": "0", + "product_name": "30 Arduino Projects for the Evil Genius by Simon Monk - 2nd Ed.", + "product_model": "", + "product_mpn": "ADA868", + "product_master_category": "250", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "453.6", + "product_url": "https:\/\/www.adafruit.com\/product\/868", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1557", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1557-02.jpg", + "image_is_video": "0", + "product_name": "Programming Arduino: Next Steps - Going Further with Sketches", + "product_model": "", + "product_mpn": "ADA1557", + "product_master_category": "250", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "340.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1557", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1019", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1019-04.jpg", + "image_is_video": "0", + "product_name": "Programming Arduino By Simon Monk", + "product_model": "Second Edition", + "product_mpn": "ADA1019", + "product_master_category": "250", + "product_manufacturer": null, + "product_price": "15.00", + "product_shipping_weight": "189.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1019", + "product_stock": "17", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "309", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/309-02.jpg", + "image_is_video": "0", + "product_name": "The Art of Electronics 2nd Edition by Horowitz & Hill HARDCOVER", + "product_model": "second edition", + "product_mpn": "ADA309", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "129.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/309", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "310", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/310-02.jpg", + "image_is_video": "0", + "product_name": "The Art of Electronics - Student manual w\/ exercises for 2nd Ed.", + "product_model": "", + "product_mpn": "ADA310", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "59.99", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/310", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "508", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/508-02.jpg", + "image_is_video": "0", + "product_name": "Making Things Talk, Second Edition By Tom Igoe", + "product_model": "2nd Edition", + "product_mpn": "ADA508", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "1,088.6", + "product_url": "https:\/\/www.adafruit.com\/product\/508", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "963", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/963-03.jpg", + "image_is_video": "0", + "product_name": "Building Wireless Sensor Networks by Rob Faludi", + "product_model": "", + "product_mpn": "ADA963", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "547.5", + "product_url": "https:\/\/www.adafruit.com\/product\/963", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1147", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1147-00.jpg", + "image_is_video": "0", + "product_name": "Make: Lego and Arduino Projects", + "product_model": "1st print", + "product_mpn": "ADA1147", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "34.99", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1147", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.49", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1939", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1939-03.jpg", + "image_is_video": "0", + "product_name": "Make: More Electronics by Charles Platt", + "product_model": "", + "product_mpn": "ADA1939", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "907.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1939", + "product_stock": "-1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1978", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1978-01.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Bluetooth Low Energy by KTOWN", + "product_model": "", + "product_mpn": "ADA1978", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "309.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1978", + "product_stock": "12", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2356", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2356-08.jpg", + "image_is_video": "0", + "product_name": "The Art of Electronics 3rd Edition by Horowitz & Hill HARDCOVER", + "product_model": "Third Edition", + "product_mpn": "ADA2356", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "120.00", + "product_shipping_weight": "2,268.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2356", + "product_stock": "17", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2357", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2357-01.jpg", + "image_is_video": "0", + "product_name": "The Computing Universe by Tony Hey and Gyuri Papay", + "product_model": "", + "product_mpn": "ADA2357", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "39.99", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2357", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2399", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2399-01.jpg", + "image_is_video": "0", + "product_name": "Hackaday Omnibus - Vol. 01 - 2014", + "product_model": "", + "product_mpn": "ADA2399", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "317.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2399", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3001", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3001-01.jpg", + "image_is_video": "0", + "product_name": "Hackaday Omnibus - Vol. 02 - 2015", + "product_model": "", + "product_mpn": "ADA3001", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "17.00", + "product_shipping_weight": "478.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3001", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3066", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3066-07.jpg", + "image_is_video": "0", + "product_name": "Learning the Art of Electronics - A Hands-On Lab Course", + "product_model": "", + "product_mpn": "ADA3066", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "79.95", + "product_shipping_weight": "2,051.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3066", + "product_stock": "16", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3385", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3385-01.jpg", + "image_is_video": "0", + "product_name": "The Total Inventor's Manual by Sean Michael Ragan", + "product_model": "", + "product_mpn": "ADA3385", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "988.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3385", + "product_stock": "-1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3465", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3465-02.jpg", + "image_is_video": "0", + "product_name": "The Hardware Hacker: Adventures in Making and Breaking Hardware", + "product_model": "by Bunnie Huang", + "product_mpn": "ADA3465", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "806.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3465", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3526", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3526-01.jpg", + "image_is_video": "0", + "product_name": "The Martian: A Novel - Classroom Edition", + "product_model": "by Andy Weir", + "product_mpn": "ADA3526", + "product_master_category": "251", + "product_manufacturer": "Crown Publishing Group", + "product_price": "14.95", + "product_shipping_weight": "293.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3526", + "product_stock": "4", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3716", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3716-01.jpg", + "image_is_video": "0", + "product_name": "Easy Electronics by Charles Platt", + "product_model": "", + "product_mpn": "ADA3716", + "product_master_category": "251", + "product_manufacturer": "Make:", + "product_price": "9.95", + "product_shipping_weight": "120.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3716", + "product_stock": "-1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4360", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4360-04.jpg", + "image_is_video": "0", + "product_name": "The Art of Electronics: The X Chapters", + "product_model": "by Horowitz & Hill", + "product_mpn": "ADA4360", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "54.95", + "product_shipping_weight": "1,130.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4360", + "product_stock": "12", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1581", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1581-02.jpg", + "image_is_video": "0", + "product_name": "The Makerspace Workbench by Adam Kemp", + "product_model": "", + "product_mpn": "ADA1581", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1581", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1087", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1087-02.jpg", + "image_is_video": "0", + "product_name": "Makers: The New Industrial Revolution by Chris Anderson", + "product_model": "", + "product_mpn": "ADA1087", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "26.00", + "product_shipping_weight": "515.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1087", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2099", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2099-01.jpg", + "image_is_video": "0", + "product_name": "Designing Circuit Boards with EAGLE", + "product_model": "", + "product_mpn": "ADA2099", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2099", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1118", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1118-02.jpg", + "image_is_video": "0", + "product_name": "Encyclopedia of Electronic Components Volume 1 by\u00a0Charles Platt", + "product_model": "1st print", + "product_mpn": "ADA1118", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "24.99", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1118", + "product_stock": "-1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.49", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1943", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1943-01.jpg", + "image_is_video": "0", + "product_name": "Programming the Beagle Bone Black by Simon Monk", + "product_model": "", + "product_mpn": "ADA1943", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "302.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1943", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1941", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1941-01.jpg", + "image_is_video": "0", + "product_name": "Make Your Own PCBs with Eagle by Simon Monk", + "product_model": "", + "product_mpn": "ADA1941", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "554.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1941", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "517", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/517-02.jpg", + "image_is_video": "0", + "product_name": "Getting Started in Electronics by Forrest M. Mims III", + "product_model": "", + "product_mpn": "ADA517", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "312.7", + "product_url": "https:\/\/www.adafruit.com\/product\/517", + "product_stock": "84", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "323", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/323-02.jpg", + "image_is_video": "0", + "product_name": "Making Things Move DIY Mechanisms for Inventors - Dustyn Roberts", + "product_model": "", + "product_mpn": "ADA323", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "30.00", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/323", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "30.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "27.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "24.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1339", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1339-08.jpg", + "image_is_video": "0", + "product_name": "Hacking Electronics by Simon Monk", + "product_model": "", + "product_mpn": "ADA1339", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "515.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1339", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1261", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1261-04.jpg", + "image_is_video": "0", + "product_name": "Practical Electronics for Inventors, Fourth Edition", + "product_model": "", + "product_mpn": "ADA1261", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "40.00", + "product_shipping_weight": "1,995.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1261", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "40.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "36.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "32.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "203", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/203-01.jpg", + "image_is_video": "0", + "product_name": "Make: Electronics (Charles Platt) - 2nd Edition", + "product_model": "", + "product_mpn": "ADA203", + "product_master_category": "251", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "196.0", + "product_url": "https:\/\/www.adafruit.com\/product\/203", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "265", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/265-04.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Processing by Casey Reas & Ben Fry", + "product_model": "Second Edition", + "product_mpn": "ADA265", + "product_master_category": "252", + "product_manufacturer": null, + "product_price": "24.99", + "product_shipping_weight": "295.0", + "product_url": "https:\/\/www.adafruit.com\/product\/265", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.99", + "discounted_percent": 0, + "show_qty": "1-24", + "min_qty": 1 + }, + { + "discounted_price": "22.49", + "discounted_percent": "10", + "show_qty": "25+", + "min_qty": 25 + } + ] + }, + { + "product_id": "3621", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3621-01.jpg", + "image_is_video": "0", + "product_name": "Making Things Smart - JavaScript for Microcontrollers", + "product_model": "by Gordon Williams", + "product_mpn": "ADA3621", + "product_master_category": "252", + "product_manufacturer": "Make:", + "product_price": "29.95", + "product_shipping_weight": "725.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3621", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3639", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3639-01.jpg", + "image_is_video": "0", + "product_name": "Getting Started with the micro:bit", + "product_model": "by Wolfram Donat", + "product_mpn": "ADA3639", + "product_master_category": "252", + "product_manufacturer": "Make:", + "product_price": "19.95", + "product_shipping_weight": "233.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3639", + "product_stock": "9", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3706", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3706-01.jpg", + "image_is_video": "0", + "product_name": "Programming with MicroPython", + "product_model": "by Nicholas H. Tollervey", + "product_mpn": "ADA3706", + "product_master_category": "252", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "357.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3706", + "product_stock": "15", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1588", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1588-00.jpg", + "image_is_video": "0", + "product_name": "Bluefruit EZ-Link - Bluetooth Serial Link & Arduino Programmer", + "product_model": "v1.3", + "product_mpn": "ADA1588", + "product_master_category": "255", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1588", + "product_stock": "20", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1628", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1628-00.jpg", + "image_is_video": "0", + "product_name": "Bluefruit EZ-Link Shield - Bluetooth Arduino Serial & Programmer", + "product_model": "v1.3", + "product_mpn": "ADA1628", + "product_master_category": "255", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "17.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1628", + "product_stock": "9", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1469", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1469-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit HUZZAH CC3000 WiFi Breakout with Onboard Antenna", + "product_model": "v1.1", + "product_mpn": "ADA1469", + "product_master_category": "256", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "5.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1469", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1510", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1510-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit CC3000 WiFi Breakout with uFL Connector for Ext Antenna", + "product_model": "v1.1", + "product_mpn": "ADA1510", + "product_master_category": "256", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "5.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1510", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3320", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3320-06.jpg", + "image_is_video": "0", + "product_name": "ESP32 WiFi-BT-BLE MCU Module \/ ESP-WROOM-32", + "product_model": "", + "product_mpn": "ADA3320", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3320", + "product_stock": "in stock", + "products_hts": "8525.20.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3979", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3979-02.jpg", + "image_is_video": "0", + "product_name": "ESP32-WROVER-B Module - ESP32 with PSRAM Module", + "product_model": "", + "product_mpn": "ADA3979", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3979", + "product_stock": "in stock", + "products_hts": "8525.80.3050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4065", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4065-00.jpg", + "image_is_video": "0", + "product_name": "ESP8285 SMT Module - ESP8266 with 1MB FLASH", + "product_model": "ESP-M2", + "product_mpn": "ADA4065", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "5.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4065", + "product_stock": "50", + "products_hts": "8531.80.9051", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.95", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4653", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4653-00.jpg", + "image_is_video": "0", + "product_name": "ESP32-S2-WROVER Module - 4 MB flash and 2 MB PSRAM", + "product_model": "", + "product_mpn": "ADA4653", + "product_master_category": "256", + "product_manufacturer": "Espressif", + "product_price": "3.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4653", + "product_stock": "10", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4693", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4693-00.jpg", + "image_is_video": "0", + "product_name": "ESP32-S2 Saola 1R Dev Kit featuring ESP32-S2 WROVER", + "product_model": "", + "product_mpn": "ADA4693", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "14.50", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4693", + "product_stock": "in stock", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4729", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4729-00.jpg", + "image_is_video": "0", + "product_name": "ESP32-S2 Kaluga Dev Kit featuring ESP32-S2 WROVER", + "product_model": "", + "product_mpn": "ADA4729", + "product_master_category": "256", + "product_manufacturer": "Espressif", + "product_price": "54.95", + "product_shipping_weight": "330.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4729", + "product_stock": "58", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4760", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4760-00.jpg", + "image_is_video": "0", + "product_name": "ESP32-S2-WROVER-I Module with uFL - 4 MB flash and 2 MB PSRAM", + "product_model": "", + "product_mpn": "ADA4760", + "product_master_category": "256", + "product_manufacturer": "Espressif", + "product_price": "3.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4760", + "product_stock": "16", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4919", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4919-01.jpg", + "image_is_video": "0", + "product_name": "ESP32-S2 WROOM Module with PCB Antenna - 4 MB flash and no PSRAM", + "product_model": "4MB Flash", + "product_mpn": "ADA4919", + "product_master_category": "256", + "product_manufacturer": "Espressif", + "product_price": "3.25", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4919", + "product_stock": "0", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.93", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2127", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2127-05.jpg", + "image_is_video": "0", + "product_name": "Spark Core with Chip Antenna Rev 1.0", + "product_model": "", + "product_mpn": "ADA2127", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2127", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "39.95", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.95", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2653", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2653-00.jpg", + "image_is_video": "0", + "product_name": "PhoBot - Robotics Shield for Photon", + "product_model": "", + "product_mpn": "ADA2653", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "18.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2653", + "product_stock": "28", + "products_hts": "8542.90.00 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2022", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2022-03.jpg", + "image_is_video": "0", + "product_name": "ACKme WiConnect WiFi Module - Mackerel Evaluation Board", + "product_model": "", + "product_mpn": "ADA2022", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "54.95", + "product_shipping_weight": "59.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2022", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1130", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1130-00.jpg", + "image_is_video": "0", + "product_name": "Electric Imp April: Basic prototyping", + "product_model": "", + "product_mpn": "ADA1130", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "11.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1130", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1129", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1129-03.jpg", + "image_is_video": "0", + "product_name": "Electric Imp", + "product_model": "", + "product_mpn": "ADA1129", + "product_master_category": "256", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1129", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1098", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1098-00.jpg", + "image_is_video": "0", + "product_name": "Simple RF L4 Receiver - 315MHz Latching Selector Type", + "product_model": "", + "product_mpn": "ADA1098", + "product_master_category": "257", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1098", + "product_stock": "in stock", + "products_hts": "8526.92.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1097", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1097-05.jpg", + "image_is_video": "0", + "product_name": "Simple RF T4 Receiver - 315MHz Toggle Type", + "product_model": "", + "product_mpn": "ADA1097", + "product_master_category": "257", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "5.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1097", + "product_stock": "in stock", + "products_hts": "8526.92.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1096", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1096-05.jpg", + "image_is_video": "0", + "product_name": "Simple RF M4 Receiver - 315MHz Momentary Type", + "product_model": "", + "product_mpn": "ADA1096", + "product_master_category": "257", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1096", + "product_stock": "in stock", + "products_hts": "8526.92.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "944", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/944-01.jpg", + "image_is_video": "0", + "product_name": "2.4GHz Dipole Swivel Antenna with RP-SMA - 2dBi", + "product_model": "", + "product_mpn": "ADA944", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "11.5", + "product_url": "https:\/\/www.adafruit.com\/product\/944", + "product_stock": "in stock", + "products_hts": "8529.10.9000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "945", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/945-01.jpg", + "image_is_video": "0", + "product_name": "2.4GHz Dipole Swivel Antenna with RP-SMA - 5dBi", + "product_model": "", + "product_mpn": "ADA945", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "27.6", + "product_url": "https:\/\/www.adafruit.com\/product\/945", + "product_stock": "0", + "products_hts": "8529.10.9000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1991", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1991-02.jpg", + "image_is_video": "0", + "product_name": "Slim Sticker-type GSM\/Cellular Quad-Band Antenna - 3dBi uFL", + "product_model": "", + "product_mpn": "ADA1991", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1991", + "product_stock": "in stock", + "products_hts": "8529.10.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2308", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2308-01.jpg", + "image_is_video": "0", + "product_name": "2.4GHz Mini Flexible WiFi Antenna with uFL Connector", + "product_model": "100mm", + "product_mpn": "ADA2308", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2308", + "product_stock": "in stock", + "products_hts": "8529.10.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3237", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3237-00.jpg", + "image_is_video": "0", + "product_name": "Slim Sticker-type GSM\/Cellular Quad-Band Antenna - 3dBi - 200mm", + "product_model": "", + "product_mpn": "ADA3237", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3237", + "product_stock": "in stock", + "products_hts": "8529.10.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3340", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3340-00.jpg", + "image_is_video": "0", + "product_name": "900Mhz Antenna Kit - For LoPy, LoRa, etc", + "product_model": "", + "product_mpn": "ADA3340", + "product_master_category": "258", + "product_manufacturer": "Pycom", + "product_price": "12.75", + "product_shipping_weight": "25.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3340", + "product_stock": "in stock", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3584", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3584-00.jpg", + "image_is_video": "0", + "product_name": "Great Scott Gadgets ANT500 - 75 MHz to 1 GHz Telescope Antenna", + "product_model": "", + "product_mpn": "ADA3584", + "product_master_category": "258", + "product_manufacturer": "Great Scott Gadgets", + "product_price": "34.95", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3584", + "product_stock": "35", + "products_hts": "8529.10.9000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "3585", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3585-00.jpg", + "image_is_video": "0", + "product_name": "Great Scott Gadgets ANT700 - 300MHz to 1100MHz Telescope Antenna", + "product_model": "", + "product_mpn": "ADA3585", + "product_master_category": "258", + "product_manufacturer": "Great Scott Gadgets", + "product_price": "27.95", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3585", + "product_stock": "33", + "products_hts": "8529.10.9000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "25.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3623", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3623-00.jpg", + "image_is_video": "0", + "product_name": "Pycom LTE-M Cellular Antenna", + "product_model": "", + "product_mpn": "ADA3623", + "product_master_category": "258", + "product_manufacturer": "Pycom", + "product_price": "11.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3623", + "product_stock": "22", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4269", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4269-00.jpg", + "image_is_video": "0", + "product_name": "Simple Spring Antenna - 915MHz", + "product_model": "", + "product_mpn": "ADA4269", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4269", + "product_stock": "0", + "products_hts": "8529.10.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4394", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4394-00.jpg", + "image_is_video": "0", + "product_name": "Simple Spring Antenna - 433MHz", + "product_model": "", + "product_mpn": "ADA4394", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4394", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2460", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2460-03.jpg", + "image_is_video": "0", + "product_name": "Passive GPS Antenna uFL - 9mm x 9mm -2dBi gain", + "product_model": "", + "product_mpn": "ADA2460", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2460", + "product_stock": "in stock", + "products_hts": "8529.10.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2461", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2461-05.jpg", + "image_is_video": "0", + "product_name": "Passive GPS Antenna uFL - 15mm x 15mm 1 dBi gain", + "product_model": "", + "product_mpn": "ADA2461", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2461", + "product_stock": "in stock", + "products_hts": "8529.10.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1859", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1859-01.jpg", + "image_is_video": "0", + "product_name": "Mini GSM\/Cellular Quad-Band Antenna - 2dBi SMA Plug", + "product_model": "", + "product_mpn": "ADA1859", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1859", + "product_stock": "in stock", + "products_hts": "8529.10.9000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1858", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1858-01.jpg", + "image_is_video": "0", + "product_name": "Right-angle Mini GSM\/Cellular Quad-Band Antenna - 2dBi SMA Plug", + "product_model": "", + "product_mpn": "ADA1858", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1858", + "product_stock": "in stock", + "products_hts": "8529.10.9000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "960", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/960-04.jpg", + "image_is_video": "0", + "product_name": "GPS Antenna - External Active Antenna - 3-5V 28dB 5 Meter SMA", + "product_model": "", + "product_mpn": "ADA960", + "product_master_category": "258", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "99.0", + "product_url": "https:\/\/www.adafruit.com\/product\/960", + "product_stock": "in stock", + "products_hts": "8529.10.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1391", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1391-04.jpg", + "image_is_video": "1", + "product_name": "Keyfob 2-Button RF Remote Control - 315MHz", + "product_model": "", + "product_mpn": "ADA1391", + "product_master_category": "259", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "22.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1391", + "product_stock": "66", + "products_hts": "8526.92.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1392", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1392-04.jpg", + "image_is_video": "1", + "product_name": "Keyfob Single Button RF Remote Control - 315MHz", + "product_model": "", + "product_mpn": "ADA1392", + "product_master_category": "259", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "21.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1392", + "product_stock": "67", + "products_hts": "8526.92.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1095", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1095-02.jpg", + "image_is_video": "1", + "product_name": "Keyfob 4-Button RF Remote Control - 315MHz", + "product_model": "", + "product_mpn": "ADA1095", + "product_master_category": "259", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "21.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1095", + "product_stock": "in stock", + "products_hts": "8526.92.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "852", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/852-03.jpg", + "image_is_video": "0", + "product_name": "RP-SMA to uFL\/u.FL\/IPX\/IPEX RF Adapter Cable", + "product_model": "", + "product_mpn": "ADA852", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/852", + "product_stock": "48", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2888", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2888-00.jpg", + "image_is_video": "0", + "product_name": "BNC Male Plug Terminal Block", + "product_model": "", + "product_mpn": "ADA2888", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "11.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2888", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2889", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2889-00.jpg", + "image_is_video": "0", + "product_name": "BNC Female Jack Terminal Block", + "product_model": "", + "product_mpn": "ADA2889", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2889", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4642", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4642-02.jpg", + "image_is_video": "0", + "product_name": "Right Angle SMA Thru Hole RF Connector", + "product_model": "", + "product_mpn": "ADA4642", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4642", + "product_stock": "52", + "products_hts": "8536.69.4010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4643", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4643-02.jpg", + "image_is_video": "0", + "product_name": "Right Angle RP-SMA Thru Hole RF Connector", + "product_model": "", + "product_mpn": "ADA4643", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4643", + "product_stock": "in stock", + "products_hts": "8536.69.4010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4644", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4644-02.jpg", + "image_is_video": "0", + "product_name": "Straight SMA Thru Hole RF Connector", + "product_model": "", + "product_mpn": "ADA4644", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4644", + "product_stock": "68", + "products_hts": "8536.69.4010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1864", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1864-02.jpg", + "image_is_video": "0", + "product_name": "Edge-Launch SMA Connector for 0.8mm \/ 0.031\" Slim PCBs", + "product_model": "", + "product_mpn": "ADA1864", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1864", + "product_stock": "2", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1661", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1661-00.jpg", + "image_is_video": "0", + "product_name": "uFL SMT Antenna Connector", + "product_model": "", + "product_mpn": "ADA1661", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "0.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1661", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1865", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1865-04.jpg", + "image_is_video": "0", + "product_name": "Edge-Launch SMA Connector for 1.6mm \/ 0.062\" Thick PCBs", + "product_model": "", + "product_mpn": "ADA1865", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1865", + "product_stock": "57", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "919", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/919-04.jpg", + "image_is_video": "0", + "product_name": "RP-SMA Jack to SMA Plug RF Adapter", + "product_model": "", + "product_mpn": "ADA919", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/919", + "product_stock": "33", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1532", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1532-00.jpg", + "image_is_video": "0", + "product_name": "MCX Jack to SMA RF Cable Adapter", + "product_model": "", + "product_mpn": "ADA1532", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "10.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1532", + "product_stock": "54", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "920", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/920-05.jpg", + "image_is_video": "0", + "product_name": "SMA Jack to RP-SMA Plug RF Adapter", + "product_model": "", + "product_mpn": "ADA920", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/920", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1531", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1531-04.jpg", + "image_is_video": "0", + "product_name": "MCX Jack to BNC RF Cable Adapter", + "product_model": "", + "product_mpn": "ADA1531", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1531", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "851", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/851-03.jpg", + "image_is_video": "0", + "product_name": "SMA to uFL\/u.FL\/IPX\/IPEX RF Adapter Cable", + "product_model": "", + "product_mpn": "ADA851", + "product_master_category": "260", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/851", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1500", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1500-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Trinket - Mini Microcontroller - 3.3V Logic", + "product_model": "MicroUSB", + "product_mpn": "ADA1500", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1500", + "product_stock": "16", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1501", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1501-12.jpg", + "image_is_video": "0", + "product_name": "Adafruit Trinket - Mini Microcontroller - 5V Logic", + "product_model": "", + "product_mpn": "ADA1501", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1501", + "product_stock": "in stock", + "products_hts": "8473.30.0002", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2000", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2000-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pro Trinket - 5V 16MHz", + "product_model": "", + "product_mpn": "ADA2000", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "5.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2000", + "product_stock": "in stock", + "products_hts": "8473.30.0002", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2010", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2010-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pro Trinket - 3V 12MHz", + "product_model": "", + "product_mpn": "ADA2010", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2010", + "product_stock": "in stock", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2590", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2590-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Metro Mini 328 - Arduino-Compatible - 5V 16MHz", + "product_model": "", + "product_mpn": "ADA2590", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2590", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3500", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3500-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Trinket M0 - for use with CircuitPython & Arduino IDE", + "product_model": "", + "product_mpn": "ADA3500", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3500", + "product_stock": "in stock", + "products_hts": "8473.30.0002", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4870", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4870-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Neo Trinkey - SAMD21 USB Key with 4 NeoPixels", + "product_model": "", + "product_mpn": "ADA4870", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "3.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4870", + "product_stock": "in stock", + "products_hts": "8473.30.0002", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4964", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4964-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit Rotary Trinkey - USB NeoPixel Rotary Encoder", + "product_model": "", + "product_mpn": "ADA4964", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4964", + "product_stock": "in stock", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5020", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/5020-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoKey Trinkey - USB NeoPixel Mechanical Key Switch", + "product_model": "", + "product_mpn": "ADA5020", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "3.2", + "product_url": "https:\/\/www.adafruit.com\/product\/5020", + "product_stock": "in stock", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5021", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/5021-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit Slider Trinkey - USB NeoPixel Slide Potentiometer", + "product_model": "", + "product_mpn": "ADA5021", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "7.7", + "product_url": "https:\/\/www.adafruit.com\/product\/5021", + "product_stock": "22", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "5056", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/5056-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit Trinkey QT2040 - RP2040 USB Key with Stemma QT", + "product_model": "", + "product_mpn": "ADA5056", + "product_master_category": "261", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5056", + "product_stock": "-1", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "11-3", + "min_qty": 1 + } + ] + }, + { + "product_id": "1121", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1121-03.jpg", + "image_is_video": "0", + "product_name": "4GB SD card for Raspberry Pi preinstalled with Raspbian Wheezy", + "product_model": "2015-01-31", + "product_mpn": "ADA1121", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1121", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1583", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1583-06.jpg", + "image_is_video": "0", + "product_name": "16GB Card with NOOBS 3.0", + "product_model": "", + "product_mpn": "ADA1583", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1583", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2767", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2767-00.jpg", + "image_is_video": "0", + "product_name": "8GB SD Card with Raspbian Stretch Operating System", + "product_model": "", + "product_mpn": "ADA2767", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2767", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2820", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2820-05.jpg", + "image_is_video": "0", + "product_name": "16GB SD Card with Buster Lite", + "product_model": "", + "product_mpn": "ADA2820", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2820", + "product_stock": "in stock", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3259", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3259-04.jpg", + "image_is_video": "0", + "product_name": "8 GB MicroSD Card with full PIXEL desktop NOOBS", + "product_model": "v2.8", + "product_mpn": "ADA3259", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "9.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3259", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4266", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4266-00.jpg", + "image_is_video": "0", + "product_name": "16GB Card with NOOBS 3.1 for Raspberry Pi Computers including 4", + "product_model": "", + "product_mpn": "ADA4266", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4266", + "product_stock": "in stock", + "products_hts": "8523.52.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1582", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1582-00.jpg", + "image_is_video": "0", + "product_name": "4GB Card with NOOBS Lite 1.4", + "product_model": "", + "product_mpn": "ADA1582", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1582", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1562", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1562-00.jpg", + "image_is_video": "0", + "product_name": "4GB SD Card for Raspberry Pi preinstalled with RaspBMC (XBMC)", + "product_model": "", + "product_mpn": "ADA1562", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1562", + "product_stock": "0", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1537", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1537-02.jpg", + "image_is_video": "0", + "product_name": "4GB SD card for Raspberry Pi preinstalled with Coder v.9", + "product_model": "", + "product_mpn": "ADA1537", + "product_master_category": "262", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1537", + "product_stock": "0", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1792", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1792-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit LED Sequins - Rose Pink - Pack of 5", + "product_model": "", + "product_mpn": "ADA1792", + "product_master_category": "263", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1792", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3746", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3746-00.jpg", + "image_is_video": "1", + "product_name": "Bare Conductive Electric Paint Lamp Kit", + "product_model": "", + "product_mpn": "ADA3746", + "product_master_category": "265", + "product_manufacturer": "Bare Conductive", + "product_price": "54.95", + "product_shipping_weight": "207.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3746", + "product_stock": "0", + "products_hts": "3206.49.6050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2704", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2704-06.jpg", + "image_is_video": "0", + "product_name": "Bare Conductive Starter Kit", + "product_model": "", + "product_mpn": "ADA2704", + "product_master_category": "265", + "product_manufacturer": "Bare Conductive", + "product_price": "149.95", + "product_shipping_weight": "907.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2704", + "product_stock": "-3", + "products_hts": "3206.49.4000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1653", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1653-11.jpg", + "image_is_video": "0", + "product_name": "Bare Flashing Card Set - Celebration Circuit", + "product_model": "", + "product_mpn": "ADA1653", + "product_master_category": "265", + "product_manufacturer": "Bare Conductive", + "product_price": "24.95", + "product_shipping_weight": "77.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1653", + "product_stock": "0", + "products_hts": "3206.49.4000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4163", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4163-01.jpg", + "image_is_video": "0", + "product_name": "Side-light Fiber Optic Tube - 4mm Diameter - 1 meter long", + "product_model": "", + "product_mpn": "ADA4163", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "19.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4163", + "product_stock": "48", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4164", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4164-01.jpg", + "image_is_video": "0", + "product_name": "Side-light Fiber Optic Tube - 5mm Diameter - 1 meter long", + "product_model": "", + "product_mpn": "ADA4164", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "29.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4164", + "product_stock": "42", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4594", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4594-04.jpg", + "image_is_video": "1", + "product_name": "Black LED Diffusion Acrylic Panel 12\" x 12\" - 0.1\" \/ 2.6mm thick", + "product_model": "", + "product_mpn": "ADA4594", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "330.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4594", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4749", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4749-02.jpg", + "image_is_video": "1", + "product_name": "Black LED Diffusion Acrylic Panel - 10.2\" x 5.1\"", + "product_model": "0.1\" \/ 2.6mm thick", + "product_mpn": "ADA4749", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "117.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4749", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2172", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2172-02.jpg", + "image_is_video": "0", + "product_name": "8mm Plastic Bevel LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2172", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2172", + "product_stock": "79", + "products_hts": "8541.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2179", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2179-02.jpg", + "image_is_video": "0", + "product_name": "3mm Plastic Bevel LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2179", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2179", + "product_stock": "in stock", + "products_hts": "8541.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2171", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2171-02.jpg", + "image_is_video": "0", + "product_name": "10mm Plastic Bevel LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2171", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2171", + "product_stock": "in stock", + "products_hts": "8541.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2174", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2174-02.jpg", + "image_is_video": "0", + "product_name": "5mm Plastic Bevel LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2174", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2174", + "product_stock": "in stock", + "products_hts": "8541.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2176", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2176-01.jpg", + "image_is_video": "0", + "product_name": "5mm Chromed Metal Narrow Bevel LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2176", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "12.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2176", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2175", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2175-02.jpg", + "image_is_video": "0", + "product_name": "5mm Plastic Flat LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2175", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2175", + "product_stock": "in stock", + "products_hts": "8541.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2173", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2173-01.jpg", + "image_is_video": "0", + "product_name": "8mm Chromed Metal Wide Bevel LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2173", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "32.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2173", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2177", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2177-01.jpg", + "image_is_video": "0", + "product_name": "5mm Chromed Metal Wide Convex Bevel LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2177", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2177", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2178", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2178-01.jpg", + "image_is_video": "0", + "product_name": "5mm Chromed Metal Wide Concave Bevel LED Holder - Pack of 5", + "product_model": "", + "product_mpn": "ADA2178", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "31.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2178", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "389", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/389-03.jpg", + "image_is_video": "0", + "product_name": "Mini Remote Control", + "product_model": "", + "product_mpn": "ADA389", + "product_master_category": "266", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "14.6", + "product_url": "https:\/\/www.adafruit.com\/product\/389", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1844", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1844-01.jpg", + "image_is_video": "0", + "product_name": "Delta Twister Flying Machine Kit by Gakken", + "product_model": "", + "product_mpn": "ADA1844", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "41.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1844", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "41.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "37.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "33.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1822", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1822-02.jpg", + "image_is_video": "0", + "product_name": "Mini-Theremin Kit from Gakken", + "product_model": "", + "product_mpn": "ADA1822", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "34.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1822", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1840", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1840-01.jpg", + "image_is_video": "0", + "product_name": "Electronic Blocks Mini", + "product_model": "", + "product_mpn": "ADA1840", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "25.00", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1840", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "25.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "20.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2333", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2333-01.jpg", + "image_is_video": "0", + "product_name": "Steel Drum Kit by Gakken", + "product_model": "", + "product_mpn": "ADA2333", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "49.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2333", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2332", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2332-02.jpg", + "image_is_video": "0", + "product_name": "Pocket Miku Vocaloid Synth by Gakken", + "product_model": "", + "product_mpn": "ADA2332", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "59.95", + "product_shipping_weight": "293.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2332", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2032", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2032-00.jpg", + "image_is_video": "0", + "product_name": "Auto Writing Machine by Gakken", + "product_model": "", + "product_mpn": "ADA2032", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "44.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2032", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1823", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1823-01.jpg", + "image_is_video": "0", + "product_name": "35mm Twin Lens Reflex Camera Kit from Gakken", + "product_model": "", + "product_mpn": "ADA1823", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "35.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1823", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "35.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "32.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "28.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1841", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1841-03.jpg", + "image_is_video": "0", + "product_name": "Theo Jansen-style Biped Robot kit by Gakken", + "product_model": "", + "product_mpn": "ADA1841", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "44.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1841", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1834", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1834-01.jpg", + "image_is_video": "0", + "product_name": "AKARI Origami LED Lamp Shade Kit from Gakken", + "product_model": "", + "product_mpn": "ADA1834", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "41.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1834", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "41.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "37.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "33.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1842", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1842-01.jpg", + "image_is_video": "0", + "product_name": "Theo Jansen's Mini Rhinoceros Kit by Gakken", + "product_model": "", + "product_mpn": "ADA1842", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "49.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1842", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1812", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1812-03.jpg", + "image_is_video": "0", + "product_name": "Edo-Style Clock Kit from Gakken", + "product_model": "", + "product_mpn": "ADA1812", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "39.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1812", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1845", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1845-01.jpg", + "image_is_video": "0", + "product_name": "Desktop Robot Cleaner Kit by Gakken", + "product_model": "", + "product_mpn": "ADA1845", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "44.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1845", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1843", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1843-03.jpg", + "image_is_video": "0", + "product_name": "Edison Wax Candle Cylinder Phonograph Kit by Gakken", + "product_model": "", + "product_mpn": "ADA1843", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "54.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1843", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "43.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1835", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1835-01.jpg", + "image_is_video": "0", + "product_name": "Theo Jansen's Mini Strandbeest Kit by Gakken", + "product_model": "", + "product_mpn": "ADA1835", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "49.95", + "product_shipping_weight": "720.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1835", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1846", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1846-01.jpg", + "image_is_video": "0", + "product_name": "V-twin Steam Engine Kit by Gakken", + "product_model": "", + "product_mpn": "ADA1846", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "45.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1846", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1832", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1832-01.jpg", + "image_is_video": "0", + "product_name": "Mini Electric Guitar Kit from Gakken", + "product_model": "", + "product_mpn": "ADA1832", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "54.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1832", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "43.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1811", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1811-01.jpg", + "image_is_video": "0", + "product_name": "The Pinhole Planetarium Kit from Gakken", + "product_model": "", + "product_mpn": "ADA1811", + "product_master_category": "269", + "product_manufacturer": "Gakken", + "product_price": "49.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1811", + "product_stock": "-3", + "products_hts": "9405.20.8010", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2211", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2211-00.jpg", + "image_is_video": "0", + "product_name": "32.768 KHz Crystal - 12.5pF capacitor load", + "product_model": "", + "product_mpn": "ADA2211", + "product_master_category": "270", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2211", + "product_stock": "43", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2214", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2214-00.jpg", + "image_is_video": "0", + "product_name": "12 MHz Crystal + 20pF capacitors", + "product_model": "", + "product_mpn": "ADA2214", + "product_master_category": "270", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2214", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2212", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2212-00.jpg", + "image_is_video": "0", + "product_name": "4 MHz Crystal + 20pF capacitors", + "product_model": "", + "product_mpn": "ADA2212", + "product_master_category": "270", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2212", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2213", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2213-00.jpg", + "image_is_video": "0", + "product_name": "8 MHz Crystal + 20pF capacitors", + "product_model": "", + "product_mpn": "ADA2213", + "product_master_category": "270", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2213", + "product_stock": "80", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1874", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1874-02.jpg", + "image_is_video": "0", + "product_name": "12 MHz Ceramic Resonator \/ Oscillator", + "product_model": "", + "product_mpn": "ADA1874", + "product_master_category": "270", + "product_manufacturer": null, + "product_price": "0.85", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1874", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.85", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.77", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.68", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1872", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1872-00.jpg", + "image_is_video": "0", + "product_name": "8 MHz Ceramic Resonator \/ Oscillator", + "product_model": "", + "product_mpn": "ADA1872", + "product_master_category": "270", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "0.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1872", + "product_stock": "24", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2215", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2215-00.jpg", + "image_is_video": "0", + "product_name": "16 MHz Crystal + 20pF capacitors", + "product_model": "", + "product_mpn": "ADA2215", + "product_master_category": "270", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2215", + "product_stock": "in stock", + "products_hts": "8541.60.0050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1873", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1873-02.jpg", + "image_is_video": "0", + "product_name": "16 MHz Ceramic Resonator \/ Oscillator", + "product_model": "", + "product_mpn": "ADA1873", + "product_master_category": "270", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1873", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1669", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1669-06.jpg", + "image_is_video": "0", + "product_name": "Stereo Enclosed Speaker Set - 3W 4 Ohm", + "product_model": "", + "product_mpn": "ADA1669", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "48.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1669", + "product_stock": "in stock", + "products_hts": "85.18.2900", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1674", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1674-00.jpg", + "image_is_video": "0", + "product_name": "Bone Conductor Transducer with Wires - 8 Ohm 1 Watt", + "product_model": "", + "product_mpn": "ADA1674", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1674", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1732", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1732-12.jpg", + "image_is_video": "0", + "product_name": "20W 4 Ohm Full Range Speaker", + "product_model": "XS-GTF1027", + "product_mpn": "ADA1732", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "318.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1732", + "product_stock": "in stock", + "products_hts": "85.18.2900", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3351", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3351-01.jpg", + "image_is_video": "0", + "product_name": "Mono Enclosed Speaker - 3W 4 Ohm", + "product_model": "", + "product_mpn": "ADA3351", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "27.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3351", + "product_stock": "in stock", + "products_hts": "85.18.2900", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3369", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3369-00.jpg", + "image_is_video": "0", + "product_name": "Mini External USB Stereo Speaker", + "product_model": "", + "product_mpn": "ADA3369", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "100.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3369", + "product_stock": "30", + "products_hts": "8518.29.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3923", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3923-04.jpg", + "image_is_video": "0", + "product_name": "Mini Oval Speaker - 8 Ohm 1 Watt", + "product_model": "", + "product_mpn": "ADA3923", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3923", + "product_stock": "in stock", + "products_hts": "8518.29.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3968", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3968-00.jpg", + "image_is_video": "0", + "product_name": "Speaker - 40mm Diameter - 4 Ohm 3 Watt", + "product_model": "", + "product_mpn": "ADA3968", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3968", + "product_stock": "in stock", + "products_hts": "8518.29.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4227", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4227-06.jpg", + "image_is_video": "0", + "product_name": "Mini Oval Speaker with Short Wires - 8 Ohm 1 Watt", + "product_model": "", + "product_mpn": "ADA4227", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4227", + "product_stock": "in stock", + "products_hts": "8518.29.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4402", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4402-11.jpg", + "image_is_video": "0", + "product_name": "Monoprice 5-Watt Guitar Amplifier, Portable Recorder", + "product_model": "with SD, USB and 3.5mm Audio", + "product_mpn": "ADA4402", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "300.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4402", + "product_stock": "-3", + "products_hts": "8518.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4445", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4445-01.jpg", + "image_is_video": "0", + "product_name": "Mono Enclosed Speaker with Plain Wires - 3W 4 Ohm", + "product_model": "", + "product_mpn": "ADA4445", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4445", + "product_stock": "in stock", + "products_hts": "8518.29.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1891", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1891-00.jpg", + "image_is_video": "0", + "product_name": "Thin Plastic Speaker w\/Wires - 8 ohm 0.25W", + "product_model": "", + "product_mpn": "ADA1891", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "5.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1891", + "product_stock": "in stock", + "products_hts": "8518.29.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1890", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1890-06.jpg", + "image_is_video": "0", + "product_name": "Mini Metal Speaker w\/ Wires - 8 ohm 0.5W", + "product_model": "", + "product_mpn": "ADA1890", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1890", + "product_stock": "in stock", + "products_hts": "85.18.2900", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1313", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1313-00.jpg", + "image_is_video": "0", + "product_name": "Speaker - 3\" Diameter - 8 Ohm 1 Watt", + "product_model": "", + "product_mpn": "ADA1313", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "53.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1313", + "product_stock": "in stock", + "products_hts": "85.18.2900", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1785", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1785-04.jpg", + "image_is_video": "0", + "product_name": "Medium Surface Transducer with Wires - 4 Ohm 3 Watt", + "product_model": "", + "product_mpn": "ADA1785", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "57.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1785", + "product_stock": "0", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1314", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1314-00.jpg", + "image_is_video": "0", + "product_name": "Speaker - 3\" Diameter - 4 Ohm 3 Watt", + "product_model": "", + "product_mpn": "ADA1314", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "53.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1314", + "product_stock": "in stock", + "products_hts": "85.18.2900", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1363", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1363-05.jpg", + "image_is_video": "0", + "product_name": "USB Powered Speakers", + "product_model": "", + "product_mpn": "ADA1363", + "product_master_category": "271", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "252.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1363", + "product_stock": "in stock", + "products_hts": "8518.29.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2790", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2790-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm (1\/8\") Stereo Audio Plug Terminal Block", + "product_model": "", + "product_mpn": "ADA2790", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2790", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2911", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2911-01.jpg", + "image_is_video": "0", + "product_name": "1\/4\" (6.35mm) Stereo Plug Terminal Block", + "product_model": "", + "product_mpn": "ADA2911", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "19.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2911", + "product_stock": "32", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3694", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3694-00.jpg", + "image_is_video": "0", + "product_name": "Solder-Free Stackable Banana Plugs 4mm - Pack of 5 Multi-Color", + "product_model": "", + "product_mpn": "ADA3694", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "25.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3694", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4171", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4171-02.jpg", + "image_is_video": "0", + "product_name": "Dual RCA Jack for Adafruit I2S Audio Bonnet", + "product_model": "", + "product_mpn": "ADA4171", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4171", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1802", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1802-00.jpg", + "image_is_video": "0", + "product_name": "1\/4\" (6.35mm) DIY Mono Plug", + "product_model": "", + "product_mpn": "ADA1802", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "11.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1802", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1804", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1804-00.jpg", + "image_is_video": "0", + "product_name": "1\/4\" (6.35mm) DIY Stereo In-Line Jack", + "product_model": "", + "product_mpn": "ADA1804", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "18.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1804", + "product_stock": "31", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1803", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1803-00.jpg", + "image_is_video": "0", + "product_name": "1\/4\" (6.35mm) DIY Stereo Plug", + "product_model": "", + "product_mpn": "ADA1803", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1803", + "product_stock": "50", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1798", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1798-01.jpg", + "image_is_video": "0", + "product_name": "2.5mm DIY Stereo Plug Connector", + "product_model": "", + "product_mpn": "ADA1798", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1798", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1801", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1801-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm (1\/8\") Stereo DIY \"Free-Hanging\" In-Line Jack", + "product_model": "", + "product_mpn": "ADA1801", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1801", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1800", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1800-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm (1\/8\") Stereo DIY Plug", + "product_model": "", + "product_mpn": "ADA1800", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1800", + "product_stock": "70", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1799", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1799-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm (1\/8\") DIY 4-Pole (TRRS) Plug", + "product_model": "", + "product_mpn": "ADA1799", + "product_master_category": "272", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1799", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1312", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1312-00.jpg", + "image_is_video": "0", + "product_name": "Breadboard-friendly RGB Smart NeoPixel - Pack of 4", + "product_model": "", + "product_mpn": "ADA1312", + "product_master_category": "275", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1312", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1378", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1378-02.jpg", + "image_is_video": "0", + "product_name": "WS2811 NeoPixel LED Driver Chip - 10 Pack", + "product_model": "", + "product_mpn": "ADA1378", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1378", + "product_stock": "-2", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1558", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1558-00.jpg", + "image_is_video": "0", + "product_name": "Breadboard-friendly RGB Smart NeoPixel - Sheet of 25", + "product_model": "", + "product_mpn": "ADA1558", + "product_master_category": "275", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "13.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1558", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1612", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1612-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Mini Button PCB - Pack of 5", + "product_model": "", + "product_mpn": "ADA1612", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1612", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1655", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1655-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel 5050 RGB LED with Integrated Driver Chip - 10 Pack", + "product_model": "", + "product_mpn": "ADA1655", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1655", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1734", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1734-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Diffused 8mm Through-Hole LED - 5 Pack", + "product_model": "", + "product_mpn": "ADA1734", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1734", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1938", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1938-01.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Diffused 5mm Through-Hole LED - 5 Pack", + "product_model": "", + "product_mpn": "ADA1938", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1938", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2375", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2375-01.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Cool White LED w\/ Integrated Driver Chip - 10 Pack", + "product_model": "~6000K", + "product_mpn": "ADA2375", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2375", + "product_stock": "67", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2376", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2376-01.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Warm White LED w\/ Integrated Driver Chip - 10 Pack", + "product_model": "~3000K", + "product_mpn": "ADA2376", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2376", + "product_stock": "66", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2659", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2659-03.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Mini 3535 RGB LEDs w\/ Integrated Driver Chip - White", + "product_model": "Pack of 10", + "product_mpn": "ADA2659", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2659", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2686", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2686-03.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Mini 3535 RGB LEDs w\/ Integrated Driver Chip - Black", + "product_model": "Pack of 10", + "product_mpn": "ADA2686", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2686", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2757", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2757-04.jpg", + "image_is_video": "0", + "product_name": "NeoPixel RGBW LEDs w\/ Integrated Driver Chip - Warm White", + "product_model": "~3000K - White Casing - 10 Pack", + "product_mpn": "ADA2757", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "14.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2757", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2758", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2758-04.jpg", + "image_is_video": "0", + "product_name": "NeoPixel RGBW LEDs w\/ Integrated Driver Chip - Natural White", + "product_model": "~4500K - White Casing - 10 Pack", + "product_mpn": "ADA2758", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2758", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2759", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2759-04.jpg", + "image_is_video": "0", + "product_name": "NeoPixel RGBW LEDs w\/ Integrated Driver Chip - Cool White", + "product_model": "~6000K - White Casing - 10 Pack", + "product_mpn": "ADA2759", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2759", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2760", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2760-04.jpg", + "image_is_video": "0", + "product_name": "NeoPixel RGBW LEDs w\/ Integrated Driver Chip - Warm White", + "product_model": "~3000K - Black Casing - 10 Pack", + "product_mpn": "ADA2760", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "14.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2760", + "product_stock": "48", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2761", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2761-04.jpg", + "image_is_video": "0", + "product_name": "NeoPixel RGBW LEDs w\/ Integrated Driver Chip - Natural White", + "product_model": "~4500K - Black Casing - 10 Pack", + "product_mpn": "ADA2761", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2761", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2762", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2762-04.jpg", + "image_is_video": "0", + "product_name": "NeoPixel RGBW LEDs w\/ Integrated Driver Chip - Cool White", + "product_model": "~6000K - Black Casing - 10 Pack", + "product_mpn": "ADA2762", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2762", + "product_stock": "74", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3094", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3094-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel RGB 5050 LED with Integrated Driver Chip - 100 Pack", + "product_model": "SK6812", + "product_mpn": "ADA3094", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "14.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3094", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3484", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3484-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Nano 2427 RGB LEDs w\/ Integrated Driver Chip - 10 Pack", + "product_model": "", + "product_mpn": "ADA3484", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3484", + "product_stock": "48", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4044", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4044-06.jpg", + "image_is_video": "1", + "product_name": "No-Foil Flat Back Rainbow Crystals for NeoPixel LEDs - 100 pack", + "product_model": "SS16", + "product_mpn": "ADA4044", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4044", + "product_stock": "44", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4356", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4356-03.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Mini Button PCB - Pack of 50", + "product_model": "", + "product_mpn": "ADA4356", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "17.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4356", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4492", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4492-03.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Addressable 1515 LEDs (1.5mm x 1.5mm) - 10 pack", + "product_model": "SK6805-E-J", + "product_mpn": "ADA4492", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4492", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4544", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4544-06.jpg", + "image_is_video": "1", + "product_name": "Ultra Bright 3 Watt Chainable NeoPixel LED", + "product_model": "WS2811", + "product_mpn": "ADA4544", + "product_master_category": "275", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "12.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4544", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4684", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4684-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Nano 2020 RGB LEDs - 10-pack", + "product_model": "WS2812B", + "product_mpn": "ADA4684", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4684", + "product_stock": "-3", + "products_hts": "8512.20.2040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4691", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4691-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Side-Light RGB LED w\/ Integrated Driver Chip - 10-pack", + "product_model": "SK6812B 4020", + "product_mpn": "ADA4691", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4691", + "product_stock": "in stock", + "products_hts": "8512.20.2040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4776", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4776-00.jpg", + "image_is_video": "1", + "product_name": "NeoPixel RGBW Mini Button PCB - Pack of 10", + "product_model": "", + "product_mpn": "ADA4776", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4776", + "product_stock": "in stock", + "products_hts": "9405.40.8410", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4892", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4892-03.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Addressable RGB LEDs - Slim Flat 3.2mm x 1.0mm 10 pack", + "product_model": "SK6812-EC3210F", + "product_mpn": "ADA4892", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4892", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4893", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4893-03.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Addressable RGB LEDs - Slim Round 3.2mm x 1.0mm 10 pack", + "product_model": "SK68XX-EC3210R", + "product_mpn": "ADA4893", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4893", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4957", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4957-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Mini 3535 RGB LEDs w\/ Integrated Driver Chip - Black", + "product_model": "Pack of 100", + "product_mpn": "ADA4957", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4957", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4960", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4960-00.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Reverse Mount RGB LEDs - 10 Pack of SK6812-E", + "product_model": "", + "product_mpn": "ADA4960", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4960", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1379", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1379-04.jpg", + "image_is_video": "0", + "product_name": "5050 RGB LED with Integrated Driver Chip - 10 Pack", + "product_model": "", + "product_mpn": "ADA1379", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1379", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1837", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1837-04.jpg", + "image_is_video": "0", + "product_name": "NeoPixel Clear 5mm Through-Hole LED - 5 Pack", + "product_model": "", + "product_mpn": "ADA1837", + "product_master_category": "275", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1837", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1559", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1559-00.jpg", + "image_is_video": "0", + "product_name": "Flora RGB Smart NeoPixel version 2 - Sheet of 20", + "product_model": "", + "product_mpn": "ADA1559", + "product_master_category": "275", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "12.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1559", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1779", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1779-00.jpg", + "image_is_video": "0", + "product_name": "OctoWS2811 Adapter for Teensy 3.1 - Control tons of NeoPixels!", + "product_model": "", + "product_mpn": "ADA1779", + "product_master_category": "277", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1779", + "product_stock": "80", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.63", + "discounted_percent": "15", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1689", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1689-00.jpg", + "image_is_video": "0", + "product_name": "FadeCandy - Dithering USB-Controlled Driver for RGB NeoPixels", + "product_model": "", + "product_mpn": "ADA1689", + "product_master_category": "277", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1689", + "product_stock": "22", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1719", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1719-00.jpg", + "image_is_video": "0", + "product_name": "Bi-Color (Red\/Green) 12-LED Bargraph - Pack of 2", + "product_model": "", + "product_mpn": "ADA1719", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1719", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1813", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1813-05.jpg", + "image_is_video": "0", + "product_name": "10 Segment Light Bar Graph LED Display - Amber", + "product_model": "KWL-R1025UAB", + "product_mpn": "ADA1813", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1813", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1816", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1816-05.jpg", + "image_is_video": "0", + "product_name": "10 Segment Light Bar Graph LED Display - White", + "product_model": "KWL-R1025WB-Y", + "product_mpn": "ADA1816", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1816", + "product_stock": "-10", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "459", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/459-00.jpg", + "image_is_video": "0", + "product_name": "Bi-Color (Red\/Green) 12-LED Bargraph", + "product_model": "", + "product_mpn": "ADA459", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/459", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1922", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1922-04.jpg", + "image_is_video": "0", + "product_name": "10 Segment Light Bar Graph LED Display - Yellow", + "product_model": "", + "product_mpn": "ADA1922", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1922", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1923", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1923-05.jpg", + "image_is_video": "0", + "product_name": "10 Segment Light Bar Graph LED Display - Yellow-Green", + "product_model": "", + "product_mpn": "ADA1923", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1923", + "product_stock": "85", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1921", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1921-04.jpg", + "image_is_video": "0", + "product_name": "10 Segment Light Bar Graph LED Display - Red", + "product_model": "", + "product_mpn": "ADA1921", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1921", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1814", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1814-01.jpg", + "image_is_video": "0", + "product_name": "10 Segment Light Bar Graph LED Display - Pure Green", + "product_model": "KWL-R1025PGB", + "product_mpn": "ADA1814", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1814", + "product_stock": "1", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1815", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1815-04.jpg", + "image_is_video": "0", + "product_name": "10 Segment Light Bar Graph LED Display - Blue", + "product_model": "KWL-R1025BB", + "product_mpn": "ADA1815", + "product_master_category": "279", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1815", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1721", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1721-00.jpg", + "image_is_video": "0", + "product_name": "Bi-Color (Red\/Green) 24-Bar Bargraph w\/I2C Backpack Kit", + "product_model": "", + "product_mpn": "ADA1721", + "product_master_category": "279", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "14.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1721", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1945", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1945-00.jpg", + "image_is_video": "0", + "product_name": "UNTZtrument Add-on Acrylic Tweaker\/Hacker Panel", + "product_model": "", + "product_mpn": "ADA1945", + "product_master_category": "280", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "13.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1945", + "product_stock": "-3", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2013", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2013-01.jpg", + "image_is_video": "0", + "product_name": "HELLA UNTZtrument Add-on Acrylic Tweaker\/Hacker Panel", + "product_model": "", + "product_mpn": "ADA2013", + "product_master_category": "280", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "26.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2013", + "product_stock": "16", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3954", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3954-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoTrellis RGB Driver PCB for 4x4 Keypad", + "product_model": "", + "product_mpn": "ADA3954", + "product_master_category": "280", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "15.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3954", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1999", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1999-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit HELLA UNTZtrument! Open-Source 16x8 Grid Controller Kit", + "product_model": "White LEDs", + "product_mpn": "ADA1999", + "product_master_category": "280", + "product_manufacturer": "Adafruit", + "product_price": "199.99", + "product_shipping_weight": "997.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1999", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "199.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "179.99", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "159.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1929", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1929-08.jpg", + "image_is_video": "1", + "product_name": "Adafruit 8x8 NeoTrellis Feather M4 Kit Pack", + "product_model": "", + "product_mpn": "ADA1929", + "product_master_category": "280", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "373.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1929", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1963", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1963-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA - Mini Cellular GSM Breakout - SMA Version", + "product_model": "v1", + "product_mpn": "ADA1963", + "product_master_category": "281", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "12.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1963", + "product_stock": "22", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2468", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2468-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA 800 Shield - Voice\/Data Cellular GSM for Arduino", + "product_model": "", + "product_mpn": "ADA2468", + "product_master_category": "281", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "22.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2468", + "product_stock": "-10", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2542", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2542-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA 808 - Mini Cellular GSM + GPS Breakout", + "product_model": "", + "product_mpn": "ADA2542", + "product_master_category": "281", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "15.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2542", + "product_stock": "in stock", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2687", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2687-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA 3G Cellular Breakout - American version", + "product_model": "Without Free Ting Sim Card", + "product_mpn": "ADA2687", + "product_master_category": "281", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "21.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2687", + "product_stock": "in stock", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2696", + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2691", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2691-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA 3G Cellular Breakout - European version", + "product_model": "", + "product_mpn": "ADA2691", + "product_master_category": "281", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "20.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2691", + "product_stock": "in stock", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2696", + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-9", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100-99", + "min_qty": 100 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2521", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2521-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA - uFL Version Starter Pack", + "product_model": "", + "product_mpn": "ADA2521", + "product_master_category": "281", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "63.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2521", + "product_stock": "18", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2522", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2522-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA 800 Breakout Board Starter Pack - SMA Version", + "product_model": "", + "product_mpn": "ADA2522", + "product_master_category": "281", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "71.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2522", + "product_stock": "22", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2523", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2523-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA 800 uFL Shield Starter Pack", + "product_model": "", + "product_mpn": "ADA2523", + "product_master_category": "281", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "73.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2523", + "product_stock": "-10", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3890", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3890-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Ribbon Cable - 10 Wire 1 Meter Long", + "product_model": "28AWG Black", + "product_mpn": "ADA3890", + "product_master_category": "282", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "23.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3890", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3927", + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3891", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3891-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Ribbon Cable - 4 Wires 1 Meter Long", + "product_model": "28AWG Black", + "product_mpn": "ADA3891", + "product_master_category": "282", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3891", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3927", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1972", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1972-02.jpg", + "image_is_video": "0", + "product_name": "Chibitronics Starter Kit", + "product_model": "", + "product_mpn": "ADA1972", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "29.95", + "product_shipping_weight": "238.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1972", + "product_stock": "41", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1975", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1975-01.jpg", + "image_is_video": "0", + "product_name": "Chibitronics Sensors Add-On Pack", + "product_model": "", + "product_mpn": "ADA1975", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "24.95", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1975", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3674", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3674-04.jpg", + "image_is_video": "1", + "product_name": "Love To Code Chibi Chip with Cable", + "product_model": "", + "product_mpn": "ADA3674", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "29.95", + "product_shipping_weight": "51.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3674", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3698", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3698-00.jpg", + "image_is_video": "0", + "product_name": "Chibi Clip", + "product_model": "", + "product_mpn": "ADA3698", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "9.95", + "product_shipping_weight": "44.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3698", + "product_stock": "8", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3854", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3854-08.jpg", + "image_is_video": "0", + "product_name": "Love to Code Creative Coding Kit - Chibi Starting Kit", + "product_model": "", + "product_mpn": "ADA3854", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "85.00", + "product_shipping_weight": "976.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3854", + "product_stock": "-1", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3901", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3901-00.jpg", + "image_is_video": "0", + "product_name": "Love To Code Chibi Scope", + "product_model": "", + "product_mpn": "ADA3901", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "30.00", + "product_shipping_weight": "66.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3901", + "product_stock": "47", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2275", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2275-00.jpg", + "image_is_video": "0", + "product_name": "Chibitronics Circuit Stickers - Holiday Card Kit Pack", + "product_model": "", + "product_mpn": "ADA2275", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "24.95", + "product_shipping_weight": "115.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2275", + "product_stock": "-3", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1974", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1974-03.jpg", + "image_is_video": "1", + "product_name": "Chibitronics Effects Add-On Pack", + "product_model": "", + "product_mpn": "ADA1974", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "18.00", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1974", + "product_stock": "10", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1977", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1977-02.jpg", + "image_is_video": "0", + "product_name": "Chibitronics White LEDs Add-On Pack", + "product_model": "", + "product_mpn": "ADA1977", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "24.95", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1977", + "product_stock": "11", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1976", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1976-04.jpg", + "image_is_video": "0", + "product_name": "Chibitronics Color LEDs Add-On Pack", + "product_model": "", + "product_mpn": "ADA1976", + "product_master_category": "283", + "product_manufacturer": "Chibitronics", + "product_price": "24.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1976", + "product_stock": "25", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3831", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3831-02.jpg", + "image_is_video": "1", + "product_name": "Pimoroni LED SHIM for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3831", + "product_master_category": "286", + "product_manufacturer": "Pimoroni", + "product_price": "8.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3831", + "product_stock": "35", + "products_hts": "8542.31.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3055", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3055-06.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 3 - Model B - ARMv8 with 1G RAM", + "product_model": "", + "product_mpn": "ADA3055", + "product_master_category": "288", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "35.00", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3055", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3775", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3775-11.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 3 - Model B+ - 1.4GHz Cortex-A53 with 1GB RAM", + "product_model": "", + "product_mpn": "ADA3775", + "product_master_category": "288", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "35.00", + "product_shipping_weight": "67.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3775", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4605", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4605-04.jpg", + "image_is_video": "0", + "product_name": "Face Mask With RGB LED Fiber Optic Fabric", + "product_model": "", + "product_mpn": "ADA4605", + "product_master_category": "291", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "50.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4605", + "product_stock": "in stock", + "products_hts": "6307.90.8900", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "4845", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4845-05.jpg", + "image_is_video": "1", + "product_name": "Face-Changing LED Matrix Mask from Lumen Couture", + "product_model": "", + "product_mpn": "ADA4845", + "product_master_category": "291", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "688.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4845", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4355", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4355-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit + Cartoon Network Cosplay Introductory Kit", + "product_model": "", + "product_mpn": "ADA4355", + "product_master_category": "294", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "262.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4355", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4358", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4358-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit + Cartoon Network Cosplay Basics Kit", + "product_model": "", + "product_mpn": "ADA4358", + "product_master_category": "294", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "316.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4358", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4359", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4359-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit + Cartoon Network Cosplay \"The Works\" Kit", + "product_model": "", + "product_mpn": "ADA4359", + "product_master_category": "294", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "382.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4359", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4015", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4015-01.jpg", + "image_is_video": "0", + "product_name": "Rainbow Crafting Yarn", + "product_model": "", + "product_mpn": "ADA4015", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "49.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4015", + "product_stock": "in stock", + "products_hts": "6006.23.9080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4123", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4123-00.jpg", + "image_is_video": "0", + "product_name": "Fluorescent Pigment - Pink", + "product_model": "", + "product_mpn": "ADA4123", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "35.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4123", + "product_stock": "19", + "products_hts": "3212.90.0050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4246", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4124", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4124-02.jpg", + "image_is_video": "0", + "product_name": "Fluorescent Pigment - Purple", + "product_model": "", + "product_mpn": "ADA4124", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "35.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4124", + "product_stock": "19", + "products_hts": "3212.90.0050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4246", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4125", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4125-00.jpg", + "image_is_video": "0", + "product_name": "Fluorescent Pigment - Green", + "product_model": "", + "product_mpn": "ADA4125", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "35.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4125", + "product_stock": "21", + "products_hts": "3212.90.0050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4246", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4126", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4126-00.jpg", + "image_is_video": "0", + "product_name": "Fluorescent Pigment - Yellow", + "product_model": "", + "product_mpn": "ADA4126", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "35.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4126", + "product_stock": "25", + "products_hts": "3212.90.0050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4246", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4134", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4134-00.jpg", + "image_is_video": "0", + "product_name": "Thermochromic Pigment - Black - 10g", + "product_model": "", + "product_mpn": "ADA4134", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4134", + "product_stock": "10", + "products_hts": "3209.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4231", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4135", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4135-00.jpg", + "image_is_video": "0", + "product_name": "Thermochromic Pigment - Red - 10g", + "product_model": "", + "product_mpn": "ADA4135", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4135", + "product_stock": "18", + "products_hts": "3209.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4231", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4136", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4136-00.jpg", + "image_is_video": "0", + "product_name": "Thermochromic Pigment - Orange - 10g", + "product_model": "", + "product_mpn": "ADA4136", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4136", + "product_stock": "6", + "products_hts": "3209.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4231", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4137", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4137-00.jpg", + "image_is_video": "0", + "product_name": "Thermochromic Pigment - Yellow - 10g", + "product_model": "", + "product_mpn": "ADA4137", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4137", + "product_stock": "75", + "products_hts": "3209.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4231", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4138", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4138-00.jpg", + "image_is_video": "0", + "product_name": "Thermochromic Pigment - Green - 10g", + "product_model": "", + "product_mpn": "ADA4138", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4138", + "product_stock": "5", + "products_hts": "3209.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4231", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4139", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4139-00.jpg", + "image_is_video": "0", + "product_name": "Thermochromic Pigment - Blue - 10g", + "product_model": "", + "product_mpn": "ADA4139", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4139", + "product_stock": "5", + "products_hts": "3209.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4231", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4140", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4140-00.jpg", + "image_is_video": "0", + "product_name": "Thermochromic Pigment - Pink - 10g", + "product_model": "", + "product_mpn": "ADA4140", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4140", + "product_stock": "9", + "products_hts": "3209.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4231", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4233", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4233-00.jpg", + "image_is_video": "0", + "product_name": "Thermochromic Pigments - Rainbow Pack (7 Colors)", + "product_model": "", + "product_mpn": "ADA4233", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "90.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4233", + "product_stock": "12", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4231", + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4349", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4349-02.jpg", + "image_is_video": "0", + "product_name": "EVA Foam Pack in Rainbow Colors - 2mm thick - 10 sheets", + "product_model": "", + "product_mpn": "ADA4349", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "103.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4349", + "product_stock": "13", + "products_hts": "3919.90.5060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4439", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4439-04.jpg", + "image_is_video": "0", + "product_name": "Shimmering Snowflake Glitter - 8mm", + "product_model": "", + "product_mpn": "ADA4439", + "product_master_category": "295", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4439", + "product_stock": "-3", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4165", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4165-01.jpg", + "image_is_video": "0", + "product_name": "Fiber Optic Light Source - 1 Watt - Red", + "product_model": "", + "product_mpn": "ADA4165", + "product_master_category": "299", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4165", + "product_stock": "70", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4166", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4166-01.jpg", + "image_is_video": "0", + "product_name": "Fiber Optic Light Source - 1 Watt - Green", + "product_model": "", + "product_mpn": "ADA4166", + "product_master_category": "299", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4166", + "product_stock": "35", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4167", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4167-01.jpg", + "image_is_video": "0", + "product_name": "Fiber Optic Light Source - 1 Watt - Blue", + "product_model": "", + "product_mpn": "ADA4167", + "product_master_category": "299", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4167", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4168", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4168-01.jpg", + "image_is_video": "0", + "product_name": "Fiber Optic Light Source - 1 Watt - White", + "product_model": "", + "product_mpn": "ADA4168", + "product_master_category": "299", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4168", + "product_stock": "36", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4169", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4169-00.jpg", + "image_is_video": "0", + "product_name": "Fiber Optic Light Source - 1 Watt - Pink", + "product_model": "", + "product_mpn": "ADA4169", + "product_master_category": "299", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4169", + "product_stock": "20", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1752", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1752-00.jpg", + "image_is_video": "0", + "product_name": "Stereo 20W Class D Audio Amplifier - MAX9744", + "product_model": "", + "product_mpn": "ADA1752", + "product_master_category": "308", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "18.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1752", + "product_stock": "76", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3912", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3912-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit #ElectronicHalloween Halloween Cards (set of 5)", + "product_model": "", + "product_mpn": "ADA3912", + "product_master_category": "308", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "41.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3912", + "product_stock": "-3", + "products_hts": "9504.40.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4300", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4300-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit HalloWing M4 Express - ORANGE HALLOWEEN EDITION!", + "product_model": "", + "product_mpn": "ADA4300", + "product_master_category": "311", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4300", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4343", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4343-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit MONSTER M4SK - DIY Electronic Eyes Mask", + "product_model": "", + "product_mpn": "ADA4343", + "product_master_category": "311", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "32.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4343", + "product_stock": "83", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "454", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/454-04.jpg", + "image_is_video": "0", + "product_name": "Miniature 8x8 Red LED Matrix", + "product_model": "", + "product_mpn": "ADA454", + "product_master_category": "325", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/454", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "860", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/860-04.jpg", + "image_is_video": "0", + "product_name": "Miniature 8x8 Yellow LED Matrix", + "product_model": "", + "product_mpn": "ADA860", + "product_master_category": "325", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/860", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "956", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/956-05.jpg", + "image_is_video": "0", + "product_name": "Miniature 8x8 Blue LED Matrix", + "product_model": "", + "product_mpn": "ADA956", + "product_master_category": "325", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/956", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1624", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1624-05.jpg", + "image_is_video": "0", + "product_name": "Miniature 0.8\" 8x8 Pure Green LED Matrix", + "product_model": "KWM-20882CPGB", + "product_mpn": "ADA1624", + "product_master_category": "325", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1624", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "861", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/861-04.jpg", + "image_is_video": "0", + "product_name": "Miniature 8x8 Yellow-Green LED Matrix", + "product_model": "", + "product_mpn": "ADA861", + "product_master_category": "325", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/861", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1633", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1633-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini 0.8\" 8x8 LED Matrix w\/I2C Backpack - Pure Green", + "product_model": "", + "product_mpn": "ADA1633", + "product_master_category": "325", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "7.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1633", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1079", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1079-04.jpg", + "image_is_video": "0", + "product_name": "Miniature Ultra-Bright 8x8 White LED Matrix", + "product_model": "", + "product_mpn": "ADA1079", + "product_master_category": "325", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1079", + "product_stock": "74", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "871", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/871-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini 8x8 LED Matrix w\/I2C Backpack - Yellow", + "product_model": "", + "product_mpn": "ADA871", + "product_master_category": "325", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/871", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1080", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1080-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini 8x8 LED Matrix w\/I2C Backpack - Ultra Bright White", + "product_model": "", + "product_mpn": "ADA1080", + "product_master_category": "325", + "product_manufacturer": "Adafruit", + "product_price": "13.50", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1080", + "product_stock": "74", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "959", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/959-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini 8x8 LED Matrix w\/I2C Backpack - Blue", + "product_model": "", + "product_mpn": "ADA959", + "product_master_category": "325", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/959", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "872", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/872-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini 0.8\" 8x8 LED Matrix w\/I2C Backpack - Yellow-Green", + "product_model": "", + "product_mpn": "ADA872", + "product_master_category": "325", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "8.1", + "product_url": "https:\/\/www.adafruit.com\/product\/872", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "870", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/870-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini 8x8 LED Matrix w\/I2C Backpack - Red", + "product_model": "", + "product_mpn": "ADA870", + "product_master_category": "325", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/870", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "455", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/455-00.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Red LED Matrix", + "product_model": "KWM-30881CVB", + "product_mpn": "ADA455", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "9.3", + "product_url": "https:\/\/www.adafruit.com\/product\/455", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1047", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1047-00.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Blue LED Matrix", + "product_model": "KWM-30881CBB", + "product_mpn": "ADA1047", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "11.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1047", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1048", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1048-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.2\" 8x8 LED Matrix Backpack", + "product_model": "", + "product_mpn": "ADA1048", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "6.00", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1048", + "product_stock": "79", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.40", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1613", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1613-00.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright White LED Matrix", + "product_model": "KWM-30881CWB", + "product_mpn": "ADA1613", + "product_master_category": "326", + "product_manufacturer": "Lucky Light Electronics", + "product_price": "7.50", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1613", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1623", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1623-00.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Pure Green LED Matrix", + "product_model": "KWM-30881CPGB", + "product_mpn": "ADA1623", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1623", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1817", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1817-06.jpg", + "image_is_video": "0", + "product_name": "1.2\" 8x8 Matrix Square Pixel - Blue", + "product_model": "", + "product_mpn": "ADA1817", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "10.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1817", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1821", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1821-04.jpg", + "image_is_video": "0", + "product_name": "1.2\" 8x8 Matrix Square Pixel - White", + "product_model": "KWM-R30881CWB-Y", + "product_mpn": "ADA1821", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "11.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1821", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1819", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1819-05.jpg", + "image_is_video": "0", + "product_name": "1.2\" 8x8 Matrix Square Pixel - Yellow", + "product_model": "KWM-R30881CUYB", + "product_mpn": "ADA1819", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1819", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1820", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1820-05.jpg", + "image_is_video": "0", + "product_name": "1.2\" 8x8 Matrix Square Pixel - Pure Green", + "product_model": "KWM-R30881CPGB", + "product_mpn": "ADA1820", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "8.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1820", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2043", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2043-03.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack -Ultra Bright Square Yellow LEDs", + "product_model": "", + "product_mpn": "ADA2043", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "29.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2043", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1818", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1818-05.jpg", + "image_is_video": "0", + "product_name": "1.2\" 8x8 Matrix Square Pixel - Amber", + "product_model": "KWM-R30881CUAB", + "product_mpn": "ADA1818", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1818", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2035", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2035-04.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack - Ultra Bright Round Green LEDs", + "product_model": "", + "product_mpn": "ADA2035", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "16.95", + "product_shipping_weight": "29.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2035", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2054", + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2052", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2052-03.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack-Ultra Bright Round Orange LEDs", + "product_model": "", + "product_mpn": "ADA2052", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "28.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2052", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2054", + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2036", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2036-03.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix+Backpack UltraBright Round YellowGreen LEDs", + "product_model": "", + "product_mpn": "ADA2036", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "16.95", + "product_shipping_weight": "28.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2036", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2054", + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2041", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2041-03.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack - Ultra Bright Square Amber LEDs", + "product_model": "", + "product_mpn": "ADA2041", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "27.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2041", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2038", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2038-02.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack - Ultra Bright Round White LEDs", + "product_model": "", + "product_mpn": "ADA2038", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "21.95", + "product_shipping_weight": "32.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2038", + "product_stock": "70", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2054", + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2042", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2042-04.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack - Ultra Bright Square Green LEDs", + "product_model": "", + "product_mpn": "ADA2042", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "16.95", + "product_shipping_weight": "27.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2042", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1046", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1046-00.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Yellow-Orange LED Matrix", + "product_model": "KWM-30881CUYB", + "product_mpn": "ADA1046", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1046", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2039", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2039-03.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack - Ultra Bright Round Blue LEDs", + "product_model": "", + "product_mpn": "ADA2039", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "18.95", + "product_shipping_weight": "33.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2039", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2054", + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1045", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1045-00.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Yellow-Green LED Matrix", + "product_model": "KWM-30881CUGB", + "product_mpn": "ADA1045", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1045", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2044", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2044-03.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack - Ultra Bright Square White LEDs", + "product_model": "", + "product_mpn": "ADA2044", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "21.95", + "product_shipping_weight": "33.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2044", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1855", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1855-05.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Square Yellow LED Matrix + Backpack", + "product_model": "", + "product_mpn": "ADA1855", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "10.50", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1855", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1632", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1632-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Small 1.2\" 8x8 LED Matrix w\/I2C Backpack - Pure Green", + "product_model": "", + "product_mpn": "ADA1632", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1632", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1856", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1856-05.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Bright Square Pure Green LED Matrix + Backpack", + "product_model": "", + "product_mpn": "ADA1856", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "15.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1856", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1854", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1854-05.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Square Amber LED Matrix + Backpack", + "product_model": "", + "product_mpn": "ADA1854", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "10.50", + "product_shipping_weight": "15.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1854", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2040", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2040-03.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack - Ultra Bright Square Blue LEDs", + "product_model": "", + "product_mpn": "ADA2040", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "21.95", + "product_shipping_weight": "31.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2040", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2037", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2037-02.jpg", + "image_is_video": "0", + "product_name": "16x8 1.2\" LED Matrix + Backpack - Ultra Bright Round Red LEDs", + "product_model": "", + "product_mpn": "ADA2037", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "28.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2037", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2054", + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1857", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1857-05.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Square White LED Matrix + Backpack", + "product_model": "", + "product_mpn": "ADA1857", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "13.50", + "product_shipping_weight": "18.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1857", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1853", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1853-05.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright Square Blue LED Matrix + Backpack", + "product_model": "", + "product_mpn": "ADA1853", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "13.50", + "product_shipping_weight": "17.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1853", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1614", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1614-00.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Ultra Bright White LED Matrix + Backpack", + "product_model": "", + "product_mpn": "ADA1614", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "13.50", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1614", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "458", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/458-00.jpg", + "image_is_video": "0", + "product_name": "Small 1.2\" 8x8 Bi-Color (Red\/Green) Square LED Matrix", + "product_model": "", + "product_mpn": "ADA458", + "product_master_category": "326", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/458", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1050", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1050-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Small 1.2\" 8x8 LED Matrix w\/I2C Backpack - Yellow", + "product_model": "", + "product_mpn": "ADA1050", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "10.50", + "product_shipping_weight": "15.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1050", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1051", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1051-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Small 1.2\" 8x8 LED Matrix w\/I2C Backpack - Yellow-Green", + "product_model": "", + "product_mpn": "ADA1051", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "15.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1051", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1052", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1052-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Small 1.2\" 8x8 LED Matrix w\/I2C Backpack - Blue", + "product_model": "", + "product_mpn": "ADA1052", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "18.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1052", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1049", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1049-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Small 1.2\" 8x8 LED Matrix w\/I2C Backpack - Red", + "product_model": "", + "product_mpn": "ADA1049", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "16.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1049", + "product_stock": "79", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "902", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/902-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Bicolor LED Square Pixel Matrix with I2C Backpack", + "product_model": "", + "product_mpn": "ADA902", + "product_master_category": "326", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "15.8", + "product_url": "https:\/\/www.adafruit.com\/product\/902", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "607", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/607-07.jpg", + "image_is_video": "0", + "product_name": "32x32 RGB LED Matrix Panel - 4mm Pitch", + "product_model": "", + "product_mpn": "ADA607", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "258.0", + "product_url": "https:\/\/www.adafruit.com\/product\/607", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1484", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1484-00.jpg", + "image_is_video": "0", + "product_name": "32x32 RGB LED Matrix Panel - 6mm pitch", + "product_model": "", + "product_mpn": "ADA1484", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "346.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1484", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2026", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2026-04.jpg", + "image_is_video": "1", + "product_name": "32x32 RGB LED Matrix Panel - 5mm Pitch", + "product_model": "", + "product_mpn": "ADA2026", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "351.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2026", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2276", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2276-00.jpg", + "image_is_video": "0", + "product_name": "64x32 RGB LED Matrix - 6mm pitch", + "product_model": "", + "product_mpn": "ADA2276", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "64.95", + "product_shipping_weight": "675.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2276", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2277", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2277-00.jpg", + "image_is_video": "0", + "product_name": "64x32 RGB LED Matrix - 5mm pitch", + "product_model": "", + "product_mpn": "ADA2277", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "548.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2277", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2278", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2278-05.jpg", + "image_is_video": "1", + "product_name": "64x32 RGB LED Matrix - 4mm pitch", + "product_model": "", + "product_mpn": "ADA2278", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "334.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2278", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2477", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2477-03.jpg", + "image_is_video": "0", + "product_name": "DotStar RGB LED Disk - 240mm diameter", + "product_model": "", + "product_mpn": "ADA2477", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "134.95", + "product_shipping_weight": "214.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2477", + "product_stock": "17", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "134.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "121.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "107.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2547", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2547-00.jpg", + "image_is_video": "1", + "product_name": "Flexible 16x16 NeoPixel RGB LED Matrix", + "product_model": "", + "product_mpn": "ADA2547", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "94.95", + "product_shipping_weight": "65.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2547", + "product_stock": "23", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "94.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "85.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "75.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2612", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2612-03.jpg", + "image_is_video": "1", + "product_name": "Flexible 8x8 NeoPixel RGB LED Matrix", + "product_model": "", + "product_mpn": "ADA2612", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "19.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2612", + "product_stock": "23", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2657", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2657-00.jpg", + "image_is_video": "0", + "product_name": "Nootropic RGB Matrix Backpack Kit for 32x32 & 16x32 Panel", + "product_model": "v2", + "product_mpn": "ADA2657", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2657", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2734", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2734-03.jpg", + "image_is_video": "1", + "product_name": "Flexible Adafruit DotStar Matrix 8x8 - 64 RGB LED Pixels", + "product_model": "", + "product_mpn": "ADA2734", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2734", + "product_stock": "22", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2735", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2735-03.jpg", + "image_is_video": "1", + "product_name": "Flexible Adafruit DotStar Matrix 16x16 - 256 RGB LED Pixels", + "product_model": "", + "product_mpn": "ADA2735", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "76.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2735", + "product_stock": "17", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2736", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2736-03.jpg", + "image_is_video": "1", + "product_name": "Flexible Adafruit DotStar Matrix 8x32 - 256 RGB LED Pixels", + "product_model": "", + "product_mpn": "ADA2736", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "76.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2736", + "product_stock": "51", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3054", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3054-07.jpg", + "image_is_video": "1", + "product_name": "32x16 Red Green Dual Color LED Dot Matrix - 7.62mm Pitch", + "product_model": "DE-DP14211", + "product_mpn": "ADA3054", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "362.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3054", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3649", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3649-06.jpg", + "image_is_video": "1", + "product_name": "64x64 RGB LED Matrix - 2.5mm Pitch", + "product_model": "1\/32 Scan", + "product_mpn": "ADA3649", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "54.95", + "product_shipping_weight": "329.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3649", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "43.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3803", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3803-04.jpg", + "image_is_video": "1", + "product_name": "64x32 Flexible RGB LED Matrix - 5mm Pitch", + "product_model": "", + "product_mpn": "ADA3803", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "79.95", + "product_shipping_weight": "113.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3803", + "product_stock": "21", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3826", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3826-04.jpg", + "image_is_video": "1", + "product_name": "64x32 Flexible RGB LED Matrix - 4mm Pitch", + "product_model": "", + "product_mpn": "ADA3826", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "149.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3826", + "product_stock": "46", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4631", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4631-00.jpg", + "image_is_video": "0", + "product_name": "Mini Magnet Feet for RGB LED Matrices (Pack of 4)", + "product_model": "", + "product_mpn": "ADA4631", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "27.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4631", + "product_stock": "in stock", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4732", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4732-04.jpg", + "image_is_video": "1", + "product_name": "64x64 RGB LED Matrix - 3mm Pitch", + "product_model": "192mm x 192mm", + "product_mpn": "ADA4732", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "366.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4732", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4828", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4828-09.jpg", + "image_is_video": "1", + "product_name": "SmartMatrix SmartLED Shield for Teensy 4", + "product_model": "", + "product_mpn": "ADA4828", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "21.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4828", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1072", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1072-00.jpg", + "image_is_video": "0", + "product_name": "Nootropic RGB Matrix Backpack Kit for 16x32 Panel", + "product_model": "", + "product_mpn": "ADA1072", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "23.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1072", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1073", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1073-00.jpg", + "image_is_video": "0", + "product_name": "Nootropic RGB Matrix Backpack Kit + 16x32 Matrix Starter Pack", + "product_model": "", + "product_mpn": "ADA1073", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "42.45", + "product_shipping_weight": "413.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1073", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "42.45", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "38.21", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "33.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2279", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2279-00.jpg", + "image_is_video": "0", + "product_name": "64x32 RGB LED Matrix - 3mm pitch", + "product_model": "", + "product_mpn": "ADA2279", + "product_master_category": "327", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "252.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2279", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2294", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2294-04.jpg", + "image_is_video": "1", + "product_name": "Flexible 8x32 NeoPixel RGB LED Matrix", + "product_model": "", + "product_mpn": "ADA2294", + "product_master_category": "327", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "170.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2294", + "product_stock": "21", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3183", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3183-00.jpg", + "image_is_video": "0", + "product_name": "Louisiana Tech Pack", + "product_model": "", + "product_mpn": "ADA3183", + "product_master_category": "328", + "product_manufacturer": "Adafruit", + "product_price": "224.95", + "product_shipping_weight": "2,075.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3183", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3208", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3208-01.jpg", + "image_is_video": "0", + "product_name": "Arrow Presents: Beginners' Arduino Solder Free Pack", + "product_model": "Back to School with LadyAda", + "product_mpn": "ADA3208", + "product_master_category": "328", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "454.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3208", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3209", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3209-01.jpg", + "image_is_video": "0", + "product_name": "Arrow Presents: Intermediate Learn to Solder Pack", + "product_model": "Back to School with LadyAda", + "product_mpn": "ADA3209", + "product_master_category": "328", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "907.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3209", + "product_stock": "0", + "products_hts": "8206.00.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3210", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3210-01.jpg", + "image_is_video": "0", + "product_name": "Arrow Presents: Advanced Internet of Things Pack", + "product_model": "Back to School with LadyAda", + "product_mpn": "ADA3210", + "product_master_category": "328", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "454.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3210", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3262", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3262-00.jpg", + "image_is_video": "0", + "product_name": "\"Paper Circuits\" \u2014 Makerspaces kit", + "product_model": "", + "product_mpn": "ADA3262", + "product_master_category": "328", + "product_manufacturer": "Adafruit", + "product_price": "18.95", + "product_shipping_weight": "96.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3262", + "product_stock": "24", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3672", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3672-02.jpg", + "image_is_video": "0", + "product_name": "E-Textiles Student Kit", + "product_model": "", + "product_mpn": "ADA3672", + "product_master_category": "328", + "product_manufacturer": "Adafruit", + "product_price": "84.95", + "product_shipping_weight": "89.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3672", + "product_stock": "in stock", + "products_hts": "8542.90.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3673", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3673-00.jpg", + "image_is_video": "0", + "product_name": "E-Textiles Class Kit", + "product_model": "", + "product_mpn": "ADA3673", + "product_master_category": "328", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "220.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3673", + "product_stock": "79", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2152", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2152-01.jpg", + "image_is_video": "0", + "product_name": "University of Virginia - Web and Mobile Systems Pack", + "product_model": "", + "product_mpn": "ADA2152", + "product_master_category": "328", + "product_manufacturer": null, + "product_price": "114.95", + "product_shipping_weight": "622.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2152", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2121", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2121-01.jpg", + "image_is_video": "0", + "product_name": "Carbide PCB Drill Bit - 1.1mm", + "product_model": "", + "product_mpn": "ADA2121", + "product_master_category": "329", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2121", + "product_stock": "in stock", + "products_hts": "8466.93.9585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2074", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2074-02.jpg", + "image_is_video": "0", + "product_name": "Carbide Square End Mill - 1\/8\" Shaft - 0.7mm Diameter", + "product_model": "", + "product_mpn": "ADA2074", + "product_master_category": "329", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2074", + "product_stock": "22", + "products_hts": "8466.93.9585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2119", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2119-01.jpg", + "image_is_video": "0", + "product_name": "Carbide PCB Drill Bit - 0.7mm", + "product_model": "", + "product_mpn": "ADA2119", + "product_master_category": "329", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2119", + "product_stock": "43", + "products_hts": "8466.93.9585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2118", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2118-01.jpg", + "image_is_video": "0", + "product_name": "Carbide PCB Drill Bit - 0.5mm", + "product_model": "", + "product_mpn": "ADA2118", + "product_master_category": "329", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2118", + "product_stock": "in stock", + "products_hts": "8466.93.9585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2073", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2073-02.jpg", + "image_is_video": "0", + "product_name": "Carbide Square End Mill - 1\/8\" Shaft - 0.6mm Diameter", + "product_model": "", + "product_mpn": "ADA2073", + "product_master_category": "329", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2073", + "product_stock": "21", + "products_hts": "8466.93.9585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2120", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2120-01.jpg", + "image_is_video": "0", + "product_name": "Carbide PCB Drill Bit - 0.9mm", + "product_model": "", + "product_mpn": "ADA2120", + "product_master_category": "329", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2120", + "product_stock": "in stock", + "products_hts": "8466.93.9585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2075", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2075-02.jpg", + "image_is_video": "0", + "product_name": "Carbide Square End Mill - 1\/8\" Shaft - 0.8mm Diameter", + "product_model": "", + "product_mpn": "ADA2075", + "product_master_category": "329", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2075", + "product_stock": "65", + "products_hts": "8466.93.9585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2072", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2072-02.jpg", + "image_is_video": "0", + "product_name": "Carbide Square End Mill - 1\/8\" Shaft - 0.5mm Diameter", + "product_model": "", + "product_mpn": "ADA2072", + "product_master_category": "329", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2072", + "product_stock": "74", + "products_hts": "8466.93.9585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2677", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2677-01.jpg", + "image_is_video": "0", + "product_name": "Qi Wireless Charging Module - 20mm - Lightning Connector", + "product_model": "", + "product_mpn": "ADA2677", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2677", + "product_stock": "-3", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4430", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4430-03.jpg", + "image_is_video": "1", + "product_name": "High Current Inductive Charge Kit - 5V @ 1.3A max", + "product_model": "", + "product_mpn": "ADA4430", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "34.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4430", + "product_stock": "95", + "products_hts": "8504.50.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2116", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2116-02.jpg", + "image_is_video": "0", + "product_name": "Universal Qi Wireless Charging Module - 20mm Forward MicroUSB", + "product_model": "", + "product_mpn": "ADA2116", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "6.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2116", + "product_stock": "-3", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2117", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2117-07.jpg", + "image_is_video": "0", + "product_name": "Universal Qi Wireless Charging Module - 60mm Forward MicroUSB", + "product_model": "", + "product_mpn": "ADA2117", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2117", + "product_stock": "-3", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1926", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1926-02.jpg", + "image_is_video": "0", + "product_name": "Qi Wireless Charger Sleeve - iPhone 5 Lightning Connector", + "product_model": "", + "product_mpn": "ADA1926", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "97.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1926", + "product_stock": "-3", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2115", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2115-08.jpg", + "image_is_video": "0", + "product_name": "Universal Qi Wireless Charging Module - 40mm Reverse MicroUSB", + "product_model": "", + "product_mpn": "ADA2115", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "26.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2115", + "product_stock": "-3", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2114", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2114-08.jpg", + "image_is_video": "0", + "product_name": "Universal Qi Wireless Charging Module - 20mm Reverse MicroUSB", + "product_model": "", + "product_mpn": "ADA2114", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "6.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2114", + "product_stock": "14", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1459", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1459-02.jpg", + "image_is_video": "0", + "product_name": "Inductive Charging Set - 3.3V @ 500mA max", + "product_model": "", + "product_mpn": "ADA1459", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "14.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1459", + "product_stock": "88", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1901", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1901-05.jpg", + "image_is_video": "0", + "product_name": "Universal Qi Wireless Receiver Module", + "product_model": "", + "product_mpn": "ADA1901", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1901", + "product_stock": "in stock", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2162", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2162-00.jpg", + "image_is_video": "0", + "product_name": "Universal Qi Wireless Charging Transmitter", + "product_model": "", + "product_mpn": "ADA2162", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "26.95", + "product_shipping_weight": "49.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2162", + "product_stock": "12", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "26.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "21.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1407", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1407-02.jpg", + "image_is_video": "0", + "product_name": "Inductive Charging Set - 5V @ 500mA max", + "product_model": "", + "product_mpn": "ADA1407", + "product_master_category": "331", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "14.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1407", + "product_stock": "in stock", + "products_hts": "8504.31.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2208", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2208-01.jpg", + "image_is_video": "0", + "product_name": "1,000 Incredible Costume & Cosplay Ideas", + "product_model": "", + "product_mpn": "ADA2208", + "product_master_category": "332", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "997.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2208", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2224", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2224-08.jpg", + "image_is_video": "0", + "product_name": "Cosplay World by Brian Ashcraft and Luke Plunkett", + "product_model": "", + "product_mpn": "ADA2224", + "product_master_category": "332", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "907.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2224", + "product_stock": "1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4333", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4333-11.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Bluefruit - Bluetooth Low Energy", + "product_model": "", + "product_mpn": "ADA4333", + "product_master_category": "333", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4333", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4504", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4504-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Circuit Playground Bluefruit + TFT Gizmo Project Pack", + "product_model": "", + "product_mpn": "ADA4504", + "product_master_category": "333", + "product_manufacturer": "Adafruit", + "product_price": "64.95", + "product_shipping_weight": "231.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4504", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3118", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3118-04.jpg", + "image_is_video": "0", + "product_name": "HDMI Plug to Terminal Block Breakout", + "product_model": "", + "product_mpn": "ADA3118", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "18.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3118", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3120", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3120-00.jpg", + "image_is_video": "0", + "product_name": "Panel Mount HDMI Socket to Terminal Block Breakout", + "product_model": "", + "product_mpn": "ADA3120", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "21.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3120", + "product_stock": "72", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3122", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3122-04.jpg", + "image_is_video": "0", + "product_name": "DE-9 (DB-9) Female Socket Connector to Terminal Block Breakout", + "product_model": "", + "product_mpn": "ADA3122", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "27.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3122", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3123", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3123-04.jpg", + "image_is_video": "0", + "product_name": "DE-9 (DB-9) Male Plug to Terminal Block Breakout", + "product_model": "", + "product_mpn": "ADA3123", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "27.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3123", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3124", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3124-04.jpg", + "image_is_video": "0", + "product_name": "DE-15 (DB-15) Female Socket to Terminal Block Breakout", + "product_model": "", + "product_mpn": "ADA3124", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "35.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3124", + "product_stock": "0", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3125", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3125-04.jpg", + "image_is_video": "0", + "product_name": "DE-15 (DB-15) Male Plug to Terminal Block Breakout", + "product_model": "", + "product_mpn": "ADA3125", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "34.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3125", + "product_stock": "55", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3628", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3628-03.jpg", + "image_is_video": "0", + "product_name": "USB-A Male Plug to 5-pin Terminal Block", + "product_model": "", + "product_mpn": "ADA3628", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "25.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3628", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3629", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3629-00.jpg", + "image_is_video": "0", + "product_name": "USB-A Female Socket to 5-pin Terminal Block", + "product_model": "", + "product_mpn": "ADA3629", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3629", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3969", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3969-02.jpg", + "image_is_video": "0", + "product_name": "USB Mini B Female Socket to 5-pin Terminal Block", + "product_model": "", + "product_mpn": "ADA3969", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3969", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3970", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3970-02.jpg", + "image_is_video": "0", + "product_name": "USB Micro B Female Socket to 5-pin Terminal Block", + "product_model": "", + "product_mpn": "ADA3970", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3970", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3971", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3971-03.jpg", + "image_is_video": "0", + "product_name": "USB Mini B Male Plug to 5-pin Terminal Block", + "product_model": "", + "product_mpn": "ADA3971", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3971", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3972", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3972-01.jpg", + "image_is_video": "0", + "product_name": "USB Micro B Male Plug to 5-pin Terminal Block", + "product_model": "", + "product_mpn": "ADA3972", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3972", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4510", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4510-03.jpg", + "image_is_video": "0", + "product_name": "DE-9 (DB-9) Female Socket to Terminal Spring Block Adapter", + "product_model": "", + "product_mpn": "ADA4510", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "6.25", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4510", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.63", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4511", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4511-02.jpg", + "image_is_video": "0", + "product_name": "RJ-45 Ethernet Female Socket to Terminal Spring Block Adapter", + "product_model": "", + "product_mpn": "ADA4511", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4511", + "product_stock": "70", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4512", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4512-03.jpg", + "image_is_video": "0", + "product_name": "DE-9 (DB-9) Male Plug to Terminal Spring Block Adapter", + "product_model": "", + "product_mpn": "ADA4512", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "6.25", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4512", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.63", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2140", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2140-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 7-pin", + "product_model": "", + "product_mpn": "ADA2140", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "2.45", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2140", + "product_stock": "47", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "2.45", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.21", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2134", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2134-03.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 9-pin", + "product_model": "", + "product_mpn": "ADA2134", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "3.05", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2134", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "3.05", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.44", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2139", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2139-03.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 5-pin", + "product_model": "", + "product_mpn": "ADA2139", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "1.85", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2139", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "1.85", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.67", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.48", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2135", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2135-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 6-pin", + "product_model": "", + "product_mpn": "ADA2135", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "2.15", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2135", + "product_stock": "27", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "2.15", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.94", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.72", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2136", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2136-03.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 3-pin", + "product_model": "", + "product_mpn": "ADA2136", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2136", + "product_stock": "0", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2142", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2142-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 10-pin", + "product_model": "", + "product_mpn": "ADA2142", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "3.35", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2142", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "3.35", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.02", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.68", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2141", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2141-03.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 8-pin", + "product_model": "", + "product_mpn": "ADA2141", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "2.75", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2141", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "2.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.48", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2138", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2138-03.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 2-pin", + "product_model": "", + "product_mpn": "ADA2138", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2138", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2137", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2137-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm\/0.1\" Pitch Terminal Block - 4-pin", + "product_model": "", + "product_mpn": "ADA2137", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "1.55", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2137", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2234", + "discount_pricing": [ + { + "discounted_price": "1.55", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.40", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.24", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "725", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/725-08.jpg", + "image_is_video": "0", + "product_name": "Terminal Block - 3-pin 3.5mm - pack of 5!", + "product_model": "", + "product_mpn": "ADA725", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/725", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "724", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/724-08.jpg", + "image_is_video": "0", + "product_name": "Terminal Block - 2-pin 3.5mm - pack of 5!", + "product_model": "", + "product_mpn": "ADA724", + "product_master_category": "334", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "5.2", + "product_url": "https:\/\/www.adafruit.com\/product\/724", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1726", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1726-00.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display & Audio 1280x800 IPS - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1726", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "124.95", + "product_shipping_weight": "253.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1726", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "124.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "112.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "99.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1933", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1933-01.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display (no Touch) w\/Mini Driver - 800x480 HDMI", + "product_model": "", + "product_mpn": "ADA1933", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "274.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1933", + "product_stock": "77", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1934", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1934-03.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display no Touchscreen 800x480 - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1934", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "288.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1934", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "59.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2299", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2299-01.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display no Touchscreen 1024x600- HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA2299", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "256.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2299", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "59.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2300", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2300-01.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display no Touchscreen 1024x600 w\/ Mini Driver", + "product_model": "", + "product_mpn": "ADA2300", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "240.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2300", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2301", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2301-01.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display & Audio 1024x600 - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA2301", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "84.95", + "product_shipping_weight": "256.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2301", + "product_stock": "-1", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2395", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2395-01.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display w\/Touchscreen 1024x600- HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA2395", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "89.95", + "product_shipping_weight": "293.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2395", + "product_stock": "3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2396", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2396-01.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display w\/Touchscreen 1024x600 w\/ Mini Driver", + "product_model": "", + "product_mpn": "ADA2396", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "84.95", + "product_shipping_weight": "276.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2396", + "product_stock": "13", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2397", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2397-01.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display & Audio 1024x600 w\/Touchscreen", + "product_model": "", + "product_mpn": "ADA2397", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "308.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2397", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2406", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2406-03.jpg", + "image_is_video": "0", + "product_name": "HDMI 7\" 800x480 Display Backpack - Without Touch", + "product_model": "", + "product_mpn": "ADA2406", + "product_master_category": "336", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "242.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2406", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2407", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2407-12.jpg", + "image_is_video": "0", + "product_name": "HDMI 7\" 800x480 Display Backpack - With Touchscreen", + "product_model": "", + "product_mpn": "ADA2407", + "product_master_category": "336", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "249.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2407", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1931", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1931-05.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 7\" Display 1280x800 IPS - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1931", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "114.95", + "product_shipping_weight": "243.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1931", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "114.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "103.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "91.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1667", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1667-00.jpg", + "image_is_video": "0", + "product_name": "7\" Display 1280x800 (720p) IPS + Speakers - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1667", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "169.95", + "product_shipping_weight": "512.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1667", + "product_stock": "68", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "169.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "152.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "135.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1033", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1033-07.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi - 7\" Display 1280x800 (720p) IPS - HDMI\/VGA\/PAL\/NTSC", + "product_model": "", + "product_mpn": "ADA1033", + "product_master_category": "336", + "product_manufacturer": null, + "product_price": "159.95", + "product_shipping_weight": "516.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1033", + "product_stock": "16", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "159.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "143.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "127.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1287", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1287-00.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi - 10.1\" Display 1280x800 IPS - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1287", + "product_master_category": "337", + "product_manufacturer": null, + "product_price": "144.95", + "product_shipping_weight": "453.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1287", + "product_stock": "29", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "144.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "130.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "115.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1694", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1694-09.jpg", + "image_is_video": "0", + "product_name": "10.1\" Display & Audio 1280x800 IPS - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1694", + "product_master_category": "337", + "product_manufacturer": null, + "product_price": "154.95", + "product_shipping_weight": "489.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1694", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "154.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "139.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "123.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2261", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2261-05.jpg", + "image_is_video": "0", + "product_name": "10.1\" 1366x768 Display IPS + Speakers - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA2261", + "product_master_category": "337", + "product_manufacturer": null, + "product_price": "189.95", + "product_shipping_weight": "907.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2261", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "189.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "170.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "151.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1303", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1303-00.jpg", + "image_is_video": "0", + "product_name": "Pixel Qi 10\" Display with Controller- 1024x600 HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1303", + "product_master_category": "337", + "product_manufacturer": null, + "product_price": "179.95", + "product_shipping_weight": "568.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1303", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "179.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "161.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "143.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1678", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1678-00.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi 5\" Display not Touchscreen 800x480 - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1678", + "product_master_category": "338", + "product_manufacturer": null, + "product_price": "64.95", + "product_shipping_weight": "201.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1678", + "product_stock": "6", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2109", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2109-03.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 5\" Display w\/Touch and Mini Driver - 800x480 HDMI", + "product_model": "", + "product_mpn": "ADA2109", + "product_master_category": "338", + "product_manufacturer": null, + "product_price": "79.95", + "product_shipping_weight": "199.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2109", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2110", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2110-03.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 5\" Display (w\/Touch) 800x480 - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA2110", + "product_master_category": "338", + "product_manufacturer": null, + "product_price": "84.95", + "product_shipping_weight": "210.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2110", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2232", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2232-07.jpg", + "image_is_video": "0", + "product_name": "HDMI 5\" Display Backpack - Without Touch", + "product_model": "", + "product_mpn": "ADA2232", + "product_master_category": "338", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "100.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2232", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2260", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2260-02.jpg", + "image_is_video": "0", + "product_name": "HDMI 5\" 800x480 Display Backpack - With Resistive Touchscreen", + "product_model": "", + "product_mpn": "ADA2260", + "product_master_category": "338", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "124.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2260", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "59.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1928", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1928-00.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi: 5\" Display (no Touch) w\/Mini Driver - 800x480 HDMI", + "product_model": "", + "product_mpn": "ADA1928", + "product_master_category": "338", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "190.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1928", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1666", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1666-00.jpg", + "image_is_video": "0", + "product_name": "HDMI 4 Pi - 5.6\" Display 1280x800 (720p) Kit - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1666", + "product_master_category": "339", + "product_manufacturer": null, + "product_price": "139.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1666", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "139.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "125.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "111.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1695", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1695-00.jpg", + "image_is_video": "0", + "product_name": "5.6\" Display & Audio 1280x800 (720p) Kit - HDMI\/VGA\/NTSC\/PAL", + "product_model": "", + "product_mpn": "ADA1695", + "product_master_category": "339", + "product_manufacturer": null, + "product_price": "149.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1695", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "149.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "134.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "119.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2665", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2665-03.jpg", + "image_is_video": "0", + "product_name": "Pomona Female 0.1\" Socket to Banana Plug - 24\"", + "product_model": "Black", + "product_mpn": "ADA2665", + "product_master_category": "341", + "product_manufacturer": "Pomona", + "product_price": "8.50", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2665", + "product_stock": "-3", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2666", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2666-03.jpg", + "image_is_video": "0", + "product_name": "Pomona Female 0.1\" Socket to Banana Plug - 24\"", + "product_model": "Red", + "product_mpn": "ADA2666", + "product_master_category": "341", + "product_manufacturer": "Pomona", + "product_price": "8.50", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2666", + "product_stock": "-3", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2618", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2618-02.jpg", + "image_is_video": "0", + "product_name": "Pomona SMD Micro Grabber", + "product_model": "", + "product_mpn": "ADA2618", + "product_master_category": "341", + "product_manufacturer": "Pomona", + "product_price": "4.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2618", + "product_stock": "-10", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2625", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2625-01.jpg", + "image_is_video": "0", + "product_name": "Pomona Test Lead Holder - For cables up to .32\" \/ 0 AWG diameter", + "product_model": "Black - POM-4408", + "product_mpn": "ADA2625", + "product_master_category": "341", + "product_manufacturer": "Pomona", + "product_price": "17.50", + "product_shipping_weight": "312.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2625", + "product_stock": "0", + "products_hts": "8302.50.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2617", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2617-00.jpg", + "image_is_video": "0", + "product_name": "Pomona Minigrabber Test Clip Kit - Multi-Color Pack of 10", + "product_model": "POM-5522", + "product_mpn": "ADA2617", + "product_master_category": "341", + "product_manufacturer": "Pomona", + "product_price": "26.95", + "product_shipping_weight": "35.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2617", + "product_stock": "-10", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "26.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.26", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2623", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2623-01.jpg", + "image_is_video": "0", + "product_name": "Pomona Test Lead Holder - For cables up to .45\" 4\/0 AWG diameter", + "product_model": "Blue - POM-2708", + "product_mpn": "ADA2623", + "product_master_category": "341", + "product_manufacturer": "Pomona", + "product_price": "19.95", + "product_shipping_weight": "304.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2623", + "product_stock": "0", + "products_hts": "8302.50.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2624", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2624-01.jpg", + "image_is_video": "0", + "product_name": "Pomona Test Lead Holder - For cables up to .21\" \/ 3 AWG diameter", + "product_model": "Orange - POM-1508", + "product_mpn": "ADA2624", + "product_master_category": "341", + "product_manufacturer": "Pomona", + "product_price": "19.95", + "product_shipping_weight": "324.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2624", + "product_stock": "0", + "products_hts": "8302.50.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2268", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2268-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Particle\/Spark NeoPixel Ring Kit - 24 NeoPixels", + "product_model": "", + "product_mpn": "ADA2268", + "product_master_category": "342", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2268", + "product_stock": "34", + "products_hts": "8542.31.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2680", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2680-01.jpg", + "image_is_video": "0", + "product_name": "Huzzah! Adafruit.io Internet of Things Feather ESP8266", + "product_model": "WiFi Starter Kit", + "product_mpn": "ADA2680", + "product_master_category": "342", + "product_manufacturer": "Adafruit", + "product_price": "37.50", + "product_shipping_weight": "51.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2680", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "37.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "33.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2705", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2705-00.jpg", + "image_is_video": "0", + "product_name": "Esquilo Air", + "product_model": "", + "product_mpn": "ADA2705", + "product_master_category": "342", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "90.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2705", + "product_stock": "-3", + "products_hts": "8473.30.1180", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2732", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2732-04.jpg", + "image_is_video": "0", + "product_name": "LightBlue Bean", + "product_model": "", + "product_mpn": "ADA2732", + "product_master_category": "342", + "product_manufacturer": "Punch Through Design", + "product_price": "34.95", + "product_shipping_weight": "35.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2732", + "product_stock": "0", + "products_hts": "8525.20.9080", + "products_coo": "KR", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2960", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2960-08.jpg", + "image_is_video": "0", + "product_name": "Expansion Board 3.1 for WiPy IoT Development Platform", + "product_model": "", + "product_mpn": "ADA2960", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "22.50", + "product_shipping_weight": "46.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2960", + "product_stock": "0", + "products_hts": "8542.39.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3184", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3184-00.jpg", + "image_is_video": "0", + "product_name": "WiPy 1.0 - IoT Development Platform", + "product_model": "", + "product_mpn": "ADA3184", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "33.95", + "product_shipping_weight": "29.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3184", + "product_stock": "0", + "products_hts": "8542.39.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3254", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3254-00.jpg", + "image_is_video": "0", + "product_name": "LightBlue Bean+", + "product_model": "", + "product_mpn": "ADA3254", + "product_master_category": "342", + "product_manufacturer": "Punch Through Design", + "product_price": "54.95", + "product_shipping_weight": "34.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3254", + "product_stock": "0", + "products_hts": "8525.20.9080", + "products_coo": "KR", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3338", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3338-04.jpg", + "image_is_video": "0", + "product_name": "Pycom WiPy 3.0 - No Headers Attached", + "product_model": "", + "product_mpn": "ADA3338", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "32.50", + "product_shipping_weight": "27.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3338", + "product_stock": "-3", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3339", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3339-00.jpg", + "image_is_video": "0", + "product_name": "Pycom LoPy 1.0 - LoRa + WiFi + BLE", + "product_model": "", + "product_mpn": "ADA3339", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "39.95", + "product_shipping_weight": "29.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3339", + "product_stock": "0", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3344", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3344-00.jpg", + "image_is_video": "0", + "product_name": "Expansion Board 2.0 for Pycom IoT Development Boards", + "product_model": "", + "product_mpn": "ADA3344", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "22.50", + "product_shipping_weight": "41.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3344", + "product_stock": "0", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3506", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3506-00.jpg", + "image_is_video": "0", + "product_name": "Pycom Pytrack v1.1", + "product_model": "", + "product_mpn": "ADA3506", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "49.95", + "product_shipping_weight": "33.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3506", + "product_stock": "17", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3507", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3507-00.jpg", + "image_is_video": "0", + "product_name": "Pycom Pysense", + "product_model": "", + "product_mpn": "ADA3507", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "34.95", + "product_shipping_weight": "33.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3507", + "product_stock": "1", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3534", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3534-01.jpg", + "image_is_video": "0", + "product_name": "Pycom SiPy 1.0 \u2013 ESP32 WiFi, BLE and +22dBm SigFox Radio", + "product_model": "", + "product_mpn": "ADA3534", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "41.95", + "product_shipping_weight": "31.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3534", + "product_stock": "25", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3612", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3612-01.jpg", + "image_is_video": "0", + "product_name": "Pycom GPy - WiFi, Bluetooth LE and LTE-M", + "product_model": "", + "product_mpn": "ADA3612", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "54.95", + "product_shipping_weight": "30.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3612", + "product_stock": "29", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3689", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3689-00.jpg", + "image_is_video": "0", + "product_name": "Pycom LoPy4", + "product_model": "WiFi, BLE, LoRa, and Sigfox", + "product_mpn": "ADA3689", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "49.95", + "product_shipping_weight": "30.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3689", + "product_stock": "5", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3747", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3747-02.jpg", + "image_is_video": "0", + "product_name": "Pycom Pyscan - RFID NFC, Battery and Sensor Add-On for Pycom", + "product_model": "", + "product_mpn": "ADA3747", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "42.95", + "product_shipping_weight": "39.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3747", + "product_stock": "13", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3943", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3943-03.jpg", + "image_is_video": "0", + "product_name": "The Things Gateway - 915Mhz Version", + "product_model": "", + "product_mpn": "ADA3943", + "product_master_category": "342", + "product_manufacturer": null, + "product_price": "350.00", + "product_shipping_weight": "532.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3943", + "product_stock": "-3", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3980", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3980-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit IO+ 1 Year Subscription Card", + "product_model": "", + "product_mpn": "ADA3980", + "product_master_category": "342", + "product_manufacturer": null, + "product_price": "99.00", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3980", + "product_stock": "in stock", + "products_hts": "8523.52.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4116", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4116-00.jpeg", + "image_is_video": "0", + "product_name": "Adafruit PyPortal - CircuitPython Powered Internet Display", + "product_model": "", + "product_mpn": "ADA4116", + "product_master_category": "342", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "74.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4116", + "product_stock": "-1", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "43.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4345", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4345-06.jpg", + "image_is_video": "0", + "product_name": "The Things Indoor LoRaWAN WiFi Gateway - 8 Channel LoRa 900 MHz", + "product_model": "", + "product_mpn": "ADA4345", + "product_master_category": "342", + "product_manufacturer": null, + "product_price": "84.95", + "product_shipping_weight": "200.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4345", + "product_stock": "58", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4444", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4444-10.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyPortal Titano", + "product_model": "", + "product_mpn": "ADA4444", + "product_master_category": "342", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "74.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4444", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4465", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4465-11.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyPortal Pynt - CircuitPython Powered Internet Display", + "product_model": "2.4\" TFT", + "product_mpn": "ADA4465", + "product_master_category": "342", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "33.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4465", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4753", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4753-00.jpg", + "image_is_video": "0", + "product_name": "Icarus IoT Board - nRF9160", + "product_model": "", + "product_mpn": "ADA4753", + "product_master_category": "342", + "product_manufacturer": null, + "product_price": "130.00", + "product_shipping_weight": "18.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4753", + "product_stock": "14", + "products_hts": "8473.30.1180", + "products_coo": "NL", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4815", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4815-00.jpg", + "image_is_video": "0", + "product_name": "Assembled Pycom WiPy 3.0 with Headers", + "product_model": "MicroPython IoT Expansion Board", + "product_mpn": "ADA4815", + "product_master_category": "342", + "product_manufacturer": "Pycom", + "product_price": "29.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4815", + "product_stock": "60", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5047", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5047-00.jpg", + "image_is_video": "0", + "product_name": "Nordic Thingy: 91 nRF91 Cellular Development Board", + "product_model": "NRF6943", + "product_mpn": "ADA5047", + "product_master_category": "342", + "product_manufacturer": null, + "product_price": "124.95", + "product_shipping_weight": "72.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5047", + "product_stock": "38", + "products_hts": "9504.90.9080", + "products_coo": "NO", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2678", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2678-00.jpg", + "image_is_video": "0", + "product_name": "Huzzah! Adafruit.io Internet of Things CC3000 WiFi Starter Kit", + "product_model": "", + "product_mpn": "ADA2678", + "product_master_category": "342", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2678", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "62", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/62-00.jpg", + "image_is_video": "0", + "product_name": "USB Cable - Standard A-B", + "product_model": "3 ft\/1m", + "product_mpn": "ADA62", + "product_master_category": "345", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "43.0", + "product_url": "https:\/\/www.adafruit.com\/product\/62", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1125", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1125-03.jpg", + "image_is_video": "0", + "product_name": "In-line power switch for 2.1mm barrel jack", + "product_model": "", + "product_mpn": "ADA1125", + "product_master_category": "345", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1125", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "275", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/275-00.jpg", + "image_is_video": "0", + "product_name": "Plastic mounting plate for breadboard and Arduino - rubber feet!", + "product_model": "", + "product_mpn": "ADA275", + "product_master_category": "346", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "43.7", + "product_url": "https:\/\/www.adafruit.com\/product\/275", + "product_stock": "42", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "821", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/821-01.jpg", + "image_is_video": "0", + "product_name": "Smoke Translucent Enclosure for Arduino - Electronics enclosure", + "product_model": "1.0", + "product_mpn": "ADA821", + "product_master_category": "346", + "product_manufacturer": "Adafruit", + "product_price": "15.00", + "product_shipping_weight": "99.5", + "product_url": "https:\/\/www.adafruit.com\/product\/821", + "product_stock": "0", + "products_hts": "8538.10.0000", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3597", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3597-05.jpg", + "image_is_video": "0", + "product_name": "Clear Enclosure for Arduino or Metro", + "product_model": "", + "product_mpn": "ADA3597", + "product_master_category": "346", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "29.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3597", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "337", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/337-00.jpg", + "image_is_video": "0", + "product_name": "Clear Enclosure for Arduino - Electronics enclosure", + "product_model": "1.0", + "product_mpn": "ADA337", + "product_master_category": "346", + "product_manufacturer": "Adafruit", + "product_price": "15.00", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/337", + "product_stock": "51", + "products_hts": "8538.10.0000", + "products_coo": "CA", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "271", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/271-03.jpg", + "image_is_video": "0", + "product_name": "White Enclosure for Arduino - Electronics enclosure", + "product_model": "1.0", + "product_mpn": "ADA271", + "product_master_category": "346", + "product_manufacturer": "Adafruit", + "product_price": "15.00", + "product_shipping_weight": "88.2", + "product_url": "https:\/\/www.adafruit.com\/product\/271", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "63", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/63-00.jpg", + "image_is_video": "0", + "product_name": "9 VDC 1000mA regulated switching power adapter - UL listed", + "product_model": "", + "product_mpn": "ADA63", + "product_master_category": "347", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "85.0", + "product_url": "https:\/\/www.adafruit.com\/product\/63", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3638", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3638-01.jpg", + "image_is_video": "0", + "product_name": "Learn Electronics with Arduino", + "product_model": "by Jody Culkin and Eric Hagan", + "product_mpn": "ADA3638", + "product_master_category": "351", + "product_manufacturer": "Make:", + "product_price": "24.95", + "product_shipping_weight": "615.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3638", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "263", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/263-01.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Arduino By Massimo Banzi - 3rd Edition", + "product_model": "", + "product_mpn": "ADA263", + "product_master_category": "351", + "product_manufacturer": null, + "product_price": "19.99", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/263", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.99", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4229", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4229-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.7\" Tri-Color eInk \/ ePaper Shield with SRAM", + "product_model": "Red Black White", + "product_mpn": "ADA4229", + "product_master_category": "354", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "44.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4229", + "product_stock": "27", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "311", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/311-00.jpg", + "image_is_video": "0", + "product_name": "Video Game Shield Kit", + "product_model": "", + "product_mpn": "ADA311", + "product_master_category": "354", + "product_manufacturer": null, + "product_price": "22.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/311", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "384", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/384-00.jpg", + "image_is_video": "0", + "product_name": "Gameduino shield", + "product_model": "", + "product_mpn": "ADA384", + "product_master_category": "354", + "product_manufacturer": null, + "product_price": "53.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/384", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1654", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1654-00.jpg", + "image_is_video": "0", + "product_name": "Gameduino 2 with 4.3\" 480x272 Display and Touchscreen", + "product_model": "", + "product_mpn": "ADA1654", + "product_master_category": "354", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "79.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1654", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2601", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2601-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit RGB Matrix Shield for Arduino", + "product_model": "", + "product_mpn": "ADA2601", + "product_master_category": "355", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "19.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2601", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4956", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4956-00.jpg", + "image_is_video": "0", + "product_name": "Translucent Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA4956", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4956", + "product_stock": "in stock", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4971", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4971-03.jpg", + "image_is_video": "1", + "product_name": "Black Aluminum Kitty Paw Keycap with Pink Silicone Toes", + "product_model": "MX Compatible Switches", + "product_mpn": "ADA4971", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "16.50", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4971", + "product_stock": "in stock", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4972", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4972-04.jpg", + "image_is_video": "1", + "product_name": "Black Aluminum Kitty Paw Keycap with Translucent Silicone Toes", + "product_model": "MX Compatible Switches", + "product_mpn": "ADA4972", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "16.50", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4972", + "product_stock": "in stock", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "16.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4997", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4997-00.jpg", + "image_is_video": "0", + "product_name": "Black DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA4997", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4997", + "product_stock": "0", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "4998", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4998-00.jpg", + "image_is_video": "0", + "product_name": "White DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA4998", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4998", + "product_stock": "0", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "4999", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4999-00.jpg", + "image_is_video": "0", + "product_name": "Light Gray DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA4999", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4999", + "product_stock": "-1", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "5002", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5002-00.jpg", + "image_is_video": "0", + "product_name": "Pink DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5002", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5002", + "product_stock": "-1", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5003", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5003-06.jpg", + "image_is_video": "0", + "product_name": "Purple DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5003", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5003", + "product_stock": "10", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5004", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5004-01.jpg", + "image_is_video": "0", + "product_name": "Lavender DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5004", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5004", + "product_stock": "-2", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "5005", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5005-02.jpg", + "image_is_video": "0", + "product_name": "Blue DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5005", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5005", + "product_stock": "18", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5006", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5006-03.jpg", + "image_is_video": "0", + "product_name": "Light Blue DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5006", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5006", + "product_stock": "26", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5007", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5007-05.jpg", + "image_is_video": "0", + "product_name": "Translucent Red DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5007", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5007", + "product_stock": "11", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5008", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5008-00.jpg", + "image_is_video": "0", + "product_name": "Translucent Smoke DSA Keycaps for MX Compatible Switches", + "product_model": "10 pack", + "product_mpn": "ADA5008", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5008", + "product_stock": "0", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5009", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5009-00.jpg", + "image_is_video": "0", + "product_name": "Dark Yellow DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5009", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5009", + "product_stock": "-1", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "5010", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5010-00.jpg", + "image_is_video": "0", + "product_name": "Orange DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5010", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5010", + "product_stock": "-1", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "5011", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5011-00.jpg", + "image_is_video": "0", + "product_name": "Red DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5011", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5011", + "product_stock": "-1", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "5012", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5012-00.jpg", + "image_is_video": "0", + "product_name": "Dark Gray DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5012", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5012", + "product_stock": "-3", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5013", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5013-00.jpg", + "image_is_video": "0", + "product_name": "Clear DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5013", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.2", + "product_url": "https:\/\/www.adafruit.com\/product\/5013", + "product_stock": "3", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5014", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5014-00.jpg", + "image_is_video": "0", + "product_name": "Translucent Blue DSA Keycaps for MX Compatible Switches", + "product_model": "10 pack", + "product_mpn": "ADA5014", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.2", + "product_url": "https:\/\/www.adafruit.com\/product\/5014", + "product_stock": "-1", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5015", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5015-00.jpg", + "image_is_video": "0", + "product_name": "Neon Green DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5015", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.2", + "product_url": "https:\/\/www.adafruit.com\/product\/5015", + "product_stock": "-1", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "5016", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5016-00.jpg", + "image_is_video": "0", + "product_name": "Dark Blue DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5016", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.2", + "product_url": "https:\/\/www.adafruit.com\/product\/5016", + "product_stock": "-3", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": "5097", + "discount_pricing": [] + }, + { + "product_id": "5039", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5039-08.jpg", + "image_is_video": "0", + "product_name": "Relegendable Plastic Keycaps for MX Compatible Switches 10 pack", + "product_model": "", + "product_mpn": "ADA5039", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5039", + "product_stock": "in stock", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5068", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5068-04.jpg", + "image_is_video": "0", + "product_name": "Clear Keycaps for MX Compatible Switches - 12-pack", + "product_model": "", + "product_mpn": "ADA5068", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "11.6", + "product_url": "https:\/\/www.adafruit.com\/product\/5068", + "product_stock": "in stock", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5076", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5076-03.jpg", + "image_is_video": "0", + "product_name": "Kitty Paw Silicone Keycap Molds - MX Compatible Switches", + "product_model": "", + "product_mpn": "ADA5076", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5076", + "product_stock": "44", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5094", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/5094-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit Etched R4 Keycap for MX Compatible Switches", + "product_model": "", + "product_mpn": "ADA5094", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/5094", + "product_stock": "-3", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5101", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5101-02.jpg", + "image_is_video": "0", + "product_name": "Light Purple DSA Keycaps for MX Compatible Switches - 10 pack", + "product_model": "", + "product_mpn": "ADA5101", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5101", + "product_stock": "-3", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": "5097", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5112", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5112-00.jpg", + "image_is_video": "0", + "product_name": "Black Windowed Lamp R4 Keycap for MX Compatible Switches", + "product_model": "", + "product_mpn": "ADA5112", + "product_master_category": "357", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/5112", + "product_stock": "in stock", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "196", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/196-00.jpg", + "image_is_video": "0", + "product_name": "Proto-Screwshield (Wingshield) R3 Kit for Arduino", + "product_model": "", + "product_mpn": "ADA196", + "product_master_category": "358", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "38.6", + "product_url": "https:\/\/www.adafruit.com\/product\/196", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "51", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/51-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Proto Shield for Arduino Kit", + "product_model": "v.5", + "product_mpn": "ADA51", + "product_master_category": "358", + "product_manufacturer": "Adafruit", + "product_price": "15.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/51", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.00", + "discounted_percent": "27", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "33", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "55", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/55-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit Proto Shield for Arduino PCB", + "product_model": "v.5", + "product_mpn": "ADA55", + "product_master_category": "358", + "product_manufacturer": "Adafruit", + "product_price": "6.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/55", + "product_stock": "-3", + "products_hts": "8534.00.00.40", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.00", + "discounted_percent": "17", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "4.50", + "discounted_percent": "25", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "187", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/187-00.jpg", + "image_is_video": "0", + "product_name": "DIY shield for Arduino", + "product_model": "", + "product_mpn": "ADA187", + "product_master_category": "358", + "product_manufacturer": "Adafruit", + "product_price": "6.00", + "product_shipping_weight": "13.8", + "product_url": "https:\/\/www.adafruit.com\/product\/187", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.40", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "256", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/256-01.jpg", + "image_is_video": "0", + "product_name": "Patch shield for Arduino", + "product_model": "v5.01", + "product_mpn": "ADA256", + "product_master_category": "358", + "product_manufacturer": null, + "product_price": "19.50", + "product_shipping_weight": "53.3", + "product_url": "https:\/\/www.adafruit.com\/product\/256", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "462", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/462-02.jpg", + "image_is_video": "0", + "product_name": "Standalone AVR ISP Programmer Shield Kit - includes blank chip!", + "product_model": "", + "product_mpn": "ADA462", + "product_master_category": "358", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "30.3", + "product_url": "https:\/\/www.adafruit.com\/product\/462", + "product_stock": "0", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "192", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/192-01.jpg", + "image_is_video": "0", + "product_name": "Mega protoshield for Arduino", + "product_model": "", + "product_mpn": "ADA192", + "product_master_category": "358", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "30.6", + "product_url": "https:\/\/www.adafruit.com\/product\/192", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2077", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2077-10.jpg", + "image_is_video": "1", + "product_name": "Adafruit Proto Shield for Arduino Unassembled Kit - Stackable", + "product_model": "Version R3", + "product_mpn": "ADA2077", + "product_master_category": "358", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "20.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2077", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "94", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/94-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Wave Shield for Arduino Kit", + "product_model": "v1.1", + "product_mpn": "ADA94", + "product_master_category": "359", + "product_manufacturer": "Adafruit", + "product_price": "22.00", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/94", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1788", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1788-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit \"Music Maker\" MP3 Shield for Arduino w\/3W Stereo Amp", + "product_model": "v1.0", + "product_mpn": "ADA1788", + "product_master_category": "359", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "22.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1788", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1790", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1790-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit \"Music Maker\" MP3 Shield for Arduino (MP3\/Ogg\/WAV...)", + "product_model": "", + "product_mpn": "ADA1790", + "product_master_category": "359", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "20.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1790", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "175", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/175-01.jpg", + "image_is_video": "0", + "product_name": "Music & sound add-on pack for Arduino", + "product_model": "v1.1", + "product_mpn": "ADA175", + "product_master_category": "359", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "92.4", + "product_url": "https:\/\/www.adafruit.com\/product\/175", + "product_stock": "13", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1997", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1997-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi B+ \/ Pi 2 \/ Pi 3 Frosted White Enclosure", + "product_model": "", + "product_mpn": "ADA1997", + "product_master_category": "362", + "product_manufacturer": "MCM Electronics", + "product_price": "8.95", + "product_shipping_weight": "36.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1997", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1998", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1998-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi B+ \/ Pi 2 \/ Pi 3 Black Enclosure", + "product_model": "", + "product_mpn": "ADA1998", + "product_master_category": "362", + "product_manufacturer": "MCM Electronics", + "product_price": "8.95", + "product_shipping_weight": "36.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1998", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2033", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2033-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Raspberry Pi 7\" Touchscreen Display Case - Noir", + "product_model": "", + "product_mpn": "ADA2033", + "product_master_category": "362", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "162.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2033", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2252", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2252-02.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Blue", + "product_model": "", + "product_mpn": "ADA2252", + "product_master_category": "362", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2252", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2808", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2808-00.jpg", + "image_is_video": "0", + "product_name": "Faceplate and Buttons Pack for 2.4\" PiTFT HAT - Raspberry Pi A+", + "product_model": "", + "product_mpn": "ADA2808", + "product_master_category": "362", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2808", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3187", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3187-02.jpg", + "image_is_video": "0", + "product_name": "SmartiPi Touch - Stand for Raspberry Pi 7\" Touchscreen Display", + "product_model": "", + "product_mpn": "ADA3187", + "product_master_category": "362", + "product_manufacturer": "SmartiPi", + "product_price": "19.95", + "product_shipping_weight": "343.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3187", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3569", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3569-00.jpg", + "image_is_video": "0", + "product_name": "SmartiPi Touch Back Cover - Small", + "product_model": "", + "product_mpn": "ADA3569", + "product_master_category": "362", + "product_manufacturer": "SmartiPi", + "product_price": "9.95", + "product_shipping_weight": "156.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3569", + "product_stock": "40", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3570", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3570-02.jpg", + "image_is_video": "0", + "product_name": "SmartiPi Touch Back Cover - Large", + "product_model": "", + "product_mpn": "ADA3570", + "product_master_category": "362", + "product_manufacturer": "SmartiPi", + "product_price": "9.95", + "product_shipping_weight": "175.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3570", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3576", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3576-01.jpg", + "image_is_video": "0", + "product_name": "SmartiPi Touch Stand with Lego Compatible Front", + "product_model": "", + "product_mpn": "ADA3576", + "product_master_category": "362", + "product_manufacturer": "SmartiPi", + "product_price": "19.95", + "product_shipping_weight": "330.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3576", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1805", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1805-00.jpg", + "image_is_video": "0", + "product_name": "Computer Starter Kit for Raspberry Pi 3 (Pi Not Included)", + "product_model": "", + "product_mpn": "ADA1805", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "50.00", + "product_shipping_weight": "742.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1805", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "50.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "45.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "40.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1806", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1806-00.jpg", + "image_is_video": "0", + "product_name": "Computer Starter Kit for Raspberry Pi 3 (Includes Raspberry Pi!)", + "product_model": "", + "product_mpn": "ADA1806", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "84.95", + "product_shipping_weight": "795.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1806", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "67.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2380", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2380-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 2 Model B Starter Pack - Includes a Raspberry Pi 2", + "product_model": "", + "product_mpn": "ADA2380", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "141.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2380", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2702", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2702-00.jpg", + "image_is_video": "0", + "product_name": "Microsoft IoT Pack for Raspberry Pi 3 - No Pi", + "product_model": "", + "product_mpn": "ADA2702", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "75.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2702", + "product_stock": "1", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2737", + "discount_pricing": [ + { + "discounted_price": "75.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "60.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2733", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2733-01.jpg", + "image_is_video": "0", + "product_name": "Microsoft IoT Pack for Raspberry Pi 3 - w\/ Raspberry Pi 3", + "product_model": "", + "product_mpn": "ADA2733", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "114.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2733", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2737", + "discount_pricing": [ + { + "discounted_price": "114.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "103.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "91.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3058", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3058-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 3 Model B Starter Pack - Includes a Raspberry Pi 3", + "product_model": "", + "product_mpn": "ADA3058", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "84.95", + "product_shipping_weight": "55.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3058", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "3334", + "discount_pricing": [ + { + "discounted_price": "84.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "76.46", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "3114", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3114-01.jpg", + "image_is_video": "1", + "product_name": "Raspberry Pi Media Center Kit for Raspberry Pi3 - No Pi Included", + "product_model": "", + "product_mpn": "ADA3114", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "64.95", + "product_shipping_weight": "636.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3114", + "product_stock": "42", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3159", + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3158", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3158-01.jpg", + "image_is_video": "1", + "product_name": "Raspberry Pi Media Center Kit - Includes Pi Model 3 B+", + "product_model": "", + "product_mpn": "ADA3158", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "703.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3158", + "product_stock": "42", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3159", + "discount_pricing": [] + }, + { + "product_id": "3241", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3241-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 3 Model B Starter Pack (Without Raspberry Pi)", + "product_model": "", + "product_mpn": "ADA3241", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3241", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "3334", + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3272", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3272-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Arcade Cabinet Pack", + "product_model": "", + "product_mpn": "ADA3272", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "696.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3272", + "product_stock": "9", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3273", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3273-03.jpg", + "image_is_video": "0", + "product_name": "Pi Powered Times Square Traveler Pack", + "product_model": "", + "product_mpn": "ADA3273", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "639.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3273", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3275", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3275-06.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi DIY Camera Pack", + "product_model": "", + "product_mpn": "ADA3275", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "462.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3275", + "product_stock": "4", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3277", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3277-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Foundation Starter Kit with Pi 3", + "product_model": "", + "product_mpn": "ADA3277", + "product_master_category": "363", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "139.95", + "product_shipping_weight": "1,796.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3277", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3312", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3312-02.jpg", + "image_is_video": "0", + "product_name": "Particle IoT Starter Pack for Raspberry Pi - Includes Pi 3", + "product_model": "", + "product_mpn": "ADA3312", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "567.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3312", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3593", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3593-01.jpg", + "image_is_video": "0", + "product_name": "ARM-based IoT Kit for Cloud IoT Core - No Pi", + "product_model": "", + "product_mpn": "ADA3593", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "442.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3593", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "3609", + "discount_pricing": [] + }, + { + "product_id": "3594", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3594-01.jpg", + "image_is_video": "0", + "product_name": "ARM-based IoT Kit for Cloud IoT Core - w\/ Raspberry Pi 3", + "product_model": "", + "product_mpn": "ADA3594", + "product_master_category": "363", + "product_manufacturer": "Adafruit", + "product_price": "114.95", + "product_shipping_weight": "495.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3594", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "3609", + "discount_pricing": [] + }, + { + "product_id": "2327", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2327-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit 16-Channel PWM \/ Servo HAT for Raspberry Pi - Mini Kit", + "product_model": "", + "product_mpn": "ADA2327", + "product_master_category": "364", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "23.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2327", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2714", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2714-00.jpg", + "image_is_video": "0", + "product_name": "Extra-tall SMT GPIO Header for Raspberry Pi HAT", + "product_model": "2x20 Extra Tall Female Header", + "product_mpn": "ADA2714", + "product_master_category": "364", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2714", + "product_stock": "-3", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3354", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3354-04.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Rainbow HAT for Android Things\u2122 and Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3354", + "product_master_category": "364", + "product_manufacturer": "Pimoroni", + "product_price": "24.95", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3354", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3580", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3580-03.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Unicorn HAT HD", + "product_model": "", + "product_mpn": "ADA3580", + "product_master_category": "364", + "product_manufacturer": "Pimoroni", + "product_price": "34.95", + "product_shipping_weight": "36.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3580", + "product_stock": "47", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4284", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4284-01.jpg", + "image_is_video": "0", + "product_name": "8 Channel LoRa Gateway HAT with LoRa and GPS Antenna - SX1301", + "product_model": "Pi Not Included", + "product_mpn": "ADA4284", + "product_master_category": "364", + "product_manufacturer": null, + "product_price": "149.95", + "product_shipping_weight": "153.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4284", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4637", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4637-03.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Unicorn HAT Mini for Raspberry Pi", + "product_model": "PIM498", + "product_mpn": "ADA4637", + "product_master_category": "364", + "product_manufacturer": "Pimoroni", + "product_price": "22.95", + "product_shipping_weight": "13.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4637", + "product_stock": "27", + "products_hts": "8473.30.0002", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4863", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4863-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit CYBERDECK HAT for Raspberry Pi 400", + "product_model": "", + "product_mpn": "ADA4863", + "product_master_category": "364", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4863", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "11-2", + "min_qty": 1 + } + ] + }, + { + "product_id": "2288", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2288-06.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Unicorn Hat - 8x8 RGB LED Shield for Raspberry Pi A+\/B+", + "product_model": "", + "product_mpn": "ADA2288", + "product_master_category": "364", + "product_manufacturer": "Pimoroni", + "product_price": "29.95", + "product_shipping_weight": "22.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2288", + "product_stock": "7", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2455", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2455-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit PiTFT 2.4\" HAT Mini Kit - 320x240 TFT Touchscreen", + "product_model": "", + "product_mpn": "ADA2455", + "product_master_category": "364", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "35.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2455", + "product_stock": "93", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2315", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2315-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit PiTFT 2.2\" HAT Mini Kit - 320x240 2.2\" TFT - No Touch", + "product_model": "", + "product_mpn": "ADA2315", + "product_master_category": "364", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "0.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2315", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1112", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1112-01.jpg", + "image_is_video": "0", + "product_name": "Stacking Header for Raspberry Pi - 2x13 Extra Tall", + "product_model": "", + "product_mpn": "ADA1112", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1112", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1979", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1979-02.jpg", + "image_is_video": "0", + "product_name": "Stacking Header for Pi A+\/B+\/Pi 2\/Pi 3 - 2x20 Extra Tall Header", + "product_model": "", + "product_mpn": "ADA1979", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1979", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1992", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1992-00.jpg", + "image_is_video": "0", + "product_name": "GPIO Header for RaspberryPi A+\/B+\/Pi 2\/Pi 3", + "product_model": "Tall 2x20 Female Header", + "product_mpn": "ADA1992", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1992", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2196", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2196-00.jpg", + "image_is_video": "0", + "product_name": "The Raspberry Leaf for Model B+\/A+\/Pi 2\/Pi 3 (Two Pack)", + "product_model": "", + "product_mpn": "ADA2196", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2196", + "product_stock": "-3", + "products_hts": "3703.90.6000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2222", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2222-00.jpg", + "image_is_video": "0", + "product_name": "GPIO Header for Raspberry Pi A+\/B+\/Pi 2\/Pi 3\/Pi 4\/Zero", + "product_model": "2x20 Female Header", + "product_mpn": "ADA2222", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2222", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2223", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2223-05.jpg", + "image_is_video": "0", + "product_name": "GPIO Stacking Header for Pi A+\/B+\/Pi 2\/Pi 3", + "product_model": "Extra-long 2x20 Pins", + "product_mpn": "ADA2223", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2223", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2822", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2822-00.jpg", + "image_is_video": "0", + "product_name": "Break-away 0.1\" 2x20-pin Strip Dual Male Header", + "product_model": "", + "product_mpn": "ADA2822", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2822", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2823", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2823-00.jpg", + "image_is_video": "0", + "product_name": "0.1\" 2x20-pin Strip Right Angle Female Header", + "product_model": "", + "product_mpn": "ADA2823", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2823", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4079", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4079-01.jpg", + "image_is_video": "0", + "product_name": "2x20 Socket Riser Header for Raspberry Pi HATs and Bonnets", + "product_model": "", + "product_mpn": "ADA4079", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4079", + "product_stock": "in stock", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2187", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2187-00.jpg", + "image_is_video": "0", + "product_name": "SMT GPIO Header for Raspberry Pi HAT - 2x20 Short Female Header", + "product_model": "", + "product_mpn": "ADA2187", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2187", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2243", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2243-00.jpg", + "image_is_video": "0", + "product_name": "GPIO Header for Raspberry Pi HAT - 2x20 Short Female Header", + "product_model": "", + "product_mpn": "ADA2243", + "product_master_category": "365", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2243", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1344", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1344-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A 256MB RAM", + "product_model": "", + "product_mpn": "ADA1344", + "product_master_category": "379", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1344", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "998", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/998-09.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B 512MB RAM", + "product_model": "", + "product_mpn": "ADA998", + "product_master_category": "379", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "25.4", + "product_url": "https:\/\/www.adafruit.com\/product\/998", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "975", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/975-00.jpg", + "image_is_video": "0", + "product_name": "Rainbow Pibow - Enclosure for Raspberry Pi Model B", + "product_model": "", + "product_mpn": "ADA975", + "product_master_category": "380", + "product_manufacturer": "Pimoroni", + "product_price": "0.95", + "product_shipping_weight": "108.3", + "product_url": "https:\/\/www.adafruit.com\/product\/975", + "product_stock": "-5", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1892", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1892-02.jpg", + "image_is_video": "0", + "product_name": "Enclosure for PiTFT - Raspberry Pi Model B", + "product_model": "", + "product_mpn": "ADA1892", + "product_master_category": "380", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "58.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1892", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1326", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1326-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Case- Enclosure for Raspberry Pi Model A or B", + "product_model": "", + "product_mpn": "ADA1326", + "product_master_category": "380", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "51.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1326", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "965", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/965-03.jpg", + "image_is_video": "0", + "product_name": "Budget Pack for Raspberry Pi 1 Model B (Doesn't include RasPi)", + "product_model": "", + "product_mpn": "ADA965", + "product_master_category": "381", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "287.3", + "product_url": "https:\/\/www.adafruit.com\/product\/965", + "product_stock": "8", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "955", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/955-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B starter pack Doesn't include Raspberry Pi 1", + "product_model": "", + "product_mpn": "ADA955", + "product_master_category": "381", + "product_manufacturer": "Adafruit", + "product_price": "64.95", + "product_shipping_weight": "427.2", + "product_url": "https:\/\/www.adafruit.com\/product\/955", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1014", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1014-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 1 Model B Starter Pack - Includes a Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1014", + "product_master_category": "381", + "product_manufacturer": "Adafruit", + "product_price": "104.95", + "product_shipping_weight": "478.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1014", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "104.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "94.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "83.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1909", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1909-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni PiBrella", + "product_model": "", + "product_mpn": "ADA1909", + "product_master_category": "382", + "product_manufacturer": "Pimoroni", + "product_price": "17.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1909", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1432", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1432-03.jpg", + "image_is_video": "0", + "product_name": "Pi GPIO Reference Board for Raspberry Pi Model B", + "product_model": "", + "product_mpn": "ADA1432", + "product_master_category": "383", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1432", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1116", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1116-00.jpg", + "image_is_video": "0", + "product_name": "Board Edge Mounting Kit - Pack of 4", + "product_model": "", + "product_mpn": "ADA1116", + "product_master_category": "383", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1116", + "product_stock": "1", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1754", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1754-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Assembled Pi T-Cobbler Breakout for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1754", + "product_master_category": "383", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1754", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3687", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3687-01.jpg", + "image_is_video": "0", + "product_name": "SD Card Extender", + "product_model": "68cm (26 inch) long cable", + "product_mpn": "ADA3687", + "product_master_category": "384", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "21.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3687", + "product_stock": "30", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3688", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3688-00.jpg", + "image_is_video": "0", + "product_name": "Micro SD Card Extender - 68cm (26 inch) long flex cable", + "product_model": "", + "product_mpn": "ADA3688", + "product_master_category": "384", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "14.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3688", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4823", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4823-03.jpg", + "image_is_video": "0", + "product_name": "40 Pin GPIO Extension Cable for any 2x20 Pin Raspberry Pi", + "product_model": "150mm \/ 6\" long", + "product_mpn": "ADA4823", + "product_master_category": "384", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4823", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1338", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1338-00.jpg", + "image_is_video": "0", + "product_name": "GPIO Tube Ribbon Cable for Raspberry Pi Model B - 26pin 12\" long", + "product_model": "", + "product_mpn": "ADA1338", + "product_master_category": "384", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "27.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1338", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1337", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1337-03.jpg", + "image_is_video": "0", + "product_name": "GPIO Extender Cable for Raspberry Pi Model A\/B - 26pin 12\" long", + "product_model": "", + "product_mpn": "ADA1337", + "product_master_category": "384", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "25.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1337", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1475", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1475-03.jpg", + "image_is_video": "0", + "product_name": "USB Audio Adapter - Works with Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1475", + "product_master_category": "384", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1475", + "product_stock": "in stock", + "products_hts": "8471.70.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1736", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1736-05.jpg", + "image_is_video": "0", + "product_name": "Mini Chiclet Keyboard - USB Wired - Black", + "product_model": "", + "product_mpn": "ADA1736", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "339.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1736", + "product_stock": "in stock", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1738", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1738-03.jpg", + "image_is_video": "0", + "product_name": "Wireless Keyboard and Mouse Combo - One USB Port!", + "product_model": "", + "product_mpn": "ADA1738", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "439.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1738", + "product_stock": "0", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2876", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2876-03.jpg", + "image_is_video": "0", + "product_name": "Full Size Wireless Keyboard with Trackpad", + "product_model": "", + "product_mpn": "ADA2876", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "315.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2876", + "product_stock": "in stock", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3398", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3398-03.jpg", + "image_is_video": "1", + "product_name": "Keyboard with Blue-type Mechanical Switches and LED Backlights", + "product_model": "87-Key", + "product_mpn": "ADA3398", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "893.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3398", + "product_stock": "-3", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3600", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3600-01.jpg", + "image_is_video": "0", + "product_name": "10\" Bluetooth Keyboard \u2013 Black", + "product_model": "", + "product_mpn": "ADA3600", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "203.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3600", + "product_stock": "-3", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3601", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3601-00.jpg", + "image_is_video": "0", + "product_name": "Mini Bluetooth Keyboard \u2013 Black", + "product_model": "", + "product_mpn": "ADA3601", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "100.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3601", + "product_stock": "in stock", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4112", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4112-06.jpg", + "image_is_video": "0", + "product_name": "Official Raspberry Pi Keyboard - Black and Gray", + "product_model": "", + "product_mpn": "ADA4112", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "18.95", + "product_shipping_weight": "375.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4112", + "product_stock": "in stock", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4113", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4113-02.jpg", + "image_is_video": "0", + "product_name": "Official Raspberry Pi USB Optical Mouse - Black and Gray", + "product_model": "", + "product_mpn": "ADA4113", + "product_master_category": "386", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "8.95", + "product_shipping_weight": "112.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4113", + "product_stock": "in stock", + "products_hts": "8471.60.7000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5059", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5059-04.jpg", + "image_is_video": "0", + "product_name": "Full Size Panel Mount Keyboard with Trackpad", + "product_model": "", + "product_mpn": "ADA5059", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "569.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5059", + "product_stock": "18", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5060", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5060-04.jpg", + "image_is_video": "0", + "product_name": "Panel Mount Glowing Trackball", + "product_model": "", + "product_mpn": "ADA5060", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "226.5", + "product_url": "https:\/\/www.adafruit.com\/product\/5060", + "product_stock": "12", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5061", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5061-00.jpg", + "image_is_video": "0", + "product_name": "Medium Panel Mount USB Trackpad with Three Buttons", + "product_model": "", + "product_mpn": "ADA5061", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "96.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5061", + "product_stock": "11", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5062", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5062-00.jpg", + "image_is_video": "0", + "product_name": "Mini Panel Mount USB Trackpad with Two Buttons", + "product_model": "", + "product_mpn": "ADA5062", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "84.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5062", + "product_stock": "10", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5063", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5063-00.jpg", + "image_is_video": "0", + "product_name": "Mini Panel Mount USB Trackball with Three Buttons", + "product_model": "", + "product_mpn": "ADA5063", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "150.3", + "product_url": "https:\/\/www.adafruit.com\/product\/5063", + "product_stock": "0", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2025", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2025-02.jpg", + "image_is_video": "0", + "product_name": "USB Wired Mouse - Two Buttons plus Wheel", + "product_model": "", + "product_mpn": "ADA2025", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "89.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2025", + "product_stock": "in stock", + "products_hts": "8471.60.9050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1737", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1737-02.jpg", + "image_is_video": "0", + "product_name": "Mini Wireless Keyboard - Black w\/ Batteries", + "product_model": "", + "product_mpn": "ADA1737", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "348.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1737", + "product_stock": "in stock", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1560", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1560-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit IRKey with Remote - IR Remote to Keyboard", + "product_model": "", + "product_mpn": "ADA1560", + "product_master_category": "386", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "14.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1560", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "857", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/857-03.jpg", + "image_is_video": "0", + "product_name": "Miniature Keyboard- Microcontroller-Friendly PS\/2 and USB", + "product_model": "", + "product_mpn": "ADA857", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "315.6", + "product_url": "https:\/\/www.adafruit.com\/product\/857", + "product_stock": "in stock", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "922", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/922-08.jpg", + "image_is_video": "0", + "product_name": "Miniature Wireless USB Keyboard with Touchpad", + "product_model": "", + "product_mpn": "ADA922", + "product_master_category": "386", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "158.9", + "product_url": "https:\/\/www.adafruit.com\/product\/922", + "product_stock": "in stock", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "966", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/966-00.jpg", + "image_is_video": "0", + "product_name": "Low-profile microSD card adapter for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA966", + "product_master_category": "389", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/966", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3664", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3664-00.jpg", + "image_is_video": "0", + "product_name": "DiMeCard 8 microSD Card Holder", + "product_model": "", + "product_mpn": "ADA3664", + "product_master_category": "389", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "10.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3664", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "IE", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4395", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4395-02.jpg", + "image_is_video": "0", + "product_name": "Micro SD Card PCB Extender", + "product_model": "", + "product_mpn": "ADA4395", + "product_master_category": "389", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4395", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2393", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2393-01.jpg", + "image_is_video": "0", + "product_name": "AstroPrint 3D Printing Software for Raspberry Pi - Micro SD card", + "product_model": "", + "product_mpn": "ADA2393", + "product_master_category": "389", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2393", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1693", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1693-00.jpg", + "image_is_video": "0", + "product_name": "Green Shortening microSD adapter for Raspberry Pi & Macbooks", + "product_model": "", + "product_mpn": "ADA1693", + "product_master_category": "389", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1693", + "product_stock": "-3", + "products_hts": "8523.51.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2091", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1763", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1763-00.jpg", + "image_is_video": "0", + "product_name": "Black Shortening microSD adapter for Raspberry Pi & Macbooks", + "product_model": "", + "product_mpn": "ADA1763", + "product_master_category": "389", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1763", + "product_stock": "in stock", + "products_hts": "8523.51.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2091", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1569", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1569-00.jpg", + "image_is_video": "0", + "product_name": "Blue Shortening microSD card adapter for Raspberry Pi & Macbooks", + "product_model": "", + "product_mpn": "ADA1569", + "product_master_category": "389", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1569", + "product_stock": "-1", + "products_hts": "523.51.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2091", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4467", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4467-18.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Raspberry Pi 3 A+ Book Bundle", + "product_model": "Includes Pi, Case, & SD Card", + "product_mpn": "ADA4467", + "product_master_category": "392", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "49.95", + "product_shipping_weight": "484.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4467", + "product_stock": "52", + "products_hts": "8471.50.0150", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1053", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1053-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi User Guide by Eben Upton and Gareth Halfacree", + "product_model": "4th Edition", + "product_mpn": "ADA1053", + "product_master_category": "392", + "product_manufacturer": null, + "product_price": "24.99", + "product_shipping_weight": "536.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1053", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1587", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1587-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 16", + "product_model": "", + "product_mpn": "ADA1587", + "product_master_category": "394", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1587", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1701", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1701-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 11", + "product_model": "", + "product_mpn": "ADA1701", + "product_master_category": "394", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1701", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1702", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1702-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 12", + "product_model": "", + "product_mpn": "ADA1702", + "product_master_category": "394", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1702", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1703", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1703-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 13", + "product_model": "", + "product_mpn": "ADA1703", + "product_master_category": "394", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1703", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1705", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1705-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 15", + "product_model": "", + "product_mpn": "ADA1705", + "product_master_category": "394", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1705", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1771", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1771-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 19", + "product_model": "", + "product_mpn": "ADA1771", + "product_master_category": "394", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1771", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2644", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2644-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 28", + "product_model": "", + "product_mpn": "ADA2644", + "product_master_category": "394", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "166.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2644", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [] + }, + { + "product_id": "2646", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2646-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 30", + "product_model": "", + "product_mpn": "ADA2646", + "product_master_category": "394", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "176.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2646", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2092", + "discount_pricing": [] + }, + { + "product_id": "3253", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3253-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Raspberry Pi Camera Board Case with 1\/4\" Tripod Mount", + "product_model": "", + "product_mpn": "ADA3253", + "product_master_category": "395", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3253", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4377", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4377-04.jpg", + "image_is_video": "0", + "product_name": "SmartiPi Touch 2 - Stand for Raspberry Pi 7\" Touchscreen Display", + "product_model": "Compatible with Pi 4", + "product_mpn": "ADA4377", + "product_master_category": "395", + "product_manufacturer": "SmartiPi", + "product_price": "27.99", + "product_shipping_weight": "392.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4377", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4378", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4378-00.jpg", + "image_is_video": "0", + "product_name": "SmartiPi Touch 2 Back Cover (For SmartiPi 2 Only) - Large 35mm", + "product_model": "", + "product_mpn": "ADA4378", + "product_master_category": "395", + "product_manufacturer": "SmartiPi", + "product_price": "7.99", + "product_shipping_weight": "97.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4378", + "product_stock": "8", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.19", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.39", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4379", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4379-00.jpg", + "image_is_video": "0", + "product_name": "SmartiPi Touch 2 Back Cover (For SmartiPi 2 Only) - Small 15mm", + "product_model": "", + "product_mpn": "ADA4379", + "product_master_category": "395", + "product_manufacturer": "SmartiPi", + "product_price": "7.99", + "product_shipping_weight": "72.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4379", + "product_stock": "9", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.19", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.39", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4951", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4951-03.jpg", + "image_is_video": "0", + "product_name": "Smarti Pi Touch Pro for Raspberry Pi and Official 7\" Display", + "product_model": "", + "product_mpn": "ADA4951", + "product_master_category": "395", + "product_manufacturer": "SmartiPi", + "product_price": "34.95", + "product_shipping_weight": "713.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4951", + "product_stock": "98", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1037", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1037-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pibow - Enclosure for Raspberry Pi Model B Computers", + "product_model": "", + "product_mpn": "ADA1037", + "product_master_category": "397", + "product_manufacturer": "Adafruit", + "product_price": "0.95", + "product_shipping_weight": "110.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1037", + "product_stock": "-5", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1723", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1723-06.jpg", + "image_is_video": "0", + "product_name": "PiTFT Pibow kit for Raspberry Pi Model B Computer", + "product_model": "", + "product_mpn": "ADA1723", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "21.95", + "product_shipping_weight": "101.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1723", + "product_stock": "-3", + "products_hts": "3920.51.1000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "986", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/986-00.jpg", + "image_is_video": "0", + "product_name": "VESA mount for Raspberry Pi Model A and Model B", + "product_model": "", + "product_mpn": "ADA986", + "product_master_category": "397", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/986", + "product_stock": "-3", + "products_hts": "3920.51.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1036", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1036-00.jpg", + "image_is_video": "0", + "product_name": "Pi Holder milled aluminum case for Raspberry Pi Model B no logo", + "product_model": "", + "product_mpn": "ADA1036", + "product_master_category": "397", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1036", + "product_stock": "0", + "products_hts": "7601.20.9090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1039", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1039-00.jpg", + "image_is_video": "0", + "product_name": "Pi Holder milled aluminum case for Raspberry Pi Model B w\/logo", + "product_model": "", + "product_mpn": "ADA1039", + "product_master_category": "397", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1039", + "product_stock": "0", + "products_hts": "7601.20.9090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1067", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1067-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Colored Enclosure for Raspberry Pi Model B Computers", + "product_model": "", + "product_mpn": "ADA1067", + "product_master_category": "397", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1067", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1122", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1122-00.jpg", + "image_is_video": "0", + "product_name": "Toxic Pibow - Enclosure for Raspberry Pi Model B Computers", + "product_model": "", + "product_mpn": "ADA1122", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "19.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1122", + "product_stock": "-3", + "products_hts": "3920.51.1000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1140", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1140-00.jpg", + "image_is_video": "0", + "product_name": "Pi Shell - Clear Raspberry Pi Model A or B Case", + "product_model": "", + "product_mpn": "ADA1140", + "product_master_category": "397", + "product_manufacturer": null, + "product_price": "10.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1140", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1144", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1144-00.jpg", + "image_is_video": "0", + "product_name": "Pi Shell - Blue Raspberry Pi Model A or B Case", + "product_model": "", + "product_mpn": "ADA1144", + "product_master_category": "397", + "product_manufacturer": null, + "product_price": "10.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1144", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1320", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1320-00.jpg", + "image_is_video": "0", + "product_name": "PiBow VESA Mounting Layer Plate", + "product_model": "", + "product_mpn": "ADA1320", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "4.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1320", + "product_stock": "-3", + "products_hts": "3920.51.1000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1486", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1486-00.jpg", + "image_is_video": "0", + "product_name": "Timber Pibow - Enclosure for Raspberry Pi Model B Computers", + "product_model": "", + "product_mpn": "ADA1486", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "19.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1486", + "product_stock": "-3", + "products_hts": "3920.51.1000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2425", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2425-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni OmniVESA", + "product_model": "", + "product_mpn": "ADA2425", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "5.95", + "product_shipping_weight": "19.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2425", + "product_stock": "-3", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1984", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1984-04.jpg", + "image_is_video": "0", + "product_name": "Pibow Coup\u00e9 - Enclosure for Raspberry Pi Model B Computers", + "product_model": "", + "product_mpn": "ADA1984", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "14.50", + "product_shipping_weight": "74.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1984", + "product_stock": "-3", + "products_hts": "3920.51.1000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.05", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1610", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1610-00.jpg", + "image_is_video": "0", + "product_name": "UniPi - Unibody aluminum case for Raspberry Pi Model B", + "product_model": "", + "product_mpn": "ADA1610", + "product_master_category": "397", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "155.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1610", + "product_stock": "-3", + "products_hts": "7601.20.9090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1319", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1319-00.jpg", + "image_is_video": "0", + "product_name": "Modela Ninja Pibow - Enclosure for Raspberry Pi Model A Computer", + "product_model": "", + "product_mpn": "ADA1319", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "66.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1319", + "product_stock": "33", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1123", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1123-00.jpg", + "image_is_video": "0", + "product_name": "Crystal Pibow - Enclosure for Raspberry Pi Model B Computers", + "product_model": "", + "product_mpn": "ADA1123", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "0.95", + "product_shipping_weight": "107.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1123", + "product_stock": "-5", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1124", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1124-00.jpg", + "image_is_video": "0", + "product_name": "Ninja Pibow - Enclosure for Raspberry Pi Model B Computers", + "product_model": "", + "product_mpn": "ADA1124", + "product_master_category": "397", + "product_manufacturer": "Pimoroni", + "product_price": "9.95", + "product_shipping_weight": "107.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1124", + "product_stock": "-5", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "859", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/859-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Box - Enclosure for Raspberry Pi Model A or B", + "product_model": "", + "product_mpn": "ADA859", + "product_master_category": "397", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "89.0", + "product_url": "https:\/\/www.adafruit.com\/product\/859", + "product_stock": "0", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4096", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4096-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Official Model 3 A+ Case", + "product_model": "", + "product_mpn": "ADA4096", + "product_master_category": "398", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "5.95", + "product_shipping_weight": "27.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4096", + "product_stock": "24", + "products_hts": "8538.10.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2368", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2368-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A+ Case Lid - Orange", + "product_model": "", + "product_mpn": "ADA2368", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "2.00", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2368", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2402", + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2370", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2370-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A+ Case Lid - Blue", + "product_model": "", + "product_mpn": "ADA2370", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "2.00", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2370", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2402", + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2372", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2372-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A+ Case Lid - Pink", + "product_model": "", + "product_mpn": "ADA2372", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "2.00", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2372", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2402", + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2364", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2364-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A+ Case Lid - Purple", + "product_model": "", + "product_mpn": "ADA2364", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "2.00", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2364", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2402", + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2366", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2366-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A+ Case Lid - Red", + "product_model": "", + "product_mpn": "ADA2366", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "2.00", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2366", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2402", + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2369", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2369-01.jpg", + "image_is_video": "0", + "product_name": "Pi Model A+ Case Base - Orange", + "product_model": "", + "product_mpn": "ADA2369", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2369", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2401", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2371", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2371-02.jpg", + "image_is_video": "0", + "product_name": "Pi Model A+ Case Base - Blue", + "product_model": "", + "product_mpn": "ADA2371", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2371", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2401", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2365", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2365-04.jpg", + "image_is_video": "0", + "product_name": "Pi Model A+ Case Base - Purple", + "product_model": "", + "product_mpn": "ADA2365", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2365", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2401", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2367", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2367-02.jpg", + "image_is_video": "0", + "product_name": "Pi Model A+ Case Base - Red", + "product_model": "", + "product_mpn": "ADA2367", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2367", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2401", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2360", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2360-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A+ Case Lid - Smoke", + "product_model": "", + "product_mpn": "ADA2360", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "2.00", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2360", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2402", + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2373", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2373-01.jpg", + "image_is_video": "0", + "product_name": "Pi Model A+ Case Base - Pink", + "product_model": "", + "product_mpn": "ADA2373", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2373", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2401", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2362", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2362-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model A+ Case Lid - Clear", + "product_model": "", + "product_mpn": "ADA2362", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "2.00", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2362", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2402", + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2363", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2363-01.jpg", + "image_is_video": "0", + "product_name": "Pi Model A+ Case Base - Clear", + "product_model": "", + "product_mpn": "ADA2363", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2363", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2401", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2361", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2361-01.jpg", + "image_is_video": "0", + "product_name": "Pi Model A+ Case Base - Smoke", + "product_model": "", + "product_mpn": "ADA2361", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2361", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2401", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2359", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2359-09.jpg", + "image_is_video": "0", + "product_name": "Adafruit Raspberry Pi A+ Case - Smoke Base w\/ Clear Top", + "product_model": "", + "product_mpn": "ADA2359", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "40.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2359", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2296", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2296-00.jpg", + "image_is_video": "0", + "product_name": "Pibow Royale - Enclosure for Raspberry Pi Model A+ Computers", + "product_model": "", + "product_mpn": "ADA2296", + "product_master_category": "398", + "product_manufacturer": "Pimoroni", + "product_price": "8.95", + "product_shipping_weight": "53.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2296", + "product_stock": "0", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2280", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2280-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Box Plus - Enclosure for Raspberry Pi Model A+", + "product_model": "", + "product_mpn": "ADA2280", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "47.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2280", + "product_stock": "72", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2281", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2281-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Protector for Raspberry Pi Model A+", + "product_model": "", + "product_mpn": "ADA2281", + "product_master_category": "398", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "23.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2281", + "product_stock": "57", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1985", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1985-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Box Plus - Enclosure for RasPi Model B+\/Pi 2\/ Pi 3", + "product_model": "", + "product_mpn": "ADA1985", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "84.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1985", + "product_stock": "-7", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2198", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2198-00.jpg", + "image_is_video": "0", + "product_name": "UniPi+ - Unibody aluminum case for Raspberry Pi", + "product_model": "Model B+ \/ Pi 2 \/ Pi 3", + "product_mpn": "ADA2198", + "product_master_category": "399", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "152.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2198", + "product_stock": "-3", + "products_hts": "7601.20.9090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2244", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2244-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Smoke Gray", + "product_model": "", + "product_mpn": "ADA2244", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2244", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2245", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2245-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Yellow", + "product_model": "", + "product_mpn": "ADA2245", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2245", + "product_stock": "28", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2246", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2246-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Orange", + "product_model": "", + "product_mpn": "ADA2246", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2246", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2247", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2247-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Pink", + "product_model": "", + "product_mpn": "ADA2247", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "19.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2247", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2248", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2248-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Blue", + "product_model": "", + "product_mpn": "ADA2248", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2248", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2249", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2249-06.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Yellow", + "product_model": "", + "product_mpn": "ADA2249", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2249", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2250", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2250-02.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Orange", + "product_model": "", + "product_mpn": "ADA2250", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2250", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2251", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2251-07.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Green", + "product_model": "", + "product_mpn": "ADA2251", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2251", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2253", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2253-01.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Clear", + "product_model": "", + "product_mpn": "ADA2253", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "29.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2253", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2254", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2254-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Green", + "product_model": "", + "product_mpn": "ADA2254", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2254", + "product_stock": "0", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2255", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2255-05.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Pink", + "product_model": "", + "product_mpn": "ADA2255", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "28.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2255", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2256", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2256-01.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Smoke Gray", + "product_model": "", + "product_mpn": "ADA2256", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2256", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2257", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2257-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Clear", + "product_model": "", + "product_mpn": "ADA2257", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2257", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2258", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2258-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Raspberry Pi B+ \/ Pi 2 \/ Pi 3 Case - Smoke Base", + "product_model": "w\/ Clear Top", + "product_mpn": "ADA2258", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "47.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2258", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2292", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2292-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Protector for Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 B+", + "product_model": "", + "product_mpn": "ADA2292", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "28.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2292", + "product_stock": "0", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2303", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2303-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Purple", + "product_model": "", + "product_mpn": "ADA2303", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2303", + "product_stock": "9", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2304", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2304-01.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Purple", + "product_model": "", + "product_mpn": "ADA2304", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2304", + "product_stock": "-10", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2334", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2334-03.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 Case Base - Red", + "product_model": "", + "product_mpn": "ADA2334", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "5.00", + "product_shipping_weight": "28.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2334", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2285", + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2335", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2335-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3 Case Lid - Red", + "product_model": "", + "product_mpn": "ADA2335", + "product_master_category": "399", + "product_manufacturer": "Adafruit", + "product_price": "3.00", + "product_shipping_weight": "20.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2335", + "product_stock": "60", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2286", + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2346", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2346-01.jpg", + "image_is_video": "0", + "product_name": "Anidees Silver Case w\/ Crystal Top for Raspberry Pi B+\/Pi 2\/Pi 3", + "product_model": "", + "product_mpn": "ADA2346", + "product_master_category": "399", + "product_manufacturer": "anidees", + "product_price": "39.95", + "product_shipping_weight": "246.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2346", + "product_stock": "0", + "products_hts": "7612.90.9000", + "products_coo": "FR", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2347", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2347-04.jpg", + "image_is_video": "0", + "product_name": "Anidees Black Case w\/ Smokey Top for Raspberry Pi B+\/Pi 2\/Pi 3", + "product_model": "", + "product_mpn": "ADA2347", + "product_master_category": "399", + "product_manufacturer": "anidees", + "product_price": "39.95", + "product_shipping_weight": "245.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2347", + "product_stock": "-3", + "products_hts": "7612.90.9000", + "products_coo": "FR", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2534", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2534-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit VESA Mount Plus for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2534", + "product_master_category": "399", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "70.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2534", + "product_stock": "-3", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2604", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2604-02.jpg", + "image_is_video": "0", + "product_name": "Pi Foundation Raspberry Pi B+ \/ Pi 2 \/ Pi 3 Case", + "product_model": "", + "product_mpn": "ADA2604", + "product_master_category": "399", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "9.95", + "product_shipping_weight": "53.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2604", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2619", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2619-00.jpg", + "image_is_video": "0", + "product_name": "Pibow Coup\u00e9 Flotilla - Enclosure for Pi 2\/B+\/Pi 3", + "product_model": "", + "product_mpn": "ADA2619", + "product_master_category": "399", + "product_manufacturer": "Pimoroni", + "product_price": "11.95", + "product_shipping_weight": "63.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2619", + "product_stock": "0", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2710", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2710-00.jpg", + "image_is_video": "0", + "product_name": "C4Labs Bel-Aire Case - Enclosure for Raspberry Pi 2 & Model B+", + "product_model": "", + "product_mpn": "ADA2710", + "product_master_category": "399", + "product_manufacturer": "C4 Labs", + "product_price": "19.95", + "product_shipping_weight": "63.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2710", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2779", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2779-12.jpg", + "image_is_video": "0", + "product_name": "PiTFT Pibow+ Kit for Pi 2 \/ B+ \/ Pi 3 B+", + "product_model": "", + "product_mpn": "ADA2779", + "product_master_category": "399", + "product_manufacturer": "Pimoroni", + "product_price": "19.95", + "product_shipping_weight": "106.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2779", + "product_stock": "35", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4131", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4131-05.jpg", + "image_is_video": "0", + "product_name": "Element14 Desktop Enclosure Kit for Raspberry Pi Computers", + "product_model": "", + "product_mpn": "ADA4131", + "product_master_category": "399", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "395.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4131", + "product_stock": "-1", + "products_hts": "7612.90.5000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4283", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4283-00.jpg", + "image_is_video": "0", + "product_name": "Pilot Gateway Pro LoRa Enclosure Kit for Raspberry Pi 3", + "product_model": "RAK7243", + "product_mpn": "ADA4283", + "product_master_category": "399", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "245.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4283", + "product_stock": "0", + "products_hts": "7616.99.5190", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2082", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2082-00.jpg", + "image_is_video": "0", + "product_name": "Timber Pibow - Enclosure for Raspberry Pi Model B+ Computers", + "product_model": "", + "product_mpn": "ADA2082", + "product_master_category": "399", + "product_manufacturer": "Pimoroni", + "product_price": "22.50", + "product_shipping_weight": "83.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2082", + "product_stock": "67", + "products_hts": "3920.51.50.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2447", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2447-00.jpg", + "image_is_video": "0", + "product_name": "SmartiPi - Building Block Compatible Case - Raspberry Pi B+ Pi2", + "product_model": "Gray", + "product_mpn": "ADA2447", + "product_master_category": "399", + "product_manufacturer": "SmartiPi", + "product_price": "11.99", + "product_shipping_weight": "104.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2447", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.79", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2084", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2084-00.jpg", + "image_is_video": "0", + "product_name": "Rainbow Pibow - Enclosure for Raspberry Pi 2 \/ Model B+\/ Pi 3", + "product_model": "", + "product_mpn": "ADA2084", + "product_master_category": "399", + "product_manufacturer": "Pimoroni", + "product_price": "17.95", + "product_shipping_weight": "111.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2084", + "product_stock": "-3", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2083", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2083-09.jpg", + "image_is_video": "0", + "product_name": "Pibow Coup\u00e9 - Enclosure for Raspberry Pi 2 \/ B+ \/ Pi 3 \/ Pi 3 B", + "product_model": "", + "product_mpn": "ADA2083", + "product_master_category": "399", + "product_manufacturer": "Pimoroni", + "product_price": "11.95", + "product_shipping_weight": "0.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2083", + "product_stock": "2", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2081", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2081-03.jpg", + "image_is_video": "0", + "product_name": "Ninja Pibow - Enclosure for Raspberry Pi Model B+ \/ Pi 2 \/ Pi 3", + "product_model": "", + "product_mpn": "ADA2081", + "product_master_category": "399", + "product_manufacturer": "Pimoroni", + "product_price": "17.95", + "product_shipping_weight": "110.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2081", + "product_stock": "-5", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2287", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2287-00.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Display-O-Tron 3000", + "product_model": "", + "product_mpn": "ADA2287", + "product_master_category": "401", + "product_manufacturer": "Pimoroni", + "product_price": "29.95", + "product_shipping_weight": "27.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2287", + "product_stock": "-3", + "products_hts": "8542.90.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3527", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3527-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit PiOLED - 128x32 Monochrome OLED Add-on for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3527", + "product_master_category": "401", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3527", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4393", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4393-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini PiTFT - 135x240 Color TFT Add-on for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4393", + "product_master_category": "401", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4393", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4484", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4484-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit Mini PiTFT 1.3\" - 240x240 TFT Add-on for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4484", + "product_master_category": "401", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4484", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2324", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2324-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit Ultimate GPS HAT for Raspberry Pi A+\/B+\/Pi 2\/3\/Pi 4", + "product_model": "Mini Kit", + "product_mpn": "ADA2324", + "product_master_category": "405", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "21.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2324", + "product_stock": "0", + "products_hts": "8526.91.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2336", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2336-00.jpg", + "image_is_video": "0", + "product_name": "Brass M2.5 Standoffs for Pi HATs - Black Plated - Pack of 2", + "product_model": "", + "product_mpn": "ADA2336", + "product_master_category": "405", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2336", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2337", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2337-02.jpg", + "image_is_video": "0", + "product_name": "Brass M2.5 Standoffs 16mm tall - Black Plated - Pack of 2", + "product_model": "", + "product_mpn": "ADA2337", + "product_master_category": "405", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2337", + "product_stock": "in stock", + "products_hts": "7318.19.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2340", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2340-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit Capacitive Touch HAT for Raspberry Pi - Mini Kit", + "product_model": "MPR121", + "product_mpn": "ADA2340", + "product_master_category": "405", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "16.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2340", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2345", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2345-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit RGB Matrix HAT + RTC for Raspberry Pi - Mini Kit", + "product_model": "", + "product_mpn": "ADA2345", + "product_master_category": "405", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "25.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2345", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2348", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2348-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit DC & Stepper Motor HAT for Raspberry Pi - Mini Kit", + "product_model": "", + "product_mpn": "ADA2348", + "product_master_category": "405", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "24.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2348", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2694", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2694-00.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Display-O-Tron HAT", + "product_model": "", + "product_mpn": "ADA2694", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "27.95", + "product_shipping_weight": "30.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2694", + "product_stock": "-10", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "25.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2695", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2695-00.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Piano HAT", + "product_model": "", + "product_mpn": "ADA2695", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "19.95", + "product_shipping_weight": "17.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2695", + "product_stock": "4", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2711", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2711-07.jpg", + "image_is_video": "0", + "product_name": "Pi-EzConnect Terminal Block Breakout HAT", + "product_model": "", + "product_mpn": "ADA2711", + "product_master_category": "405", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "83.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2711", + "product_stock": "93", + "products_hts": "8471.50.01", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2901", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2901-01.jpg", + "image_is_video": "0", + "product_name": "HiFiBerry DAC+ HAT - Standard RCA", + "product_model": "", + "product_mpn": "ADA2901", + "product_master_category": "405", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "33.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2901", + "product_stock": "0", + "products_hts": "8473.30.20", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3180", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3180-02.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Drum HAT", + "product_model": "", + "product_mpn": "ADA3180", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "16.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3180", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3182", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3182-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Mini Black HAT Hack3r - Fully Assembled", + "product_model": "", + "product_mpn": "ADA3182", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "46.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3182", + "product_stock": "39", + "products_hts": "8542.39.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3224", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3224-05.jpg", + "image_is_video": "0", + "product_name": "Bare Conductive Pi Cap", + "product_model": "", + "product_mpn": "ADA3224", + "product_master_category": "405", + "product_manufacturer": "Bare Conductive", + "product_price": "39.95", + "product_shipping_weight": "36.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3224", + "product_stock": "-3", + "products_hts": "8534009000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3289", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3289-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Automation HAT for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3289", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "29.95", + "product_shipping_weight": "35.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3289", + "product_stock": "12", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3352", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3352-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Automation pHAT for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3352", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "12.95", + "product_shipping_weight": "21.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3352", + "product_stock": "-10", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3353", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3353-04.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Pan-Tilt HAT for Raspberry Pi", + "product_model": "without pan-tilt module", + "product_mpn": "ADA3353", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "27.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3353", + "product_stock": "9", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3402", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3402-10.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Picade X HAT USB-C for Raspberry Pi", + "product_model": "PIM462", + "product_mpn": "ADA3402", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "19.95", + "product_shipping_weight": "30.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3402", + "product_stock": "31", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3420", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3420-01.jpg", + "image_is_video": "0", + "product_name": "PaPiRus 2.7\" eInk Display HAT for Raspberry Pi from Pi Supply", + "product_model": "", + "product_mpn": "ADA3420", + "product_master_category": "405", + "product_manufacturer": "Pi Supply", + "product_price": "49.95", + "product_shipping_weight": "67.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3420", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3577", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3577-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Pico HAT Hacker", + "product_model": "", + "product_mpn": "ADA3577", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "2.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3577", + "product_stock": "0", + "products_hts": "8542.39.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3742", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3742-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni pHAT Stack for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3742", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "16.95", + "product_shipping_weight": "100.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3742", + "product_stock": "12", + "products_hts": "8542.39.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3935", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3935-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni GFX HAT - 128x64 LCD Display", + "product_model": "RGB Backlight and 6 Touch Button", + "product_mpn": "ADA3935", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "24.95", + "product_shipping_weight": "43.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3935", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3953", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3953-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi PoE Hat", + "product_model": "", + "product_mpn": "ADA3953", + "product_master_category": "405", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "20.00", + "product_shipping_weight": "42.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3953", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4280", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4280-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit DC & Stepper Motor Bonnet for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4280", + "product_master_category": "405", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4280", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4672", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4672-04.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Automation HAT Mini", + "product_model": "PIM487", + "product_mpn": "ADA4672", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "21.95", + "product_shipping_weight": "22.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4672", + "product_stock": "35", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4673", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4673-05.jpg", + "image_is_video": "0", + "product_name": "Pimoroni HAT Hacker HAT", + "product_model": "PIM511", + "product_mpn": "ADA4673", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "11.95", + "product_shipping_weight": "28.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4673", + "product_stock": "46", + "products_hts": "8542.39.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4688", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4688-00.jpg", + "image_is_video": "0", + "product_name": "SparkFun Qwiic \/ STEMMA QT HAT for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4688", + "product_master_category": "405", + "product_manufacturer": "Sparkfun Electronics", + "product_price": "7.50", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4688", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5058", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5058-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi PoE+ HAT", + "product_model": "", + "product_mpn": "ADA5058", + "product_master_category": "405", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "0.00", + "product_shipping_weight": "42.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5058", + "product_stock": "-3", + "products_hts": "8473.30.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2426", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2426-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Explorer HAT for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2426", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "12.95", + "product_shipping_weight": "32.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2426", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2427", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2427-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Explorer HAT Pro for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2427", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "24.95", + "product_shipping_weight": "34.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2427", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2339", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2339-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Black HAT Hack3r Kit", + "product_model": "", + "product_mpn": "ADA2339", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "12.95", + "product_shipping_weight": "56.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2339", + "product_stock": "-3", + "products_hts": "8542.39.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2325", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2325-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Skywriter HAT - 3D Gesture Sensor for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2325", + "product_master_category": "405", + "product_manufacturer": "Pimoroni", + "product_price": "20.95", + "product_shipping_weight": "17.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2325", + "product_stock": "7", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "20.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "18.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "16.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2314", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2314-09.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto HAT for Pi Mini Kit - With EEPROM", + "product_model": "", + "product_mpn": "ADA2314", + "product_master_category": "405", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "14.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2314", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2310", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2310-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto HAT for Pi Mini Kit - No EEPROM", + "product_model": "", + "product_mpn": "ADA2310", + "product_master_category": "405", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "14.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2310", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1488", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1488-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni PiGlow", + "product_model": "", + "product_mpn": "ADA1488", + "product_master_category": "406", + "product_manufacturer": "Pimoroni", + "product_price": "11.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1488", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1940", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1940-00.jpg", + "image_is_video": "0", + "product_name": "RasPi Robot Board v3 by MonkMakes", + "product_model": "", + "product_mpn": "ADA1940", + "product_master_category": "406", + "product_manufacturer": "SeeedStudio", + "product_price": "29.95", + "product_shipping_weight": "22.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1940", + "product_stock": "0", + "products_hts": "8525.40.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2453", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2453-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit DPI TFT Kippah for Raspberry Pi with Touch Support", + "product_model": "", + "product_mpn": "ADA2453", + "product_master_category": "406", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "18.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2453", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2454", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2454-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit DPI TFT Kippah for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2454", + "product_master_category": "406", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "17.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2454", + "product_stock": "44", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1687", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1687-01.jpg", + "image_is_video": "0", + "product_name": "RTK Motor Controller Board Kit for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1687", + "product_master_category": "406", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1687", + "product_stock": "-3", + "products_hts": "8525.40.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1761", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1761-05.jpg", + "image_is_video": "0", + "product_name": "Cirrus Logic Audio Card", + "product_model": "", + "product_mpn": "ADA1761", + "product_master_category": "406", + "product_manufacturer": "Wolfson", + "product_price": "49.95", + "product_shipping_weight": "45.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1761", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2262", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2262-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit GPIO Reference Card for Raspberry Pi Model B", + "product_model": "", + "product_mpn": "ADA2262", + "product_master_category": "407", + "product_manufacturer": "Adafruit", + "product_price": "1.95", + "product_shipping_weight": "1.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2262", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1772", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1772-00.jpg", + "image_is_video": "0", + "product_name": "The Raspberry Leaf (Three Pack)", + "product_model": "", + "product_mpn": "ADA1772", + "product_master_category": "407", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1772", + "product_stock": "-3", + "products_hts": "3703.90.6000", + "products_coo": null, + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1658", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1658-00.jpg", + "image_is_video": "0", + "product_name": "GPIO Header for Raspberry Pi - Extra tall 2x13 Female Header", + "product_model": "", + "product_mpn": "ADA1658", + "product_master_category": "407", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1658", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "942", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/942-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Dish for Raspberry Pi - Includes Breadboard", + "product_model": "", + "product_mpn": "ADA942", + "product_master_category": "407", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "179.0", + "product_url": "https:\/\/www.adafruit.com\/product\/942", + "product_stock": "19", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1105", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1105-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Unassembled T-Cobbler Breakout Kit for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1105", + "product_master_category": "407", + "product_manufacturer": "Adafruit", + "product_price": "6.50", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1105", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "801", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/801-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit Prototyping Pi Plate Kit for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA801", + "product_master_category": "407", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "34.5", + "product_url": "https:\/\/www.adafruit.com\/product\/801", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "914", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/914-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Assembled Pi Cobbler Breakout + Cable for Raspberry Pi", + "product_model": "Model B", + "product_mpn": "ADA914", + "product_master_category": "407", + "product_manufacturer": "Adafruit", + "product_price": "6.50", + "product_shipping_weight": "25.8", + "product_url": "https:\/\/www.adafruit.com\/product\/914", + "product_stock": "-10", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1989", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1989-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi T-Cobbler Plus Kit Breakout for 2x20 Raspberry Pi", + "product_model": "A+, B+, Pi 2, Pi 3, Pi 4, Zero", + "product_mpn": "ADA1989", + "product_master_category": "408", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "36.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1989", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1993", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1993-01.jpg", + "image_is_video": "0", + "product_name": "2x20 pin IDC Box Header - Raspberry Pi A+\/B+\/Pi 2\/Pi 3\/Pi 4", + "product_model": "", + "product_mpn": "ADA1993", + "product_master_category": "408", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1993", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2028", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2028-05.jpg", + "image_is_video": "0", + "product_name": "Assembled Pi T-Cobbler Plus - GPIO Breakout", + "product_model": "Pi A+, B+, Pi 2\/3\/4, Zero", + "product_mpn": "ADA2028", + "product_master_category": "408", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "36.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2028", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2029", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2029-00.jpg", + "image_is_video": "0", + "product_name": "Assembled Pi Cobbler Plus - Breakout Cable", + "product_model": "for Pi B+\/A+\/Pi 2\/Pi 3\/Pi 4", + "product_mpn": "ADA2029", + "product_master_category": "408", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "36.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2029", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2263", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2263-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit GPIO Reference Card for Raspberry Pi Model B+\/Pi 2\/Pi 3", + "product_model": "", + "product_mpn": "ADA2263", + "product_master_category": "408", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2263", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1990", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1990-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Cobbler + Kit- Breakout Cable for Pi B+\/A+\/Pi 2\/Pi 3", + "product_model": "", + "product_mpn": "ADA1990", + "product_master_category": "408", + "product_manufacturer": "Adafruit", + "product_price": "6.50", + "product_shipping_weight": "26.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1990", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1171", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1171-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Small-Size Perma-Proto Raspberry Pi Breadboard PCB Kit", + "product_model": "", + "product_mpn": "ADA1171", + "product_master_category": "408", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "10.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1171", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1848", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1848-01.jpg", + "image_is_video": "0", + "product_name": "Flashlight for Glass - Voice-Controlled Flashlight", + "product_model": "", + "product_mpn": "ADA1848", + "product_master_category": "416", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1848", + "product_stock": "-3", + "products_hts": "9029.20.40", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2566", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2566-05.jpg", + "image_is_video": "0", + "product_name": "Flora Sewable 3-Pin JST Wiring Adapter", + "product_model": "", + "product_mpn": "ADA2566", + "product_master_category": "417", + "product_manufacturer": "Adafruit", + "product_price": "1.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2566", + "product_stock": "2", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1090", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1090-01.jpg", + "image_is_video": "0", + "product_name": "FLORA GPS Starter Pack", + "product_model": "", + "product_mpn": "ADA1090", + "product_master_category": "422", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "278.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1090", + "product_stock": "22", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1405", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1405-02.jpg", + "image_is_video": "0", + "product_name": "FLORA Budget Pack", + "product_model": "", + "product_mpn": "ADA1405", + "product_master_category": "422", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "181.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1405", + "product_stock": "36", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1458", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1458-01.jpg", + "image_is_video": "0", + "product_name": "FLORA Sensor Pack", + "product_model": "", + "product_mpn": "ADA1458", + "product_master_category": "422", + "product_manufacturer": "Adafruit", + "product_price": "64.95", + "product_shipping_weight": "127.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1458", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1759", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1759-00.jpg", + "image_is_video": "0", + "product_name": "GEMMA Talking Toy Guts Sound Pack", + "product_model": "", + "product_mpn": "ADA1759", + "product_master_category": "422", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "27.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1759", + "product_stock": "12", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2404", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2404-01.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Adafruit FLORA Book Pack", + "product_model": "", + "product_mpn": "ADA2404", + "product_master_category": "422", + "product_manufacturer": "Adafruit", + "product_price": "94.95", + "product_shipping_weight": "414.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2404", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "94.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "94.95", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "94.95", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "603", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/603-01.jpg", + "image_is_video": "0", + "product_name": "Stainless Thin Conductive Yarn \/ Thick Conductive Thread - 30 ft", + "product_model": "", + "product_mpn": "ADA603", + "product_master_category": "424", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/603", + "product_stock": "0", + "products_hts": "7326.90.8588", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "640", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/640-05.jpg", + "image_is_video": "0", + "product_name": "Stainless Thin Conductive Thread - 2 ply - 23 meter\/76 ft", + "product_model": "", + "product_mpn": "ADA640", + "product_master_category": "424", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/640", + "product_stock": "in stock", + "products_hts": "7326.90.8588", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "641", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/641-05.jpg", + "image_is_video": "0", + "product_name": "Stainless Medium Conductive Thread - 3 ply - 18 meter\/60 ft", + "product_model": "", + "product_mpn": "ADA641", + "product_master_category": "424", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/641", + "product_stock": "in stock", + "products_hts": "7326.90.8588", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "615", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/615-03.jpg", + "image_is_video": "0", + "product_name": "Needle set - 3\/9 sizes - 20 needles", + "product_model": "", + "product_mpn": "ADA615", + "product_master_category": "424", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/615", + "product_stock": "in stock", + "products_hts": "7319.90.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1170", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1170-04.jpg", + "image_is_video": "0", + "product_name": "Magnetic Pin Back", + "product_model": "", + "product_mpn": "ADA1170", + "product_master_category": "424", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "10.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1170", + "product_stock": "in stock", + "products_hts": "8505.11.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1126", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1126-06.jpg", + "image_is_video": "0", + "product_name": "Sewable Snaps - 5mm Diameter - Card of 24", + "product_model": "", + "product_mpn": "ADA1126", + "product_master_category": "424", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1126", + "product_stock": "in stock", + "products_hts": "9606.10.4000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1849", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1849-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Gemma Sensor Starter Pack", + "product_model": "", + "product_mpn": "ADA1849", + "product_master_category": "425", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "135.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1849", + "product_stock": "98", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1850", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1850-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit Gemma Sequin Starter Pack", + "product_model": "", + "product_mpn": "ADA1850", + "product_master_category": "425", + "product_manufacturer": "Adafruit", + "product_price": "17.95", + "product_shipping_weight": "24.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1850", + "product_stock": "-1", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1285", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1285-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit Beginner LED Sewing Kit", + "product_model": "", + "product_mpn": "ADA1285", + "product_master_category": "429", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "45.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1285", + "product_stock": "14", + "products_hts": "7326.90.8588", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2221", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2221-05.jpg", + "image_is_video": "1", + "product_name": "Trinket M0 Powered NeoPixel Goggle Kit Pack", + "product_model": "", + "product_mpn": "ADA2221", + "product_master_category": "429", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "200.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2221", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3590", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3590-04.jpg", + "image_is_video": "0", + "product_name": "Day of the Geek Soldering Badge", + "product_model": "", + "product_mpn": "ADA3590", + "product_master_category": "429", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3590", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "1594", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1594-04.jpg", + "image_is_video": "1", + "product_name": "myDazzu - Programmable Wearable Electronic Wristband", + "product_model": "", + "product_mpn": "ADA1594", + "product_master_category": "429", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "95.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1594", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1574", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1574-00.jpg", + "image_is_video": "0", + "product_name": "The LED Artist A12 - RGB LED Wearable", + "product_model": "", + "product_mpn": "ADA1574", + "product_master_category": "431", + "product_manufacturer": "The LED Artist", + "product_price": "44.95", + "product_shipping_weight": "22.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1574", + "product_stock": "8", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1575", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1575-00.jpg", + "image_is_video": "0", + "product_name": "The LED Artist R48 - White LED Wearable", + "product_model": "", + "product_mpn": "ADA1575", + "product_master_category": "431", + "product_manufacturer": "The LED Artist", + "product_price": "44.95", + "product_shipping_weight": "22.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1575", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1474", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1474-00.jpg", + "image_is_video": "0", + "product_name": "Circuit Patterns Trading Cards from Arachnid Labs", + "product_model": "", + "product_mpn": "ADA1474", + "product_master_category": "443", + "product_manufacturer": "Arachnid Labs", + "product_price": "16.95", + "product_shipping_weight": "64.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1474", + "product_stock": "in stock", + "products_hts": "9504.40.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "394", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/394-06.jpg", + "image_is_video": "0", + "product_name": "Pogo Pins \"Spear Head\" (10 pack)", + "product_model": "P75-LM3", + "product_mpn": "ADA394", + "product_master_category": "458", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/394", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2428", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2428-01.jpg", + "image_is_video": "0", + "product_name": "Pogo Pins \"Cupped Head\" (10 pack)", + "product_model": "P75-A2", + "product_mpn": "ADA2428", + "product_master_category": "458", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2428", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2429", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2429-00.jpg", + "image_is_video": "0", + "product_name": "Pogo Pins \"Crown Head\" (10 pack)", + "product_model": "P75-H2", + "product_mpn": "ADA2429", + "product_master_category": "458", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "1.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2429", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2430", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2430-00.jpg", + "image_is_video": "0", + "product_name": "Pogo Pins \"Needle Head\" (10 pack)", + "product_model": "P75-B1", + "product_mpn": "ADA2430", + "product_master_category": "458", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2430", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "437", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/437-10.jpg", + "image_is_video": "0", + "product_name": "Sugru - Black and White Pack", + "product_model": "", + "product_mpn": "ADA437", + "product_master_category": "459", + "product_manufacturer": null, + "product_price": "17.95", + "product_shipping_weight": "61.1", + "product_url": "https:\/\/www.adafruit.com\/product\/437", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2504", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2504-04.jpg", + "image_is_video": "0", + "product_name": "Hand-Moldable Plastic - Low Temperature Thermoplastic", + "product_model": "100g Bag", + "product_mpn": "ADA2504", + "product_master_category": "459", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "103.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2504", + "product_stock": "in stock", + "products_hts": "3910.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "436", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/436-00.jpg", + "image_is_video": "0", + "product_name": "Sugru - multicolor pack", + "product_model": "", + "product_mpn": "ADA436", + "product_master_category": "459", + "product_manufacturer": null, + "product_price": "21.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/436", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "601", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/601-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit AVR ATmegaXX8 Pinout Sticker - 10 pcs", + "product_model": "", + "product_mpn": "ADA601", + "product_master_category": "460", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/601", + "product_stock": "72", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1074", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1074-08.jpg", + "image_is_video": "0", + "product_name": "Configurable Spring Terminal Blocks - 3 Pin 0.1\" Pitch R\/A - x 5", + "product_model": "", + "product_mpn": "ADA1074", + "product_master_category": "461", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1074", + "product_stock": "46", + "products_hts": "8544.42.9090", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1081", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1081-07.jpg", + "image_is_video": "0", + "product_name": "Configurable Spring Terminal Blocks - 3 Pin 0.1\" Pitch x 5", + "product_model": "", + "product_mpn": "ADA1081", + "product_master_category": "461", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "9.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1081", + "product_stock": "14", + "products_hts": "8544.42.9090", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3173", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3173-02.jpg", + "image_is_video": "0", + "product_name": "Terminal Block kit for Feather - 0.1\" Pitch", + "product_model": "", + "product_mpn": "ADA3173", + "product_master_category": "461", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "7.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3173", + "product_stock": "52", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "64", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/64-00.jpg", + "image_is_video": "0", + "product_name": "Half-size breadboard", + "product_model": "", + "product_mpn": "ADA64", + "product_master_category": "462", + "product_manufacturer": null, + "product_price": "5.00", + "product_shipping_weight": "43.5", + "product_url": "https:\/\/www.adafruit.com\/product\/64", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "65", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/65-00.jpg", + "image_is_video": "0", + "product_name": "Tiny breadboard", + "product_model": "", + "product_mpn": "ADA65", + "product_master_category": "462", + "product_manufacturer": null, + "product_price": "4.00", + "product_shipping_weight": "15.3", + "product_url": "https:\/\/www.adafruit.com\/product\/65", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "239", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/239-05.jpg", + "image_is_video": "0", + "product_name": "Full sized breadboard", + "product_model": "", + "product_mpn": "ADA239", + "product_master_category": "462", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "81.0", + "product_url": "https:\/\/www.adafruit.com\/product\/239", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "443", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/443-00.jpg", + "image_is_video": "0", + "product_name": "Large Solderless Breadboard", + "product_model": "", + "product_mpn": "ADA443", + "product_master_category": "462", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "576.0", + "product_url": "https:\/\/www.adafruit.com\/product\/443", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2017", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2017-05.jpg", + "image_is_video": "0", + "product_name": "Mini Solderless Breadboard - 2x4 Points", + "product_model": "", + "product_mpn": "ADA2017", + "product_master_category": "462", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2017", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2018", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2018-04.jpg", + "image_is_video": "0", + "product_name": "Mini Solderless Breadboard - 2x8 Points", + "product_model": "", + "product_mpn": "ADA2018", + "product_master_category": "462", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2018", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2463", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2463-00.jpg", + "image_is_video": "0", + "product_name": "Mini Solderless Breadboard - 4x4 Points", + "product_model": "", + "product_mpn": "ADA2463", + "product_master_category": "462", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2463", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4539", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4539-02.jpg", + "image_is_video": "0", + "product_name": "Half-Size Breadboard with Mounting Holes", + "product_model": "", + "product_mpn": "ADA4539", + "product_master_category": "462", + "product_manufacturer": null, + "product_price": "5.00", + "product_shipping_weight": "37.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4539", + "product_stock": "in stock", + "products_hts": "8537.10.9170", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1518", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1518-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Flex Perma-Proto - Half-sized Breadboard Flex-PCB", + "product_model": "", + "product_mpn": "ADA1518", + "product_master_category": "463", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1518", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3904", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3904-04.jpg", + "image_is_video": "0", + "product_name": "Flexible Protoboard - 20cm x 30cm", + "product_model": "", + "product_mpn": "ADA3904", + "product_master_category": "463", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "144.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3904", + "product_stock": "49", + "products_hts": "8534.00.0080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2670", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2670-00.jpg", + "image_is_video": "0", + "product_name": "Bakelite Universal Perfboard Plates - Pack of 10", + "product_model": "", + "product_mpn": "ADA2670", + "product_master_category": "464", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "86.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2670", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "571", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/571-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Half-sized Breadboard PCB - 3 Pack!", + "product_model": "", + "product_mpn": "ADA571", + "product_master_category": "465", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "37.5", + "product_url": "https:\/\/www.adafruit.com\/product\/571", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "589", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/589-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Quarter-sized Breadboard PCB - 3 Pack!", + "product_model": "", + "product_mpn": "ADA589", + "product_master_category": "465", + "product_manufacturer": "Adafruit", + "product_price": "8.50", + "product_shipping_weight": "19.8", + "product_url": "https:\/\/www.adafruit.com\/product\/589", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "590", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/590-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Full-sized Breadboard PCB - 3 Pack!", + "product_model": "", + "product_mpn": "ADA590", + "product_master_category": "465", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "72.4", + "product_url": "https:\/\/www.adafruit.com\/product\/590", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "591", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/591-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Super Pack!", + "product_model": "", + "product_mpn": "ADA591", + "product_master_category": "465", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "129.7", + "product_url": "https:\/\/www.adafruit.com\/product\/591", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1135", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1135-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Raspberry Pi Breadboard PCB Kit", + "product_model": "", + "product_mpn": "ADA1135", + "product_master_category": "465", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1135", + "product_stock": "-3", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1214", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1214-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Small Mint Tin Size Breadboard PCB - 3 pack", + "product_model": "", + "product_mpn": "ADA1214", + "product_master_category": "465", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1214", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4354", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4354-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto 40-Pin Raspberry Pi Breadboard PCB Kit", + "product_model": "with 2x20 Header", + "product_mpn": "ADA4354", + "product_master_category": "465", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4354", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4783", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4783-00.jpg", + "image_is_video": "0", + "product_name": "Universal Proto-board PCBs 2cm x 8cm - 3 Pack", + "product_model": "", + "product_mpn": "ADA4783", + "product_master_category": "465", + "product_manufacturer": null, + "product_price": "2.25", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4783", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4858", + "discount_pricing": [ + { + "discounted_price": "2.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.03", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4784", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4784-00.jpg", + "image_is_video": "0", + "product_name": "Universal Proto-board PCBs 3cm x 7cm - 3 Pack", + "product_model": "", + "product_mpn": "ADA4784", + "product_master_category": "465", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "19.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4784", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4858", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4785", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4785-00.jpg", + "image_is_video": "0", + "product_name": "Universal Proto-board PCBs 4cm x 6cm - 3 Pack", + "product_model": "", + "product_mpn": "ADA4785", + "product_master_category": "465", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "20.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4785", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4858", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4786", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4786-00.jpg", + "image_is_video": "0", + "product_name": "Universal Proto-Board PCBs 5cm x 7cm - 3 Pack", + "product_model": "", + "product_mpn": "ADA4786", + "product_master_category": "465", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "32.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4786", + "product_stock": "-3", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4858", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "723", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/723-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Mint Tin Size Breadboard PCB", + "product_model": "", + "product_mpn": "ADA723", + "product_master_category": "466", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "17.3", + "product_url": "https:\/\/www.adafruit.com\/product\/723", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1148", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1148-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Half-size Perma-Proto Raspberry Pi Breadboard PCB Kit", + "product_model": "", + "product_mpn": "ADA1148", + "product_master_category": "466", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "15.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1148", + "product_stock": "-3", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1606", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1606-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Full-sized Breadboard PCB - Single", + "product_model": "", + "product_mpn": "ADA1606", + "product_master_category": "466", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "25.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1606", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1608", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1608-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Quarter-sized Breadboard PCB - Single", + "product_model": "", + "product_mpn": "ADA1608", + "product_master_category": "466", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1608", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1609", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1609-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto Half-sized Breadboard PCB - Single", + "product_model": "", + "product_mpn": "ADA1609", + "product_master_category": "466", + "product_manufacturer": "Adafruit", + "product_price": "4.50", + "product_shipping_weight": "13.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1609", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4353", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4353-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma-Proto 40-Pin Raspberry Pi Half-Size PCB Kit", + "product_model": "with 2x20 Header", + "product_mpn": "ADA4353", + "product_master_category": "466", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "18.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4353", + "product_stock": "0", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "266", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/266-04.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Female Jumper Wires - 40 x 6\"", + "product_model": "", + "product_mpn": "ADA266", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "30.9", + "product_url": "https:\/\/www.adafruit.com\/product\/266", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "793", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/793-05.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Female Jumper Wires - 40 x 12\" (300mm)", + "product_model": "", + "product_mpn": "ADA793", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "50.5", + "product_url": "https:\/\/www.adafruit.com\/product\/793", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "794", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/794-04.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Female Jumper Wires - 40 x 3\" (75mm)", + "product_model": "", + "product_mpn": "ADA794", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "22.1", + "product_url": "https:\/\/www.adafruit.com\/product\/794", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1919", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1919-02.jpg", + "image_is_video": "0", + "product_name": "Female-Female 2.54 to 2.0mm Jumper Wires x 40", + "product_model": "", + "product_mpn": "ADA1919", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "29.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1919", + "product_stock": "26", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1949", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1949-02.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Female Jumper Wires - 20 x 12\" (300mm)", + "product_model": "", + "product_mpn": "ADA1949", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1949", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1950", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1950-02.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Female Jumper Wires - 20 x 6\" (150mm)", + "product_model": "", + "product_mpn": "ADA1950", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "17.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1950", + "product_stock": "43", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3141", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3141-00.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Female Raw Custom Jumper Wires - 40 x 6\" (150mm)", + "product_model": "", + "product_mpn": "ADA3141", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "30.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3141", + "product_stock": "45", + "products_hts": "8544.42.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4447", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4447-01.jpg", + "image_is_video": "0", + "product_name": "Premium Silicone Covered Female-Female Jumper Wires - 200mm x 40", + "product_model": "", + "product_mpn": "ADA4447", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4447", + "product_stock": "6", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4934", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4934-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 2-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4934", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4934", + "product_stock": "0", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4935", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4935-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 3-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4935", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4935", + "product_stock": "28", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4936", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4936-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 4-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4936", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4936", + "product_stock": "36", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4937", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4937-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 5-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4937", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4937", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4938", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4938-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm Pitch 7-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4938", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4938", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4939", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4939-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 8-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4939", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4939", + "product_stock": "14", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4940", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4940-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 9-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4940", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4940", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4941", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4941-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 10-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4941", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4941", + "product_stock": "0", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4942", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4942-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 12-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4942", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "11.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4942", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4943", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4943-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 14-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4943", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "12.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4943", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4944", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4944-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 16-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4944", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "14.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4944", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4945", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4945-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 18-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4945", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "15.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4945", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4946", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4946-01.jpg", + "image_is_video": "0", + "product_name": "2.54mm 0.1\" Pitch 20-pin Jumper Cable - 20cm long", + "product_model": "", + "product_mpn": "ADA4946", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "17.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4946", + "product_stock": "75", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5070", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1951", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1951-01.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Female Jumper Wires - 20 x 3\" (75mm)", + "product_model": "", + "product_mpn": "ADA1951", + "product_master_category": "468", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "11.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1951", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "824", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/824-05.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Male 'Extension' Jumper Wires - 40 x 12\" (300mm)", + "product_model": "", + "product_mpn": "ADA824", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "50.5", + "product_url": "https:\/\/www.adafruit.com\/product\/824", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "825", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/825-04.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Male 'Extension' Jumper Wires - 40 x 3\" (75mm)", + "product_model": "", + "product_mpn": "ADA825", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/825", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "826", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/826-04.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Male 'Extension' Jumper Wires - 40 x 6\" (150mm)", + "product_model": "", + "product_mpn": "ADA826", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "35.2", + "product_url": "https:\/\/www.adafruit.com\/product\/826", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1952", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1952-03.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Male 'Extension' Jumper Wires - 20 x 12\"", + "product_model": "", + "product_mpn": "ADA1952", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "26.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1952", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1953", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1953-02.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Male 'Extension' Jumper Wires - 20 x 3\"", + "product_model": "", + "product_mpn": "ADA1953", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "12.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1953", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1954", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1954-02.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Male 'Extension' Jumper Wires - 20 x 6\"", + "product_model": "", + "product_mpn": "ADA1954", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "18.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1954", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3633", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3633-02.jpg", + "image_is_video": "0", + "product_name": "Premium Male\/Female Raw Jumper Wires - 40 x 6\"", + "product_model": "", + "product_mpn": "ADA3633", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "30.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3633", + "product_stock": "in stock", + "products_hts": "8544.42.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4635", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4635-02.jpg", + "image_is_video": "0", + "product_name": "Premium Silicone Covered Extension Jumper Wires - 200mm x 40", + "product_model": "", + "product_mpn": "ADA4635", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "53.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4635", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5018", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5018-02.jpg", + "image_is_video": "0", + "product_name": "Premium Female\/Male 'Extension' Jumper Wires - 10 x 12\" (300mm)", + "product_model": "", + "product_mpn": "ADA5018", + "product_master_category": "469", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "12.5", + "product_url": "https:\/\/www.adafruit.com\/product\/5018", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "758", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/758-04.jpg", + "image_is_video": "0", + "product_name": "Premium Male\/Male Jumper Wires - 40 x 6\" (150mm)", + "product_model": "", + "product_mpn": "ADA758", + "product_master_category": "471", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "33.4", + "product_url": "https:\/\/www.adafruit.com\/product\/758", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "759", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/759-04.jpg", + "image_is_video": "0", + "product_name": "Premium Male\/Male Jumper Wires - 40 x 3\" (75mm)", + "product_model": "", + "product_mpn": "ADA759", + "product_master_category": "471", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "23.5", + "product_url": "https:\/\/www.adafruit.com\/product\/759", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "760", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/760-05.jpg", + "image_is_video": "0", + "product_name": "Premium Male\/Male Jumper Wires - 40 x 12\" (300mm)", + "product_model": "", + "product_mpn": "ADA760", + "product_master_category": "471", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "51.8", + "product_url": "https:\/\/www.adafruit.com\/product\/760", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1955", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1955-02.jpg", + "image_is_video": "0", + "product_name": "Premium Male\/Male Jumper Wires - 20 x 12\" (300mm)", + "product_model": "", + "product_mpn": "ADA1955", + "product_master_category": "471", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1955", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1956", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1956-02.jpg", + "image_is_video": "0", + "product_name": "Premium Male\/Male Jumper Wires - 20 x 3\" (75mm)", + "product_model": "", + "product_mpn": "ADA1956", + "product_master_category": "471", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1956", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1957", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1957-02.jpg", + "image_is_video": "0", + "product_name": "Premium Male\/Male Jumper Wires - 20 x 6\" (150mm)", + "product_model": "", + "product_mpn": "ADA1957", + "product_master_category": "471", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "19.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1957", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3142", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3142-05.jpg", + "image_is_video": "0", + "product_name": "Premium Male\/Male Raw Jumper Wires - 40 x 6\" (150mm)", + "product_model": "", + "product_mpn": "ADA3142", + "product_master_category": "471", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "32.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3142", + "product_stock": "in stock", + "products_hts": "8544.42.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4482", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4482-01.jpg", + "image_is_video": "0", + "product_name": "Premium Silicone Covered Male-Male Jumper Wires - 200mm x 40", + "product_model": "", + "product_mpn": "ADA4482", + "product_master_category": "471", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "55.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4482", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1877", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1877-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 26AWG Red", + "product_model": "", + "product_mpn": "ADA1877", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1877", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.81", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1878", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1878-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 26AWG Blue", + "product_model": "", + "product_mpn": "ADA1878", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1878", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.81", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1879", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1879-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 26AWG Yellow", + "product_model": "", + "product_mpn": "ADA1879", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1879", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.81", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1880", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1880-00.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 26AWG Green", + "product_model": "", + "product_mpn": "ADA1880", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "7.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1880", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.81", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1881", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1881-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 26AWG Black", + "product_model": "", + "product_mpn": "ADA1881", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1881", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.81", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1882", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1882-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 26AWG White", + "product_model": "", + "product_mpn": "ADA1882", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1882", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.81", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1883", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1883-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 26AWG Orange", + "product_model": "", + "product_mpn": "ADA1883", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1883", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.81", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "1884", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1884-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 26AWG Gray", + "product_model": "", + "product_mpn": "ADA1884", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1884", + "product_stock": "21", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.81", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2513", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2513-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 25ft 26AWG - Red", + "product_model": "", + "product_mpn": "ADA2513", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2513", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2514", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2514-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 25ft 26AWG - Blue", + "product_model": "", + "product_mpn": "ADA2514", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2514", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2515", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2515-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 25ft 26AWG - Yellow", + "product_model": "", + "product_mpn": "ADA2515", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2515", + "product_stock": "19", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2516", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2516-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 25ft 26AWG - Green", + "product_model": "", + "product_mpn": "ADA2516", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2516", + "product_stock": "23", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2517", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2517-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 25ft 26AWG - Black", + "product_model": "", + "product_mpn": "ADA2517", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2517", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2518", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2518-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 25ft 26AWG - White", + "product_model": "", + "product_mpn": "ADA2518", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2518", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2519", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2519-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 25ft 26AWG - Gray", + "product_model": "", + "product_mpn": "ADA2519", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2519", + "product_stock": "42", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2520", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2520-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 25ft 26AWG - Orange", + "product_model": "", + "product_mpn": "ADA2520", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2520", + "product_stock": "27", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1970", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "4.21", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "3892", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3892-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Ribbon Cable - 4 Wires 1 Meter Long", + "product_model": "26AWG Black", + "product_mpn": "ADA3892", + "product_master_category": "472", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3892", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3927", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2001", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2001-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 30AWG Red", + "product_model": "", + "product_mpn": "ADA2001", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2001", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.64", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2002", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2002-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 30AWG Blue", + "product_model": "", + "product_mpn": "ADA2002", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2002", + "product_stock": "19", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.64", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2003", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2003-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 30AWG Black", + "product_model": "", + "product_mpn": "ADA2003", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2003", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.64", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2004", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2004-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 30AWG Yellow", + "product_model": "", + "product_mpn": "ADA2004", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2004", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.64", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2005", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2005-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 30AWG Green", + "product_model": "", + "product_mpn": "ADA2005", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2005", + "product_stock": "95", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.64", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "2006", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2006-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 2m 30AWG White", + "product_model": "", + "product_mpn": "ADA2006", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2006", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-24", + "min_qty": 10 + }, + { + "discounted_price": "0.64", + "discounted_percent": "15", + "show_qty": "25-49", + "min_qty": 25 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "3164", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3164-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 50ft 30AWG Black", + "product_model": "", + "product_mpn": "ADA3164", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "22.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3164", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3165", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3165-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 50ft 30AWG Red", + "product_model": "", + "product_mpn": "ADA3165", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3165", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3166", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3166-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 50ft 30AWG Blue", + "product_model": "", + "product_mpn": "ADA3166", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3166", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3167", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3167-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 50ft 30AWG Yellow", + "product_model": "", + "product_mpn": "ADA3167", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "23.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3167", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3168", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3168-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 50ft 30AWG Green", + "product_model": "", + "product_mpn": "ADA3168", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "23.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3168", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3169", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3169-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Wire - 50ft 30AWG White", + "product_model": "", + "product_mpn": "ADA3169", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3169", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2051", + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3889", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3889-01.jpg", + "image_is_video": "0", + "product_name": "Silicone Cover Stranded-Core Ribbon Cable - 4 Wires 1 Meter Long", + "product_model": "30 AWG Black", + "product_mpn": "ADA3889", + "product_master_category": "473", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3889", + "product_stock": "65", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3927", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1162", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1162-03.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for 44-QFN or 44-TQFP - 3 Pack!", + "product_model": "", + "product_mpn": "ADA1162", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "17.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1162", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1163", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1163-04.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for 32-QFN or 32-TQFP - 3 Pack!", + "product_model": "", + "product_mpn": "ADA1163", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "14.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1163", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1206", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1206-00.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for SOIC-20 or TSSOP-20 - 3 Pack!", + "product_model": "", + "product_mpn": "ADA1206", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "4.50", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1206", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1207", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1207-03.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for SOIC-16 or TSSOP-16 - 3 Pack!", + "product_model": "", + "product_mpn": "ADA1207", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "8.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1207", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1208", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1208-03.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for SOIC-28 or TSSOP-28 - 3 Pack!", + "product_model": "", + "product_mpn": "ADA1208", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "10.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1208", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1210", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1210-03.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for SOIC-14 or TSSOP-14 - 6 Pack!", + "product_model": "", + "product_mpn": "ADA1210", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "11.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1210", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1211", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1211-00.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for SOIC-12 or TSSOP-12 - 6 Pack!", + "product_model": "", + "product_mpn": "ADA1211", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "11.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1211", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1212", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1212-06.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for SOIC-8, MSOP-8 or TSSOP-8 - 6 Pack!", + "product_model": "", + "product_mpn": "ADA1212", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1212", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1230", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1230-03.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB Set For SOT-23, SOT-89, SOT-223 and TO252", + "product_model": "", + "product_mpn": "ADA1230", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "10.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1230", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1325", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1325-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit FPC Stick - 20 Pin 0.5mm\/1.0mm Pitch Adapter", + "product_model": "", + "product_mpn": "ADA1325", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "1.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1325", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1377", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1377-04.jpg", + "image_is_video": "0", + "product_name": "SMT Breakout PCB for 48-QFN or 48-TQFP - 3 Pack!", + "product_model": "", + "product_mpn": "ADA1377", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "19.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1377", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1436", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1436-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Multi-pitch FPC Adapter - 40 Pin 0.5\/0.6\/0.7\/0.8\/1.0mm", + "product_model": "", + "product_mpn": "ADA1436", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "11.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1436", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1492", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1492-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 50 pin 0.5mm pitch FPC Adapter", + "product_model": "", + "product_mpn": "ADA1492", + "product_master_category": "475", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1492", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1239", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1239-03.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - TQFP-44 Breakout", + "product_model": "", + "product_mpn": "ADA1239", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "54.95", + "product_shipping_weight": "64.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1239", + "product_stock": "1", + "products_hts": "8536.69.4040", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "43.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1240", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1240-03.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - TQFP-32 Breakout", + "product_model": "", + "product_mpn": "ADA1240", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "53.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1240", + "product_stock": "19", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1241", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1241-03.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - TQFP-48 Breakout", + "product_model": "", + "product_mpn": "ADA1241", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "57.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1241", + "product_stock": "-3", + "products_hts": "8536.69.4040", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1280", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1280-00.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - TSSOP-28 Breakout", + "product_model": "", + "product_mpn": "ADA1280", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "36.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1280", + "product_stock": "5", + "products_hts": "8536.69.4040", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1281", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1281-00.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - SOIC-28 Wide Breakout", + "product_model": "", + "product_mpn": "ADA1281", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "31.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1281", + "product_stock": "76", + "products_hts": "8536.69.4040", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1282", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1282-00.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - SOIC-20 Medium Breakout", + "product_model": "", + "product_mpn": "ADA1282", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "18.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1282", + "product_stock": "44", + "products_hts": "8536.69.4040", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1283", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1283-03.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - SOIC-16 Narrow Breakout", + "product_model": "", + "product_mpn": "ADA1283", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "19.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1283", + "product_stock": "25", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1284", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1284-00.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - SOIC-8 Narrow Breakout", + "product_model": "", + "product_mpn": "ADA1284", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "30.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1284", + "product_stock": "15", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1795", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1795-00.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - TSSOP-16", + "product_model": "", + "product_mpn": "ADA1795", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "34.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1795", + "product_stock": "10", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1796", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1796-01.jpg", + "image_is_video": "0", + "product_name": "SMT Test Socket - Medium SOIC-8 (200mil)", + "product_model": "", + "product_mpn": "ADA1796", + "product_master_category": "476", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "17.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1796", + "product_stock": "10", + "products_hts": "8536.69.4040", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "284", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/284-00.jpg", + "image_is_video": "0", + "product_name": "FTDI Friend + extras", + "product_model": "v1.0", + "product_mpn": "ADA284", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "14.75", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/284", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.28", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "904", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/904-02.jpg", + "image_is_video": "0", + "product_name": "INA219 High Side DC Current Sensor Breakout - 26V \u00b13.2A Max", + "product_model": "STEMMA QT", + "product_mpn": "ADA904", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/904", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1164", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1164-00.jpg", + "image_is_video": "0", + "product_name": "INA169 Analog DC Current Sensor Breakout - 60V 5A Max", + "product_model": "", + "product_mpn": "ADA1164", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1164", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1400", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1400-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Push-button Power Switch Breakout", + "product_model": "", + "product_mpn": "ADA1400", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1400", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1764", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1764-00.jpg", + "image_is_video": "0", + "product_name": "USB Mini-B Breakout Board", + "product_model": "", + "product_mpn": "ADA1764", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "2.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1764", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1833", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1833-00.jpg", + "image_is_video": "0", + "product_name": "USB Micro-B Breakout Board", + "product_model": "", + "product_mpn": "ADA1833", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "1.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1833", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1867", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1867-00.jpg", + "image_is_video": "0", + "product_name": "12mm Coin Cell Breakout w\/ On-Off Switch", + "product_model": "", + "product_mpn": "ADA1867", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "2.75", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1867", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.48", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1868", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1868-00.jpg", + "image_is_video": "0", + "product_name": "12mm Coin Cell Breakout Board", + "product_model": "", + "product_mpn": "ADA1868", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "1.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1868", + "product_stock": "84", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1870", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1870-04.jpg", + "image_is_video": "0", + "product_name": "20mm Coin Cell Breakout Board (CR2032)", + "product_model": "", + "product_mpn": "ADA1870", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1870", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1871", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1871-08.jpg", + "image_is_video": "0", + "product_name": "20mm Coin Cell Breakout w\/On-Off Switch (CR2032)", + "product_model": "", + "product_mpn": "ADA1871", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1871", + "product_stock": "78", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1903", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1903-08.jpg", + "image_is_video": "0", + "product_name": "PowerBoost 500 Basic - 5V USB Boost @ 500mA from 1.8V+", + "product_model": "", + "product_mpn": "ADA1903", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1903", + "product_stock": "88", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2030", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2030-07.jpg", + "image_is_video": "0", + "product_name": "PowerBoost 1000 Basic - 5V USB Boost @ 1000mA from 1.8V+", + "product_model": "", + "product_mpn": "ADA2030", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "10.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2030", + "product_stock": "33", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2200", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2200-00.jpg", + "image_is_video": "0", + "product_name": "Precision LM4040 Voltage Reference Breakout - 2.048V and 4.096V", + "product_model": "", + "product_mpn": "ADA2200", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2200", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3309", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3309-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit CP2104 Friend - USB to Serial Converter", + "product_model": "", + "product_mpn": "ADA3309", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3309", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3435", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3435-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit TPL5110 Low Power Timer Breakout", + "product_model": "", + "product_mpn": "ADA3435", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3435", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3573", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3573-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit TPL5111 Low Power Timer Breakout", + "product_model": "", + "product_mpn": "ADA3573", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3573", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3661", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3661-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit MiniBoost 5V @ 100mA Charge Pump - AP3602A", + "product_model": "", + "product_mpn": "ADA3661", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3661", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4090", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4090-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit USB Type C Breakout Board - Downstream Connection", + "product_model": "", + "product_mpn": "ADA4090", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4090", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4654", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4654-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit MiniBoost 5V @ 1A - TPS61023", + "product_model": "", + "product_mpn": "ADA4654", + "product_master_category": "522", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4654", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "1-99", + "min_qty": 1 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2946", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2946-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 16x9 Charlieplexed PWM LED Matrix Driver - IS31FL3731", + "product_model": "", + "product_mpn": "ADA2946", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "7.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2946", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2947", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2947-02.jpg", + "image_is_video": "0", + "product_name": "LED Charlieplexed Matrix - 9x16 LEDs - Red", + "product_model": "", + "product_mpn": "ADA2947", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2947", + "product_stock": "1", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2948", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2948-02.jpg", + "image_is_video": "0", + "product_name": "LED Charlieplexed Matrix - 9x16 LEDs - Yellow", + "product_model": "", + "product_mpn": "ADA2948", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2948", + "product_stock": "56", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2972", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2972-02.jpg", + "image_is_video": "0", + "product_name": "LED Charlieplexed Matrix - 9x16 LEDs - Green", + "product_model": "", + "product_mpn": "ADA2972", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2972", + "product_stock": "4", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2973", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2973-02.jpg", + "image_is_video": "0", + "product_name": "LED Charlieplexed Matrix - 9x16 LEDs - Blue", + "product_model": "", + "product_mpn": "ADA2973", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2973", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2974", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2974-02.jpg", + "image_is_video": "0", + "product_name": "LED Charlieplexed Matrix - 9x16 LEDs - Cool White", + "product_model": "", + "product_mpn": "ADA2974", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2974", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3162", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3162-00.jpg", + "image_is_video": "0", + "product_name": "LED Charlieplexed Matrix - 9x16 LEDs - Warm White", + "product_model": "", + "product_mpn": "ADA3162", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3162", + "product_stock": "97", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3502", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3502-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit SHARP Memory Display Breakout - 1.3\" 168x144 Monochrome", + "product_model": "", + "product_mpn": "ADA3502", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "33.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3502", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3668", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3668-02.jpg", + "image_is_video": "0", + "product_name": "Beam Pluggable LED Boards by Hover Labs", + "product_model": "", + "product_mpn": "ADA3668", + "product_master_category": "524", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "13.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3668", + "product_stock": "22", + "products_hts": "8541.40.2000", + "products_coo": "IN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4694", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4694-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit SHARP Memory Display Breakout - 2.7\" 400x240 Monochrome", + "product_model": "", + "product_mpn": "ADA4694", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4694", + "product_stock": "38", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4984", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4984-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit DVI Breakout Board - For HDMI Source Devices", + "product_model": "", + "product_mpn": "ADA4984", + "product_master_category": "524", + "product_manufacturer": "Adafruit", + "product_price": "1.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4984", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "334", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/334-00.jpg", + "image_is_video": "0", + "product_name": "Touch screen breakout board (0.5mm FPC)", + "product_model": "", + "product_mpn": "ADA334", + "product_master_category": "525", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/334", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1571", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1571-00.jpg", + "image_is_video": "0", + "product_name": "Resistive Touch Screen Controller - STMPE610", + "product_model": "", + "product_mpn": "ADA1571", + "product_master_category": "525", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1571", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1580", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1580-00.jpg", + "image_is_video": "0", + "product_name": "Resistive Touch Screen to USB Mouse Controller - AR1100", + "product_model": "", + "product_mpn": "ADA1580", + "product_master_category": "525", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1580", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3575", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3575-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Touch Screen Breakout Board for 4 pin 1.0mm FPC", + "product_model": "", + "product_mpn": "ADA3575", + "product_master_category": "525", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3575", + "product_stock": "40", + "products_hts": "8537.10.9050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "924", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/924-02.jpg", + "image_is_video": "0", + "product_name": "Emic 2 Text-to-Speech module", + "product_model": "", + "product_mpn": "ADA924", + "product_master_category": "526", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/924", + "product_stock": "-1", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "987", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/987-00.jpg", + "image_is_video": "0", + "product_name": "Stereo 3.7W Class D Audio Amplifier - MAX98306", + "product_model": "", + "product_mpn": "ADA987", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/987", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1381", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1381-03.jpg", + "image_is_video": "0", + "product_name": "VS1053 Codec + MicroSD Breakout - MP3\/WAV\/MIDI\/OGG Play + Record", + "product_model": "v4", + "product_mpn": "ADA1381", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "12.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1381", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1552", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1552-03.jpg", + "image_is_video": "0", + "product_name": "Stereo 2.1W Class D Audio Amplifier - TPA2012", + "product_model": "", + "product_mpn": "ADA1552", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1552", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1712", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1712-00.jpg", + "image_is_video": "0", + "product_name": "Stereo 2.8W Class D Audio Amplifier - I2C Control AGC - TPA2016", + "product_model": "", + "product_mpn": "ADA1712", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1712", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2130", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2130-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mono 2.5W Class D Audio Amplifier - PAM8302", + "product_model": "", + "product_mpn": "ADA2130", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2130", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2133", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2133-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Audio FX Sound Board - WAV\/OGG Trigger with 2MB Flash", + "product_model": "", + "product_mpn": "ADA2133", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2133", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2210", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2210-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Audio FX Sound Board + 2x2W Amp - WAV\/OGG Trigger - 2MB", + "product_model": "", + "product_mpn": "ADA2210", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "9.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2210", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2217", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2217-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Audio FX Sound Board + 2x2W Amp - WAV\/OGG Trigger -16MB", + "product_model": "", + "product_mpn": "ADA2217", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "10.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2217", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2220", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2220-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Audio FX Sound Board - WAV\/OGG Trigger with 16MB Flash", + "product_model": "", + "product_mpn": "ADA2220", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "8.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2220", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2341", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2341-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Audio FX Mini Sound Board - WAV\/OGG Trigger 16MB Flash", + "product_model": "", + "product_mpn": "ADA2341", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2341", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2342", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2342-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Audio FX Mini Sound Board - WAV\/OGG Trigger - 2MB Flash", + "product_model": "", + "product_mpn": "ADA2342", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "7.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2342", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3006", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3006-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit I2S 3W Class D Amplifier Breakout - MAX98357A", + "product_model": "", + "product_mpn": "ADA3006", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3006", + "product_stock": "in stock", + "products_hts": "8473.30.1180", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3678", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3678-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit I2S Stereo Decoder - UDA1334A Breakout", + "product_model": "", + "product_mpn": "ADA3678", + "product_master_category": "526", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3678", + "product_stock": "in stock", + "products_hts": "9902.10.1700", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4763", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4763-00.jpg", + "image_is_video": "0", + "product_name": "GD25Q16 - 2MB SPI Flash in 8-Pin SOIC package", + "product_model": "", + "product_mpn": "ADA4763", + "product_master_category": "530", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4763", + "product_stock": "16", + "products_hts": "8542.32.0071", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1509", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1509-02.jpg", + "image_is_video": "0", + "product_name": "Trinket 6-Pack - 3 x 3.3V and 3 x 5V Trinkets", + "product_model": "", + "product_mpn": "ADA1509", + "product_master_category": "531", + "product_manufacturer": "Adafruit", + "product_price": "35.00", + "product_shipping_weight": "23.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1509", + "product_stock": "5", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2085", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2085-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pro Trinket 6-Pack - 3 x 3V and 3 x 5V Trinkets", + "product_model": "", + "product_mpn": "ADA2085", + "product_master_category": "531", + "product_manufacturer": "Adafruit", + "product_price": "52.50", + "product_shipping_weight": "34.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2085", + "product_stock": "98", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2289", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2289-02.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Trinket Book + Adafruit Trinket 5V Kit Pack", + "product_model": "", + "product_mpn": "ADA2289", + "product_master_category": "531", + "product_manufacturer": "Adafruit", + "product_price": "21.95", + "product_shipping_weight": "323.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2289", + "product_stock": "15", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2290", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2290-01.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Trinket Book + NeoPixel Goggles Pack", + "product_model": "", + "product_mpn": "ADA2290", + "product_master_category": "531", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "518.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2290", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "368", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/368-03.jpg", + "image_is_video": "0", + "product_name": "Female DC Power adapter - 2.1mm jack to screw terminal block", + "product_model": "", + "product_mpn": "ADA368", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/368", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "369", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/369-03.jpg", + "image_is_video": "0", + "product_name": "Male DC Power adapter - 2.1mm plug to screw terminal block", + "product_model": "", + "product_mpn": "ADA369", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/369", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.80", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "411", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/411-01.jpg", + "image_is_video": "0", + "product_name": "2.1mm to 1.7mm DC jack adapter", + "product_model": "", + "product_mpn": "ADA411", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/411", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1329", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1329-02.jpg", + "image_is_video": "0", + "product_name": "2.1mm DC Barrel Plug to Alligator Clips", + "product_model": "", + "product_mpn": "ADA1329", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "12.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1329", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1351", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1351-00.jpg", + "image_is_video": "0", + "product_name": "2-Way 2.1mm DC Barrel Jack Splitter Squid", + "product_model": "", + "product_mpn": "ADA1351", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1351", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1352", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1352-00.jpg", + "image_is_video": "0", + "product_name": "4-Way 2.1mm DC Barrel Jack Splitter", + "product_model": "", + "product_mpn": "ADA1352", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "36.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1352", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2789", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2789-04.jpg", + "image_is_video": "0", + "product_name": "MicroUSB to 5.5\/2.1mm DC Barrel Jack Adapter", + "product_model": "", + "product_mpn": "ADA2789", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2789", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2897", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2897-00.jpg", + "image_is_video": "0", + "product_name": "2.1mm to 2.5mm DC Barrel Plug Adapter", + "product_model": "", + "product_mpn": "ADA2897", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2897", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3546", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3546-02.jpg", + "image_is_video": "0", + "product_name": "2.1mm DC Barrel Jack to 1st Generation MagSafe Adapter", + "product_model": "", + "product_mpn": "ADA3546", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3546", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3547", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3547-02.jpg", + "image_is_video": "0", + "product_name": "2.1mm DC Barrel Jack to 2nd Generation MagSafe Adapter", + "product_model": "", + "product_mpn": "ADA3547", + "product_master_category": "557", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3547", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "380", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/380-01.jpg", + "image_is_video": "0", + "product_name": "CR1220 12mm Diameter - 3V Lithium Coin Cell Battery", + "product_model": "CR1220", + "product_mpn": "ADA380", + "product_master_category": "559", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/380", + "product_stock": "in stock", + "products_hts": "8506.5090", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "654", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/654-02.jpg", + "image_is_video": "0", + "product_name": "CR2032 Lithium Coin Cell Battery", + "product_model": "", + "product_mpn": "ADA654", + "product_master_category": "559", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/654", + "product_stock": "in stock", + "products_hts": "8506.5090", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2849", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2849-01.jpg", + "image_is_video": "0", + "product_name": "CR2016 Lithium Coin Cell Battery", + "product_model": "", + "product_mpn": "ADA2849", + "product_master_category": "559", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2849", + "product_stock": "-5", + "products_hts": "8506.5090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2850", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2850-01.jpg", + "image_is_video": "0", + "product_name": "CR2450 Lithium Coin Cell Battery", + "product_model": "", + "product_mpn": "ADA2850", + "product_master_category": "559", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "7.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2850", + "product_stock": "in stock", + "products_hts": "8506.5090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4645", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4645-03.jpg", + "image_is_video": "0", + "product_name": "LR44 \/ AG13 1.5V Button Cell Batteries (10-pack)", + "product_model": "", + "product_mpn": "ADA4645", + "product_master_category": "559", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4645", + "product_stock": "in stock", + "products_hts": "8506.1012.10", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "617", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/617-01.jpg", + "image_is_video": "0", + "product_name": "Alkaline AAA batteries - 2 pack", + "product_model": "", + "product_mpn": "ADA617", + "product_master_category": "560", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "21.2", + "product_url": "https:\/\/www.adafruit.com\/product\/617", + "product_stock": "in stock", + "products_hts": "8506.80.0000", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1321", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1321-02.jpg", + "image_is_video": "0", + "product_name": "Alkaline 9V Battery", + "product_model": "", + "product_mpn": "ADA1321", + "product_master_category": "560", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "47.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1321", + "product_stock": "in stock", + "products_hts": "8506.80.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3349", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3349-00.jpg", + "image_is_video": "0", + "product_name": "Alkaline AA batteries (LR6) - 4 pack", + "product_model": "", + "product_mpn": "ADA3349", + "product_master_category": "560", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "93.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3349", + "product_stock": "in stock", + "products_hts": "8506.80.0000", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3520", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3520-00.jpg", + "image_is_video": "0", + "product_name": "Alkaline AAA batteries - 3 pack", + "product_model": "", + "product_mpn": "ADA3520", + "product_master_category": "560", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "34.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3520", + "product_stock": "in stock", + "products_hts": "8506.80.0000", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3521", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3521-00.jpg", + "image_is_video": "0", + "product_name": "Alkaline AA batteries (LR6) - 3 pack", + "product_model": "", + "product_mpn": "ADA3521", + "product_master_category": "560", + "product_manufacturer": null, + "product_price": "2.25", + "product_shipping_weight": "71.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3521", + "product_stock": "6", + "products_hts": "8506.80.0000", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.03", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "67", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/67-03.jpg", + "image_is_video": "0", + "product_name": "9V battery holder with switch & 5.5mm\/2.1mm plug", + "product_model": "", + "product_mpn": "ADA67", + "product_master_category": "562", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "24.8", + "product_url": "https:\/\/www.adafruit.com\/product\/67", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "80", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/80-03.jpg", + "image_is_video": "0", + "product_name": "9V battery clip with 5.5mm\/2.1mm plug", + "product_model": "", + "product_mpn": "ADA80", + "product_master_category": "562", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/80", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "248", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/248-03.jpg", + "image_is_video": "0", + "product_name": "6 x AA battery holder with 5.5mm\/2.1mm plug", + "product_model": "", + "product_mpn": "ADA248", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "47.0", + "product_url": "https:\/\/www.adafruit.com\/product\/248", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "449", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/449-03.jpg", + "image_is_video": "0", + "product_name": "8 x AA battery holder", + "product_model": "", + "product_mpn": "ADA449", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "13.1", + "product_url": "https:\/\/www.adafruit.com\/product\/449", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "770", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/770-08.jpg", + "image_is_video": "0", + "product_name": "Waterproof 2xAA Battery Holder with On\/Off Switch", + "product_model": "", + "product_mpn": "ADA770", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "27.9", + "product_url": "https:\/\/www.adafruit.com\/product\/770", + "product_stock": "in stock", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "771", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/771-04.jpg", + "image_is_video": "0", + "product_name": "Waterproof 3xAA Battery Holder with On\/Off Switch", + "product_model": "", + "product_mpn": "ADA771", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "44.8", + "product_url": "https:\/\/www.adafruit.com\/product\/771", + "product_stock": "in stock", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "830", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/830-07.jpg", + "image_is_video": "0", + "product_name": "4 x AA Battery Holder with On\/Off Switch", + "product_model": "", + "product_mpn": "ADA830", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "36.7", + "product_url": "https:\/\/www.adafruit.com\/product\/830", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "875", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/875-04.jpg", + "image_is_video": "0", + "product_name": "8 x AA battery holder with 5.5mm\/2.1mm Plug and On\/Off Switch", + "product_model": "", + "product_mpn": "ADA875", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "79.8", + "product_url": "https:\/\/www.adafruit.com\/product\/875", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3287", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3287-00.jpg", + "image_is_video": "0", + "product_name": "3 x AA Battery Holder with On\/Off Switch, JST, and Belt Clip", + "product_model": "", + "product_mpn": "ADA3287", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "34.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3287", + "product_stock": "0", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3784", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3784-03.jpg", + "image_is_video": "0", + "product_name": "4 x AA Battery Holder with 2.1mm Plug", + "product_model": "", + "product_mpn": "ADA3784", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "19.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3784", + "product_stock": "72", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3788", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3788-00.jpg", + "image_is_video": "0", + "product_name": "4 x AA Battery Holder with 2.1mm Plug and On\/Off Switch", + "product_model": "", + "product_mpn": "ADA3788", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "38.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3788", + "product_stock": "10", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3842", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3842-01.jpg", + "image_is_video": "0", + "product_name": "3 x AA Battery Holder with 2.1mm Plug", + "product_model": "", + "product_mpn": "ADA3842", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "15.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3842", + "product_stock": "in stock", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3858", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3858-00.jpg", + "image_is_video": "0", + "product_name": "2 x AA Battery Holder with Premium Jumper Header Wires", + "product_model": "", + "product_mpn": "ADA3858", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3858", + "product_stock": "in stock", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "3859", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3859-01.jpg", + "image_is_video": "0", + "product_name": "4 x AA Battery Holder with Premium Jumper Header Wires", + "product_model": "", + "product_mpn": "ADA3859", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3859", + "product_stock": "in stock", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3905", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3905-00.jpg", + "image_is_video": "0", + "product_name": "2x2 AA Battery Holder with Premium Jumper Header Wires", + "product_model": "", + "product_mpn": "ADA3905", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3905", + "product_stock": "in stock", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3951", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3951-04.jpg", + "image_is_video": "1", + "product_name": "2 x AA Battery Holder with Knife Switch", + "product_model": "", + "product_mpn": "ADA3951", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3951", + "product_stock": "28", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4193", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4193-01.jpg", + "image_is_video": "0", + "product_name": "2 x AA Battery Holder with On\/Off Switch & JST PH Connector", + "product_model": "", + "product_mpn": "ADA4193", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "21.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4193", + "product_stock": "0", + "products_hts": "8536.90.8510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4194", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4194-02.jpg", + "image_is_video": "0", + "product_name": "2 x AA Open Battery Holder with JST PH Connector", + "product_model": "", + "product_mpn": "ADA4194", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4194", + "product_stock": "73", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4779", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4779-02.jpg", + "image_is_video": "0", + "product_name": "3x AA Battery Holder with On\/Off Switch and 2-Pin JST", + "product_model": "", + "product_mpn": "ADA4779", + "product_master_category": "563", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4779", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "727", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/727-03.jpg", + "image_is_video": "0", + "product_name": "3 x AAA Battery Holder with On\/Off Switch and 2-Pin JST", + "product_model": "", + "product_mpn": "ADA727", + "product_master_category": "564", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "18.8", + "product_url": "https:\/\/www.adafruit.com\/product\/727", + "product_stock": "36", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3286", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3286-00.jpg", + "image_is_video": "0", + "product_name": "3 x AAA Battery Holder with On\/Off Switch, JST, and Belt Clip", + "product_model": "", + "product_mpn": "ADA3286", + "product_master_category": "564", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "25.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3286", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4191", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4191-02.jpg", + "image_is_video": "0", + "product_name": "2 x AAA Battery Holder with On\/Off Switch & JST PH Connector", + "product_model": "", + "product_mpn": "ADA4191", + "product_master_category": "564", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "13.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4191", + "product_stock": "in stock", + "products_hts": "8536.90.8510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4192", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4192-01.jpg", + "image_is_video": "0", + "product_name": "2 x AAA Open Battery Holder with JST PH Connector", + "product_model": "", + "product_mpn": "ADA4192", + "product_master_category": "564", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4192", + "product_stock": "59", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2089", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2089-01.jpg", + "image_is_video": "0", + "product_name": "Camcorder Battery Holder\/Adapter for Sony NP-F750 w\/ DC Jack", + "product_model": "", + "product_mpn": "ADA2089", + "product_master_category": "565", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "39.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2089", + "product_stock": "94", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2271", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2271-03.jpg", + "image_is_video": "0", + "product_name": "Camcorder Battery Holder for Canon LP-E6", + "product_model": "", + "product_mpn": "ADA2271", + "product_master_category": "565", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "24.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2271", + "product_stock": "6", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "653", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/653-04.jpg", + "image_is_video": "0", + "product_name": "Sewable CR2032 Battery Holder", + "product_model": "", + "product_mpn": "ADA653", + "product_master_category": "566", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/653", + "product_stock": "in stock", + "products_hts": "8536.9010", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "783", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/783-03.jpg", + "image_is_video": "0", + "product_name": "2 x 2032 Coin Cell Battery Holder - 6V output with On\/Off switch", + "product_model": "", + "product_mpn": "ADA783", + "product_master_category": "566", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.9", + "product_url": "https:\/\/www.adafruit.com\/product\/783", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4891", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4891-07.jpg", + "image_is_video": "1", + "product_name": "Single CR2032 Battery Holder with Three Flashing Modes", + "product_model": "", + "product_mpn": "ADA4891", + "product_master_category": "566", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4891", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2190", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2190-00.jpg", + "image_is_video": "0", + "product_name": "VERTER 5V USB Buck-Boost - 500mA from 3V-5V \/ 1000ma from 5V-12V", + "product_model": "", + "product_mpn": "ADA2190", + "product_master_category": "570", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "6.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2190", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3265", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3265-01.jpg", + "image_is_video": "0", + "product_name": "BooSTick - AA Voltage Booster", + "product_model": "", + "product_mpn": "ADA3265", + "product_master_category": "570", + "product_manufacturer": "Rover Development", + "product_price": "13.50", + "product_shipping_weight": "10.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3265", + "product_stock": "0", + "products_hts": "8536.90.8085", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1462", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1462-00.jpg", + "image_is_video": "0", + "product_name": "Pocket Socket 2 - Hand-Crank Power Outlet", + "product_model": "", + "product_mpn": "ADA1462", + "product_master_category": "571", + "product_manufacturer": null, + "product_price": "64.95", + "product_shipping_weight": "485.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1462", + "product_stock": "-3", + "products_hts": "8501.10.6080", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1533", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1533-00.jpg", + "image_is_video": "0", + "product_name": "K-TOR Pedal Powered Generator \u2013 The Power Box", + "product_model": "", + "product_mpn": "ADA1533", + "product_master_category": "571", + "product_manufacturer": null, + "product_price": "195.00", + "product_shipping_weight": "2,358.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1533", + "product_stock": "-3", + "products_hts": "8501.10.6080", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "195.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "175.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "156.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2936", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2936-02.jpg", + "image_is_video": "0", + "product_name": "Pocket Socket USB 5V 1 Amp Output", + "product_model": "K-Tor", + "product_mpn": "ADA2936", + "product_master_category": "571", + "product_manufacturer": null, + "product_price": "64.95", + "product_shipping_weight": "495.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2936", + "product_stock": "0", + "products_hts": "8501.10.6080", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "184", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/184-01.jpg", + "image_is_video": "0", + "product_name": "Adjustable breadboard power supply kit", + "product_model": "v1.0", + "product_mpn": "ADA184", + "product_master_category": "572", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "19.7", + "product_url": "https:\/\/www.adafruit.com\/product\/184", + "product_stock": "0", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1065", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1065-02.jpg", + "image_is_video": "0", + "product_name": "Mini DC\/DC Step-Down (Buck) Converter - 5V @ 1A output", + "product_model": "TSR12450", + "product_mpn": "ADA1065", + "product_master_category": "573", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1065", + "product_stock": "32", + "products_hts": "8504.40.9510", + "products_coo": "CH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1066", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1066-02.jpg", + "image_is_video": "0", + "product_name": "Mini DC\/DC Step-Down (Buck) Converter - 3.3V @ 1A output", + "product_model": "TSR12433", + "product_mpn": "ADA1066", + "product_master_category": "573", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1066", + "product_stock": "-3", + "products_hts": "8504.40.9510", + "products_coo": "CH", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1385", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1385-02.jpg", + "image_is_video": "0", + "product_name": "UBEC DC\/DC Step-Down (Buck) Converter - 5V @ 3A output", + "product_model": "", + "product_mpn": "ADA1385", + "product_master_category": "573", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1385", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2745", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2745-00.jpg", + "image_is_video": "0", + "product_name": "LM3671 3.3V Buck Converter Breakout - 3.3V Output 600mA Max", + "product_model": "", + "product_mpn": "ADA2745", + "product_master_category": "573", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2745", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4683", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4683-00.jpg", + "image_is_video": "0", + "product_name": "MPM3610 3.3V Buck Converter Breakout - 21V In 3.3V Out at 1.2A", + "product_model": "", + "product_mpn": "ADA4683", + "product_master_category": "573", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4683", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4711", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4711-00.jpg", + "image_is_video": "0", + "product_name": "AP3429A 3.3V Buck Converter Breakout - 3.3V Output 1.2A Max", + "product_model": "", + "product_mpn": "ADA4711", + "product_master_category": "573", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4711", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4739", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4739-07.jpg", + "image_is_video": "0", + "product_name": "MPM3610 5V Buck Converter Breakout - 21V In 5V Out at 1.2A", + "product_model": "", + "product_mpn": "ADA4739", + "product_master_category": "573", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4739", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4920", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4920-00.jpg", + "image_is_video": "0", + "product_name": "TPS62827 3.3V Buck Converter Breakout - 3.3V Output 2 Amp Max", + "product_model": "", + "product_mpn": "ADA4920", + "product_master_category": "573", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4920", + "product_stock": "78", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "258", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/258-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery - 3.7v 1200mAh", + "product_model": "", + "product_mpn": "ADA258", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "25.6", + "product_url": "https:\/\/www.adafruit.com\/product\/258", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "328", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/328-02.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery - 3.7v 2500mAh", + "product_model": "", + "product_mpn": "ADA328", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "48.4", + "product_url": "https:\/\/www.adafruit.com\/product\/328", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "353", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/353-03.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Battery Pack - 3.7V 6600mAh", + "product_model": "", + "product_mpn": "ADA353", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "24.50", + "product_shipping_weight": "142.1", + "product_url": "https:\/\/www.adafruit.com\/product\/353", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.05", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "354", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/354-02.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Battery Pack - 3.7V 4400mAh", + "product_model": "", + "product_mpn": "ADA354", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "97.6", + "product_url": "https:\/\/www.adafruit.com\/product\/354", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1317", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1317-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery - 3.7v 150mAh", + "product_model": "", + "product_mpn": "ADA1317", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "7.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1317", + "product_stock": "0", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1570", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1570-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery - 3.7v 100mAh", + "product_model": "", + "product_mpn": "ADA1570", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1570", + "product_stock": "in stock", + "products_hts": "8507.80.80 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1578", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1578-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery - 3.7v 500mAh", + "product_model": "", + "product_mpn": "ADA1578", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1578", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1781", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1781-04.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Cylindrical Battery - 3.7v 2200mAh", + "product_model": "", + "product_mpn": "ADA1781", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "51.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1781", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2011", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2011-03.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Battery - 3.7v 2000mAh", + "product_model": "", + "product_mpn": "ADA2011", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "38.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2011", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2750", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2750-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery - 3.7v 350mAh", + "product_model": "", + "product_mpn": "ADA2750", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "10.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2750", + "product_stock": "in stock", + "products_hts": "8507.80.80 00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "3898", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3898-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery Ideal For Feathers - 3.7V 400mAh", + "product_model": "", + "product_mpn": "ADA3898", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3898", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4236", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4236-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery with Short Cable - 3.7V 420mAh", + "product_model": "", + "product_mpn": "ADA4236", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4236", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4237", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4237-01.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery with Short Cable - 3.7V 350mAh", + "product_model": "", + "product_mpn": "ADA4237", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4237", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "5035", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5035-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Polymer Battery - 3.7V 10050mAh (10 Ah)", + "product_model": "", + "product_mpn": "ADA5035", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "155.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5035", + "product_stock": "0", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1572", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1572-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Rechargable Coin Cell Battery - LIR2450", + "product_model": "", + "product_mpn": "ADA1572", + "product_master_category": "574", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1572", + "product_stock": "-3", + "products_hts": "8507.80.80 00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "259", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/259-00.jpg", + "image_is_video": "0", + "product_name": "USB LiIon\/LiPoly charger", + "product_model": "v1.2", + "product_mpn": "ADA259", + "product_master_category": "575", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/259", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1304", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1304-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Micro Lipo - USB LiIon\/LiPoly charger", + "product_model": "v1", + "product_mpn": "ADA1304", + "product_master_category": "575", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1304", + "product_stock": "98", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1573", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1573-00.jpg", + "image_is_video": "0", + "product_name": "Lithium Ion Coin Cell Charger", + "product_model": "", + "product_mpn": "ADA1573", + "product_master_category": "575", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "10.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1573", + "product_stock": "99", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1904", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1904-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Micro-Lipo Charger for LiPo\/LiIon Batt w\/MicroUSB Jack", + "product_model": "v1", + "product_mpn": "ADA1904", + "product_master_category": "575", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1904", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1905", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1905-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini Lipo w\/Mini-B USB Jack - USB LiIon\/LiPoly charger", + "product_model": "v1", + "product_mpn": "ADA1905", + "product_master_category": "575", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1905", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2078", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2078-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit PowerBoost 500 Shield - Rechargeable 5V Power Shield", + "product_model": "", + "product_mpn": "ADA2078", + "product_master_category": "575", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2078", + "product_stock": "44", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4410", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4410-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Micro-Lipo Charger for LiPoly Batt with USB Type C Jack", + "product_model": "", + "product_mpn": "ADA4410", + "product_master_category": "575", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4410", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "280", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/280-00.jpg", + "image_is_video": "0", + "product_name": "USB\/DC Lithium Polymer battery charger 5-12V", + "product_model": "3.7\/4.2v cells", + "product_mpn": "ADA280", + "product_master_category": "575", + "product_manufacturer": "Adafruit", + "product_price": "17.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/280", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "390", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/390-07.jpg", + "image_is_video": "0", + "product_name": "USB \/ DC \/ Solar Lithium Ion\/Polymer charger", + "product_model": "v2", + "product_mpn": "ADA390", + "product_master_category": "577", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "16.6", + "product_url": "https:\/\/www.adafruit.com\/product\/390", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4755", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4755-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Universal USB \/ DC \/ Solar Lithium Ion\/Polymer charger", + "product_model": "bq24074", + "product_mpn": "ADA4755", + "product_master_category": "577", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4755", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "327", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/327-02.jpg", + "image_is_video": "0", + "product_name": "2.1mm female\/male barrel jack extension cable", + "product_model": "1.5m \/ 5 ft", + "product_mpn": "ADA327", + "product_master_category": "578", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "45.0", + "product_url": "https:\/\/www.adafruit.com\/product\/327", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1328", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1328-02.jpg", + "image_is_video": "0", + "product_name": "2.1mm DC Barrel Jack to Alligator Clips", + "product_model": "", + "product_mpn": "ADA1328", + "product_master_category": "578", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "11.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1328", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2788", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2788-00.jpg", + "image_is_video": "0", + "product_name": "3.8 \/ 1.3mm or 3.5 \/ 1.1mm to 5.5 \/ 2.1mm DC Jack Adapter Cable", + "product_model": "", + "product_mpn": "ADA2788", + "product_master_category": "578", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2788", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4287", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4287-00.jpg", + "image_is_video": "0", + "product_name": "3.5mm \/ 1.1mm to 5.5mm \/ 2.1mm DC Jack Adapter", + "product_model": "", + "product_mpn": "ADA4287", + "product_master_category": "578", + "product_manufacturer": "Voltaic Systems", + "product_price": "1.50", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4287", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1519", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1519-00.jpg", + "image_is_video": "0", + "product_name": "Volta Racers Solar Motorcar Kit - Black", + "product_model": "", + "product_mpn": "ADA1519", + "product_master_category": "579", + "product_manufacturer": "Toy Labs", + "product_price": "20.00", + "product_shipping_weight": "95.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1519", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1527", + "discount_pricing": [] + }, + { + "product_id": "1520", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1520-00.jpg", + "image_is_video": "0", + "product_name": "Volta Racers Solar Motorcar Kit - Blue", + "product_model": "", + "product_mpn": "ADA1520", + "product_master_category": "579", + "product_manufacturer": "Toy Labs", + "product_price": "20.00", + "product_shipping_weight": "95.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1520", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1527", + "discount_pricing": [] + }, + { + "product_id": "1521", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1521-00.jpg", + "image_is_video": "0", + "product_name": "Volta Racers Solar Motorcar Kit - Green", + "product_model": "", + "product_mpn": "ADA1521", + "product_master_category": "579", + "product_manufacturer": "Toy Labs", + "product_price": "20.00", + "product_shipping_weight": "95.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1521", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1527", + "discount_pricing": [] + }, + { + "product_id": "1524", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1524-00.jpg", + "image_is_video": "0", + "product_name": "Volta Racers Solar Motorcar Kit - Gray", + "product_model": "", + "product_mpn": "ADA1524", + "product_master_category": "579", + "product_manufacturer": "Toy Labs", + "product_price": "20.00", + "product_shipping_weight": "95.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1524", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1527", + "discount_pricing": [] + }, + { + "product_id": "1522", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1522-00.jpg", + "image_is_video": "0", + "product_name": "Volta Racers Solar Motorcar Kit - Pink", + "product_model": "", + "product_mpn": "ADA1522", + "product_master_category": "579", + "product_manufacturer": "Toy Labs", + "product_price": "24.95", + "product_shipping_weight": "95.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1522", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1527", + "discount_pricing": [] + }, + { + "product_id": "1523", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1523-00.jpg", + "image_is_video": "0", + "product_name": "Volta Racers Solar Motorcar Kit - White", + "product_model": "", + "product_mpn": "ADA1523", + "product_master_category": "579", + "product_manufacturer": "Toy Labs", + "product_price": "24.95", + "product_shipping_weight": "95.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1523", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "JP", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "1527", + "discount_pricing": [] + }, + { + "product_id": "200", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/200-07.jpg", + "image_is_video": "0", + "product_name": "Medium 6V 2W Solar panel", + "product_model": "2.0 Watt", + "product_mpn": "ADA200", + "product_master_category": "580", + "product_manufacturer": "Voltaic Systems", + "product_price": "29.00", + "product_shipping_weight": "95.7", + "product_url": "https:\/\/www.adafruit.com\/product\/200", + "product_stock": "0", + "products_hts": "8541.40.6015", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.10", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "500", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/500-00.jpg", + "image_is_video": "0", + "product_name": "Large 6V 3.5W Solar panel", + "product_model": "3.5 Watt", + "product_mpn": "ADA500", + "product_master_category": "580", + "product_manufacturer": "Voltaic Systems", + "product_price": "45.00", + "product_shipping_weight": "137.9", + "product_url": "https:\/\/www.adafruit.com\/product\/500", + "product_stock": "73", + "products_hts": "8541.40.6010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "45.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.50", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "700", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/700-02.jpg", + "image_is_video": "0", + "product_name": "Round Solar Panel Skill Badge - 5V \/ 40mA", + "product_model": "", + "product_mpn": "ADA700", + "product_master_category": "580", + "product_manufacturer": "Cixi Intec", + "product_price": "2.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/700", + "product_stock": "6", + "products_hts": "8541.40.6010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1525", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1525-00.jpg", + "image_is_video": "0", + "product_name": "Huge 6V 6W Solar panel", + "product_model": "6.0 Watt", + "product_mpn": "ADA1525", + "product_master_category": "580", + "product_manufacturer": "Voltaic Systems", + "product_price": "69.00", + "product_shipping_weight": "264.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1525", + "product_stock": "0", + "products_hts": "8541.40.6010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.10", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2747", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2747-00.jpg", + "image_is_video": "0", + "product_name": "Colossal 6V 9W Solar Panel", + "product_model": "9.0 Watt", + "product_mpn": "ADA2747", + "product_master_category": "580", + "product_manufacturer": "Voltaic Systems", + "product_price": "78.95", + "product_shipping_weight": "309.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2747", + "product_stock": "66", + "products_hts": "8541.40.6010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "78.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3809", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3809-01.jpg", + "image_is_video": "0", + "product_name": "Small 6V 1W Solar Panel - Silver", + "product_model": "", + "product_mpn": "ADA3809", + "product_master_category": "580", + "product_manufacturer": "Voltaic Systems", + "product_price": "19.95", + "product_shipping_weight": "70.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3809", + "product_stock": "48", + "products_hts": "8541.40.6015", + "products_coo": "MY", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "417", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/417-00.jpg", + "image_is_video": "0", + "product_name": "Large 6V 3.7W Solar Panel", + "product_model": "", + "product_mpn": "ADA417", + "product_master_category": "580", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/417", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1485", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1485-00.jpg", + "image_is_video": "0", + "product_name": "Flexible 6V 1W Solar Panel", + "product_model": "", + "product_mpn": "ADA1485", + "product_master_category": "580", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1485", + "product_stock": "-3", + "products_hts": "8541.40.6010", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "276", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/276-00.jpg", + "image_is_video": "0", + "product_name": "5V 2A (2000mA) switching power supply - UL Listed", + "product_model": "", + "product_mpn": "ADA276", + "product_master_category": "581", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "89.3", + "product_url": "https:\/\/www.adafruit.com\/product\/276", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "658", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/658-07.jpg", + "image_is_video": "0", + "product_name": "5V 10A switching power supply", + "product_model": "", + "product_mpn": "ADA658", + "product_master_category": "581", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "554.7", + "product_url": "https:\/\/www.adafruit.com\/product\/658", + "product_stock": "in stock", + "products_hts": "8504.40.9520", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1466", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1466-02.jpg", + "image_is_video": "0", + "product_name": "5V 4A (4000mA) switching power supply - UL Listed", + "product_model": "", + "product_mpn": "ADA1466", + "product_master_category": "581", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "259.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1466", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1994", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1994-01.jpg", + "image_is_video": "0", + "product_name": "5V 2A Switching Power Supply w\/ USB-A Connector", + "product_model": "", + "product_mpn": "ADA1994", + "product_master_category": "581", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "75.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1994", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1995", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1995-02.jpg", + "image_is_video": "0", + "product_name": "5V 2.5A Switching Power Supply with 20AWG MicroUSB Cable", + "product_model": "", + "product_mpn": "ADA1995", + "product_master_category": "581", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "121.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1995", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2297", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2297-06.jpg", + "image_is_video": "0", + "product_name": "5V 2A Power Supply w\/ 20AWG 6' MicroUSB Cable - International", + "product_model": "", + "product_mpn": "ADA2297", + "product_master_category": "581", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "208.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2297", + "product_stock": "-3", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "989", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/989-03.jpg", + "image_is_video": "0", + "product_name": "UK Plug Power Adapter", + "product_model": "", + "product_mpn": "ADA989", + "product_master_category": "582", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/989", + "product_stock": "9", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "990", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/990-02.jpg", + "image_is_video": "0", + "product_name": "Euro Plug Power Adapter", + "product_model": "", + "product_mpn": "ADA990", + "product_master_category": "582", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "13.1", + "product_url": "https:\/\/www.adafruit.com\/product\/990", + "product_stock": "in stock", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "991", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/991-04.jpg", + "image_is_video": "0", + "product_name": "Australian Plug Power Adapter", + "product_model": "", + "product_mpn": "ADA991", + "product_master_category": "582", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.1", + "product_url": "https:\/\/www.adafruit.com\/product\/991", + "product_stock": "3", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4522", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4522-01.jpg", + "image_is_video": "0", + "product_name": "50-pin 0.5mm FFC \/ FPC Extender", + "product_model": "", + "product_mpn": "ADA4522", + "product_master_category": "589", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4522", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4523", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4523-01.jpg", + "image_is_video": "0", + "product_name": "40-pin 0.5mm FFC \/ FPC Extender", + "product_model": "", + "product_mpn": "ADA4523", + "product_master_category": "589", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4523", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4524", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4524-02.jpg", + "image_is_video": "0", + "product_name": "24-pin 0.5mm FFC \/ FPC Extender", + "product_model": "", + "product_mpn": "ADA4524", + "product_master_category": "589", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4524", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "1-99", + "min_qty": 1 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "261", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/261-01.jpg", + "image_is_video": "0", + "product_name": "JST PH 2-Pin Cable - Female Connector 100mm", + "product_model": "", + "product_mpn": "ADA261", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/261", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1131", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1131-00.jpg", + "image_is_video": "0", + "product_name": "JST-PH Battery Extension Cable - 500mm", + "product_model": "", + "product_mpn": "ADA1131", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1131", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2880", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2880-03.jpg", + "image_is_video": "0", + "product_name": "2-pin JST SM Plug + Receptacle Cable Set", + "product_model": "", + "product_mpn": "ADA2880", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2880", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3064", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3064-02.jpg", + "image_is_video": "0", + "product_name": "JST 2-pin Extension Cable with On\/Off Switch - JST PH2", + "product_model": "", + "product_mpn": "ADA3064", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3064", + "product_stock": "in stock", + "products_hts": "8544.42.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3814", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3814-02.jpg", + "image_is_video": "0", + "product_name": "JST PH 2-Pin Cable \u2013 Male Header 200mm", + "product_model": "", + "product_mpn": "ADA3814", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3814", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4714", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4714-01.jpg", + "image_is_video": "0", + "product_name": "JST-PH 2-pin Jumper Cable - 100mm long", + "product_model": "", + "product_mpn": "ADA4714", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4714", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1664", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1664-00.jpg", + "image_is_video": "0", + "product_name": "5-pin JST SM Plug + Receptacle Cable Set", + "product_model": "", + "product_mpn": "ADA1664", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1664", + "product_stock": "51", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1665", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1665-00.jpg", + "image_is_video": "0", + "product_name": "6-pin JST SM Plug + Receptacle Cable Set", + "product_model": "", + "product_mpn": "ADA1665", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1665", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1663", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1663-00.jpg", + "image_is_video": "0", + "product_name": "3-pin JST SM Plug + Receptacle Cable Set", + "product_model": "", + "product_mpn": "ADA1663", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "8.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1663", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "578", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/578-02.jpg", + "image_is_video": "0", + "product_name": "4-pin JST SM Plug + Receptacle Cable Set", + "product_model": "", + "product_mpn": "ADA578", + "product_master_category": "598", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "9.7", + "product_url": "https:\/\/www.adafruit.com\/product\/578", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4978", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4978-07.jpg", + "image_is_video": "1", + "product_name": "NeoKey Socket Breakout for Mechanical Key Switches with NeoPixel", + "product_model": "For MX Compatible Switches", + "product_mpn": "ADA4978", + "product_master_category": "611", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4978", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4980", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4980-05.jpg", + "image_is_video": "1", + "product_name": "NeoKey 1x4 QT I2C - Four Mechanical Key Switches with NeoPixels", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4980", + "product_master_category": "611", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4980", + "product_stock": "0", + "products_hts": "8536.50.9031", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "5100", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5100-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit MACROPAD RP2040 Bare Bones - 3x4 Keys + Encoder + OLED", + "product_model": "", + "product_mpn": "ADA5100", + "product_master_category": "611", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "83.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5100", + "product_stock": "-4226", + "products_hts": "8536.50.9031", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5128", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/5128-08.jpg", + "image_is_video": "1", + "product_name": "Adafruit MacroPad RP2040 Starter Kit - 3x4 Keys + Encoder + OLED", + "product_model": "", + "product_mpn": "ADA5128", + "product_master_category": "611", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "148.8", + "product_url": "https:\/\/www.adafruit.com\/product\/5128", + "product_stock": "-4226", + "products_hts": "8536.50.9031", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5157", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5157-00.jpg", + "image_is_video": "0", + "product_name": "NeoKey 5x6 Ortho Snap-Apart Mechanical Key Switches w\/ NeoPixel", + "product_model": "For MX Compatible Switches", + "product_mpn": "ADA5157", + "product_master_category": "611", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "50.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5157", + "product_stock": "50", + "products_hts": "8536.50.9031", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3878", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3878-00.jpg", + "image_is_video": "0", + "product_name": "USB C to Micro B Cable - 3 ft 1 meter", + "product_model": "", + "product_mpn": "ADA3878", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3878", + "product_stock": "1", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3879", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3879-02.jpg", + "image_is_video": "0", + "product_name": "USB C to Micro B Cable - 1 ft 0.3 meter", + "product_model": "", + "product_mpn": "ADA3879", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3879", + "product_stock": "-10", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4175", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4175-07.jpg", + "image_is_video": "0", + "product_name": "USB A to USB C Adapter", + "product_model": "", + "product_mpn": "ADA4175", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4175", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4198", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4198-01.jpg", + "image_is_video": "0", + "product_name": "USB C to USB C Cable - USB 3.1 Gen 4 with E-Mark - 6\" long", + "product_model": "", + "product_mpn": "ADA4198", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "8.50", + "product_shipping_weight": "13.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4198", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4199", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4199-01.jpg", + "image_is_video": "0", + "product_name": "USB C to USB C Cable - USB 3.1 Gen 4 with E-Mark - 1 meter long", + "product_model": "", + "product_mpn": "ADA4199", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "47.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4199", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4218", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4218-03.jpg", + "image_is_video": "0", + "product_name": "USB C Round Panel Mount Extension Cable - 30cm", + "product_model": "", + "product_mpn": "ADA4218", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "31.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4218", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4331", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4331-01.jpg", + "image_is_video": "0", + "product_name": "FTDI Serial TTL-232 USB Type C Cable - 3V Power and Logic", + "product_model": "", + "product_mpn": "ADA4331", + "product_master_category": "612", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4331", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4364", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4364-01.jpg", + "image_is_video": "0", + "product_name": "FTDI Serial TTL-232 USB Type C Cable", + "product_model": "5V Power \/ 3.3V Logic", + "product_mpn": "ADA4364", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4364", + "product_stock": "87", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4396", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4396-03.jpg", + "image_is_video": "0", + "product_name": "USB Type C Socket - SMT Inline Breakout Board", + "product_model": "", + "product_mpn": "ADA4396", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4396", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4432", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4432-00.jpg", + "image_is_video": "0", + "product_name": "Right Angle USB Type C Adapter - USB 3.1 Gen 4 Compatible", + "product_model": "", + "product_mpn": "ADA4432", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "5.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4432", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4472", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4472-00.jpg", + "image_is_video": "0", + "product_name": "USB Type A to Type C Cable - 6\" long", + "product_model": "", + "product_mpn": "ADA4472", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "13.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4472", + "product_stock": "in stock", + "products_hts": "8544.42.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4473", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4473-02.jpg", + "image_is_video": "0", + "product_name": "USB Type A to Type C Cable - 1ft - 0.3 meter", + "product_model": "", + "product_mpn": "ADA4473", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "17.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4473", + "product_stock": "in stock", + "products_hts": "8544.42.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4474", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4474-02.jpg", + "image_is_video": "0", + "product_name": "USB Type A to Type C Cable - approx 1 meter \/ 3 ft long", + "product_model": "", + "product_mpn": "ADA4474", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4474", + "product_stock": "in stock", + "products_hts": "8544.42.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4536", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4536-03.jpg", + "image_is_video": "0", + "product_name": "2.1mm 5VDC Barrel Jack to USB C Adapter", + "product_model": "", + "product_mpn": "ADA4536", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "5.50", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4536", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.95", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4696", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4696-03.jpg", + "image_is_video": "0", + "product_name": "USB Type C Cable with Data\/Charge Switch", + "product_model": "1 meter long", + "product_mpn": "ADA4696", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4696", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4910", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4910-00.jpg", + "image_is_video": "0", + "product_name": "HDMI to USB-C Video Capture Adapter", + "product_model": "", + "product_mpn": "ADA4910", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "47.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4910", + "product_stock": "23", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5030", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5030-03.jpg", + "image_is_video": "0", + "product_name": "USB A Socket to USB Type C Plug Adapter", + "product_model": "", + "product_mpn": "ADA5030", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5030", + "product_stock": "43", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5031", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5031-02.jpg", + "image_is_video": "0", + "product_name": "Woven USB Cable with USB Type A to Right Angle USB Type C", + "product_model": "Black 1 meter long", + "product_mpn": "ADA5031", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "29.3", + "product_url": "https:\/\/www.adafruit.com\/product\/5031", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5044", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5044-04.jpg", + "image_is_video": "0", + "product_name": "Pink and Purple Woven USB A to USB C Cable - 2 meters long", + "product_model": "", + "product_mpn": "ADA5044", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "47.8", + "product_url": "https:\/\/www.adafruit.com\/product\/5044", + "product_stock": "28", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5045", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5045-04.jpg", + "image_is_video": "0", + "product_name": "Black Woven Right Angle USB C to USB A Cable - 0.2m long", + "product_model": "", + "product_mpn": "ADA5045", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "13.7", + "product_url": "https:\/\/www.adafruit.com\/product\/5045", + "product_stock": "0", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5153", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5153-02.jpg", + "image_is_video": "0", + "product_name": "Pink and Purple Woven USB A to USB C Cable - 1 meter long", + "product_model": "", + "product_mpn": "ADA5153", + "product_master_category": "612", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "29.3", + "product_url": "https:\/\/www.adafruit.com\/product\/5153", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "992", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/992-00.jpg", + "image_is_video": "0", + "product_name": "MPL115A2 - I2C Barometric Pressure\/Temperature Sensor", + "product_model": "", + "product_mpn": "ADA992", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/992", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2651", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2651-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit BMP280 I2C or SPI Barometric Pressure & Altitude Sensor", + "product_model": "STEMMA QT", + "product_mpn": "ADA2651", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2651", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2857", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2857-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Sensirion SHT31-D", + "product_model": "Temperature & Humidity Sensor", + "product_mpn": "ADA2857", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2857", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3251", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3251-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Si7021 Temperature & Humidity Sensor Breakout Board", + "product_model": "STEMMA QT", + "product_mpn": "ADA3251", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3251", + "product_stock": "in stock", + "products_hts": "9026.80.6000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3660", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3660-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit BME680 - Temperature, Humidity, Pressure and Gas Sensor", + "product_model": "STEMMA QT", + "product_mpn": "ADA3660", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "18.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3660", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4026", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4026-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit STEMMA Soil Sensor - I2C Capacitive Moisture Sensor", + "product_model": "", + "product_mpn": "ADA4026", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4026", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4089", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4089-00.jpg", + "image_is_video": "0", + "product_name": "ADT7410 High Accuracy I2C Temperature Sensor Breakout Board", + "product_model": "", + "product_mpn": "ADA4089", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4089", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4369", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4369-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit PCT2075 Temperature Sensor - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4369", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4369", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4375", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4375-03.jpg", + "image_is_video": "0", + "product_name": "Breadboard Friendly I2C Temperature Sensor - TC74A0", + "product_model": "TC74A0-5.0VAT", + "product_mpn": "ADA4375", + "product_master_category": "613", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4375", + "product_stock": "82", + "products_hts": "8542.39.0001", + "products_coo": "TH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4636", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4636-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Sensirion SHTC3 Temperature & Humidity Sensor", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4636", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4636", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4821", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4821-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit TMP117 \u00b10.1\u00b0C High Accuracy I2C Temperature Sensor", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4821", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "11.50", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4821", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4885", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4885-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Sensirion SHT40 Temperature & Humidity Sensor", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4885", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4885", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5027", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5027-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit MCP9808 High Accuracy I2C Temperature Sensor Breakout", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA5027", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/5027", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5046", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5046-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit BME688 - Temperature, Humidity, Pressure and Gas Sensor", + "product_model": "STEMMA QT", + "product_mpn": "ADA5046", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/5046", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "391", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/391-00.jpg", + "image_is_video": "0", + "product_name": "BMP085 Barometric Pressure\/Temperature\/Altitude Sensor- 5V ready", + "product_model": "", + "product_mpn": "ADA391", + "product_master_category": "613", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/391", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2635", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2635-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit HDC1008 Temperature & Humidity Sensor Breakout Board", + "product_model": "", + "product_mpn": "ADA2635", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2635", + "product_stock": "-3", + "products_hts": "9026.80.6000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1782", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1782-00.jpg", + "image_is_video": "0", + "product_name": "MCP9808 High Accuracy I2C Temperature Sensor Breakout Board", + "product_model": "", + "product_mpn": "ADA1782", + "product_master_category": "613", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1782", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "898", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/898-01.jpg", + "image_is_video": "0", + "product_name": "USB cable - 6\" A\/MicroB", + "product_model": "", + "product_mpn": "ADA898", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "14.3", + "product_url": "https:\/\/www.adafruit.com\/product\/898", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3030", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3030-00.jpg", + "image_is_video": "0", + "product_name": "Micro B USB 2-Way Y Splitter Cable", + "product_model": "", + "product_mpn": "ADA3030", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3030", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3388", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3388-06.jpg", + "image_is_video": "1", + "product_name": "Micro B USB Cable with LCD Voltage \/ Current Display", + "product_model": "", + "product_mpn": "ADA3388", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "49.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3388", + "product_stock": "90", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3439", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3439-01.jpg", + "image_is_video": "0", + "product_name": "USB Micro B Cable with Data\/Charge Sync Switch", + "product_model": "", + "product_mpn": "ADA3439", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "23.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3439", + "product_stock": "21", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3679", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3679-03.jpg", + "image_is_video": "0", + "product_name": "USB 3-in-1 Sync and Charge Cable - Micro B \/ Type-C \/ Lightning", + "product_model": "", + "product_mpn": "ADA3679", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "8.50", + "product_shipping_weight": "40.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3679", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4008", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4008-06.jpg", + "image_is_video": "0", + "product_name": "USB micro B Cable with LEDs - Blue and Red", + "product_model": "1 meter", + "product_mpn": "ADA4008", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "18.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4008", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4009", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4009-06.jpg", + "image_is_video": "0", + "product_name": "USB micro B Cable with LEDs - Blue and Green", + "product_model": "1 meter", + "product_mpn": "ADA4009", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "18.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4009", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4148", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4148-00.jpg", + "image_is_video": "0", + "product_name": "Pink and Purple Braided USB A to Micro B Cable - 2 meter long", + "product_model": "", + "product_mpn": "ADA4148", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "37.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4148", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4342", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4342-04.jpg", + "image_is_video": "1", + "product_name": "MakeCode Sync Cable - micro B USB to micro B USB", + "product_model": "1 meter long", + "product_mpn": "ADA4342", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4342", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1513", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1513-00.jpg", + "image_is_video": "0", + "product_name": "USB 'Noodle' Cable - A\/MicroB", + "product_model": "3ft", + "product_mpn": "ADA1513", + "product_master_category": "614", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "20.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1513", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "165", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/165-00.jpg", + "image_is_video": "0", + "product_name": "TMP36 - Analog Temperature sensor", + "product_model": "TMP36", + "product_mpn": "ADA165", + "product_master_category": "615", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/165", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "372", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/372-00.jpg", + "image_is_video": "0", + "product_name": "10K Precision Epoxy Thermistor", + "product_model": "3950 NTC", + "product_mpn": "ADA372", + "product_master_category": "615", + "product_manufacturer": null, + "product_price": "4.00", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/372", + "product_stock": "in stock", + "products_hts": "8533.40.80.70", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4686", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4686-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit TMP235 - Plug-and-Play STEMMA Analog Temperature Sensor", + "product_model": "TMP235", + "product_mpn": "ADA4686", + "product_master_category": "615", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4686", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4890", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4890-00.jpg", + "image_is_video": "0", + "product_name": "Ultra Thin 10K Thermistor - B3950 NTC", + "product_model": "", + "product_mpn": "ADA4890", + "product_master_category": "615", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4890", + "product_stock": "1", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "176", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/176-00.jpg", + "image_is_video": "0", + "product_name": "Sensor pack 900", + "product_model": "", + "product_mpn": "ADA176", + "product_master_category": "615", + "product_manufacturer": "Adafruit", + "product_price": "35.00", + "product_shipping_weight": "12.9", + "product_url": "https:\/\/www.adafruit.com\/product\/176", + "product_stock": "68", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "35.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "28.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5049", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5049-03.jpg", + "image_is_video": "0", + "product_name": "Gray Anodized Aluminum Bumper Feet - Pack of 2", + "product_model": "", + "product_mpn": "ADA5049", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5049", + "product_stock": "40", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5147", + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5050", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5050-03.jpg", + "image_is_video": "0", + "product_name": "Purple Anodized Aluminum Bumper Feet - Pack of 2", + "product_model": "", + "product_mpn": "ADA5050", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5050", + "product_stock": "31", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5147", + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5051", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5051-03.jpg", + "image_is_video": "0", + "product_name": "Black Anodized Aluminum Bumper Feet - Pack of 2", + "product_model": "", + "product_mpn": "ADA5051", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5051", + "product_stock": "23", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5147", + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5052", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5052-03.jpg", + "image_is_video": "0", + "product_name": "Red Anodized Aluminum Bumper Feet - Pack of 2", + "product_model": "", + "product_mpn": "ADA5052", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5052", + "product_stock": "36", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5147", + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5053", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5053-03.jpg", + "image_is_video": "0", + "product_name": "Green Anodized Aluminum Bumper Feet - Pack of 2", + "product_model": "", + "product_mpn": "ADA5053", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5053", + "product_stock": "37", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5147", + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5054", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5054-03.jpg", + "image_is_video": "0", + "product_name": "Blue Anodized Aluminum Bumper Feet - Pack of 2", + "product_model": "", + "product_mpn": "ADA5054", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5054", + "product_stock": "16", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5147", + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5055", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5055-03.jpg", + "image_is_video": "0", + "product_name": "Silver Anodized Aluminum Bumper Feet - Pack of 2", + "product_model": "", + "product_mpn": "ADA5055", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "16.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5055", + "product_stock": "38", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5147", + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5072", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5072-00.jpg", + "image_is_video": "0", + "product_name": "Purple Anodized Aluminum 60% \/ GH60 Keyboard Shell", + "product_model": "", + "product_mpn": "ADA5072", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "529.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5072", + "product_stock": "47", + "products_hts": "8538.90.8180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "59.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5082", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5082-00.jpg", + "image_is_video": "0", + "product_name": "Lavender Plastic 60% \/ GH60 Keyboard Shell", + "product_model": "", + "product_mpn": "ADA5082", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "170.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5082", + "product_stock": "10", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5083", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5083-00.jpg", + "image_is_video": "0", + "product_name": "Clear Plastic 60% \/ GH60 Keyboard Shell", + "product_model": "", + "product_mpn": "ADA5083", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "170.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5083", + "product_stock": "19", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5084", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5084-00.jpg", + "image_is_video": "0", + "product_name": "Translucent Smoke Plastic 60% \/ GH60 Keyboard Shell", + "product_model": "", + "product_mpn": "ADA5084", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "170.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5084", + "product_stock": "22", + "products_hts": "8483.60.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5103", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5103-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit MacroPad RP2040 Enclosure + Hardware Add-on Pack", + "product_model": "", + "product_mpn": "ADA5103", + "product_master_category": "617", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "34.7", + "product_url": "https:\/\/www.adafruit.com\/product\/5103", + "product_stock": "-97", + "products_hts": "8473.30.5100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1535", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1535-00.jpg", + "image_is_video": "0", + "product_name": "Bluefruit EZ-Key - 12 Input Bluetooth HID Keyboard Controller", + "product_model": "v1.2", + "product_mpn": "ADA1535", + "product_master_category": "618", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1535", + "product_stock": "in stock", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4208", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4208-02.jpg", + "image_is_video": "0", + "product_name": "JST SH 4-pin Right Angle Connector (10-pack)", + "product_model": "Qwiic Compatible", + "product_mpn": "ADA4208", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4208", + "product_stock": "76", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4209", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4209-10.jpg", + "image_is_video": "0", + "product_name": "STEMMA QT \/ Qwiic JST SH 4-pin to Premium Male Headers Cable", + "product_model": "150mm Long", + "product_mpn": "ADA4209", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4209", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4210", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4210-00.jpg", + "image_is_video": "0", + "product_name": "STEMMA QT \/ Qwiic JST SH 4-pin Cable - 100mm Long", + "product_model": "", + "product_mpn": "ADA4210", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4210", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4328", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4328-04.jpg", + "image_is_video": "0", + "product_name": "JST SH 4-pin Vertical Connector (10-pack)", + "product_model": "Qwiic Compatible", + "product_mpn": "ADA4328", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4328", + "product_stock": "17", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4397", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4397-02.jpg", + "image_is_video": "0", + "product_name": "STEMMA QT \/ Qwiic JST SH 4-pin Cable with Premium Female Sockets", + "product_model": "150mm Long", + "product_mpn": "ADA4397", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4397", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4398", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4398-01.jpg", + "image_is_video": "0", + "product_name": "JST SH 4-pin Cable with Alligator Clips - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4398", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4398", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4399", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4399-00.jpg", + "image_is_video": "0", + "product_name": "STEMMA QT \/ Qwiic JST SH 4-Pin Cable", + "product_model": "50mm Long", + "product_mpn": "ADA4399", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4399", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4401", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4401-01.jpg", + "image_is_video": "0", + "product_name": "STEMMA QT \/ Qwiic JST SH 4-Pin Cable - 200mm Long", + "product_model": "", + "product_mpn": "ADA4401", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4401", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4424", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4424-02.jpg", + "image_is_video": "0", + "product_name": "4-pin JST PH to JST SH Cable - STEMMA to QT \/ Qwiic", + "product_model": "200mm long", + "product_mpn": "ADA4424", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4424", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4483", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4483-03.jpg", + "image_is_video": "0", + "product_name": "5-pin (Arduino MKR) to 4-pin JST SH STEMMA QT \/ Qwiic Cable", + "product_model": "100mm long", + "product_mpn": "ADA4483", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4483", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4528", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4528-02.jpg", + "image_is_video": "0", + "product_name": "Grove to STEMMA QT \/ Qwiic \/ JST SH Cable", + "product_model": "100mm long", + "product_mpn": "ADA4528", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4528", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [] + }, + { + "product_id": "5037", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5037-02.jpg", + "image_is_video": "0", + "product_name": "JST-SH 4-pin Cable with Micro SMT Test Hooks", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA5037", + "product_master_category": "619", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5037", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4912", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4161", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4161-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit VCNL4040 Proximity and Lux Sensor - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4161", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4161", + "product_stock": "81", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4286", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4286-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit DS3502 I2C Digital 10K Potentiometer Breakout", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4286", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4286", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4314", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4314-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit ATECC608 Breakout Board - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4314", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4314", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4351", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4351-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Infineon Trust M Breakout Board - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4351", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4351", + "product_stock": "27", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4414", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4414-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit LPS33HW Water Resistant Pressure Sensor - STEMMA QT", + "product_model": "", + "product_mpn": "ADA4414", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4414", + "product_stock": "33", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4415", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4415-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini GPS PA1010D - UART and I2C - STEMMA QT", + "product_model": "", + "product_mpn": "ADA4415", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4415", + "product_stock": "in stock", + "products_hts": "8526.91.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4530", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4530-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit LPS25 Pressure Sensor - STEMMA QT \/ Qwiic", + "product_model": "LPS25HB", + "product_mpn": "ADA4530", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4530", + "product_stock": "82", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4570", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4570-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit DS1841 I2C Digital 10K Potentiometer Breakout", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4570", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4570", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4633", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4633-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit LPS22 Pressure Sensor - STEMMA QT \/ Qwiic", + "product_model": "LPS22HB", + "product_mpn": "ADA4633", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4633", + "product_stock": "46", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4756", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4756-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit LTC4311 I2C Extender \/ Active Terminator", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4756", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4756", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4808", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4808-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit EMC2101 I2C PC Fan Controller and Temperature Sensor", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4808", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "5.50", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4808", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.95", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4836", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4836-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit Wii Nunchuck Breakout Adapter", + "product_model": "Qwiic \/ STEMMA QT", + "product_mpn": "ADA4836", + "product_master_category": "620", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4836", + "product_stock": "64", + "products_hts": "8534.00.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4991", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4991-08.jpg", + "image_is_video": "1", + "product_name": "Adafruit I2C QT Rotary Encoder with NeoPixel - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4991", + "product_master_category": "620", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4991", + "product_stock": "0", + "products_hts": "8536.50.9031", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5146", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5146-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 24LC32 I2C EEPROM Breakout - 32Kbit \/ 4 KB - Stemma QT", + "product_model": "", + "product_mpn": "ADA5146", + "product_master_category": "620", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/5146", + "product_stock": "45", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4462", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4462-04.jpg", + "image_is_video": "0", + "product_name": "Binho Qwiic \/ Stemma QT Interface Board", + "product_model": "", + "product_mpn": "ADA4462", + "product_master_category": "621", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4462", + "product_stock": "10", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4471", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4471-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit MCP2221A Breakout - General Purpose USB to GPIO ADC I2C", + "product_model": "Stemma QT \/ Qwiic", + "product_mpn": "ADA4471", + "product_master_category": "621", + "product_manufacturer": "Adafruit", + "product_price": "6.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4471", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4515", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4515-05.jpg", + "image_is_video": "0", + "product_name": "SparkFun Qwiic \/ Stemma QT FeatherWing (Shield for Thing Plus)", + "product_model": "", + "product_mpn": "ADA4515", + "product_master_category": "621", + "product_manufacturer": "Sparkfun Electronics", + "product_price": "4.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4515", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4527", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4527-00.jpg", + "image_is_video": "0", + "product_name": "SparkFun STEMMA QT \/ Qwiic Adapter", + "product_model": "", + "product_mpn": "ADA4527", + "product_master_category": "621", + "product_manufacturer": "Sparkfun Electronics", + "product_price": "1.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4527", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4600", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4600-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit QT Py - SAMD21 Dev Board with STEMMA QT", + "product_model": "", + "product_mpn": "ADA4600", + "product_master_category": "621", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4600", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4861", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4861-05.jpg", + "image_is_video": "0", + "product_name": "SparkFun Qwiic Multiport", + "product_model": "", + "product_mpn": "ADA4861", + "product_master_category": "621", + "product_manufacturer": "Sparkfun Electronics", + "product_price": "2.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4861", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4970", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4970-00.jpg", + "image_is_video": "0", + "product_name": "I2CMini by Excamera Labs", + "product_model": "", + "product_mpn": "ADA4970", + "product_master_category": "621", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4970", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1969", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1969-01.jpg", + "image_is_video": "0", + "product_name": "Pogo Pin Probe Clip", + "product_model": "", + "product_mpn": "ADA1969", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1969", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2107", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2107-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit USB Isolator - 100mA Isolated Low\/Full Speed USB", + "product_model": "", + "product_mpn": "ADA2107", + "product_master_category": "634", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2107", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3313", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3313-04.jpg", + "image_is_video": "0", + "product_name": "Kelvin Clip", + "product_model": "", + "product_mpn": "ADA3313", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3313", + "product_stock": "91", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3523", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3523-00.jpg", + "image_is_video": "0", + "product_name": "Multifunction Basic Power Supply Test Line - Banana to Various", + "product_model": "", + "product_mpn": "ADA3523", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "48.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3523", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3823", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3823-00.jpg", + "image_is_video": "0", + "product_name": "Small PCB Test Points (100 pack) - Black", + "product_model": "", + "product_mpn": "ADA3823", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3823", + "product_stock": "53", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3824", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3824-00.jpg", + "image_is_video": "0", + "product_name": "Small PCB Test Points (100 pack) - White", + "product_model": "", + "product_mpn": "ADA3824", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3824", + "product_stock": "87", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3825", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3825-00.jpg", + "image_is_video": "0", + "product_name": "Small PCB Test Points (100 pack) - Red", + "product_model": "", + "product_mpn": "ADA3825", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3825", + "product_stock": "48", + "products_hts": "8536.90.8585", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3835", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3835-02.jpg", + "image_is_video": "0", + "product_name": "Arcade Button and Switch Quick-Connect Wires - 0.187\" (10-pack)", + "product_model": "", + "product_mpn": "ADA3835", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3835", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4322", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4322-01.jpg", + "image_is_video": "0", + "product_name": "Basic Multi-Color Micro SMT Test Hooks (6-pack)", + "product_model": "", + "product_mpn": "ADA4322", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "7.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4322", + "product_stock": "94", + "products_hts": "8533.40.8070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4460", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4460-03.jpg", + "image_is_video": "0", + "product_name": "Binho Breadboard Breakout", + "product_model": "", + "product_mpn": "ADA4460", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4460", + "product_stock": "10", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4841", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4841-02.jpg", + "image_is_video": "0", + "product_name": "OBD Plug (16-pin) to DE-9 (DB-9) Socket Adapter Cable", + "product_model": "1 meter long", + "product_mpn": "ADA4841", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "128.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4841", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "401", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/401-00.jpg", + "image_is_video": "0", + "product_name": "IC hook set (9 pcs)", + "product_model": "", + "product_mpn": "ADA401", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/401", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2456", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2456-05.jpg", + "image_is_video": "1", + "product_name": "Toggle Clamp - Medium Flip-up Style", + "product_model": "", + "product_mpn": "ADA2456", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "71.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2456", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2605", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2605-00.jpg", + "image_is_video": "0", + "product_name": "Pomona Minigrabber Test Clip to Stacking Banana Plug - 12\"", + "product_model": "Red", + "product_mpn": "ADA2605", + "product_master_category": "634", + "product_manufacturer": "Pomona", + "product_price": "7.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2605", + "product_stock": "-1", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2611", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2611-00.jpg", + "image_is_video": "0", + "product_name": "Pomona Minigrabber Test Clip to Stacking Banana Plug - 12\"", + "product_model": "Black", + "product_mpn": "ADA2611", + "product_master_category": "634", + "product_manufacturer": "Pomona", + "product_price": "6.95", + "product_shipping_weight": "13.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2611", + "product_stock": "-3", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2606", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2606-00.jpg", + "image_is_video": "0", + "product_name": "Pomona Minigrabber Test Clip to Stacking Banana Plug - 24\"", + "product_model": "Black", + "product_mpn": "ADA2606", + "product_master_category": "634", + "product_manufacturer": "Pomona", + "product_price": "7.95", + "product_shipping_weight": "16.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2606", + "product_stock": "-3", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2607", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2607-00.jpg", + "image_is_video": "0", + "product_name": "Pomona Minigrabber Test Clip to Stacking Banana Plug - 24\"", + "product_model": "Red", + "product_mpn": "ADA2607", + "product_master_category": "634", + "product_manufacturer": "Pomona", + "product_price": "7.95", + "product_shipping_weight": "16.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2607", + "product_stock": "-3", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2608", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2608-00.jpg", + "image_is_video": "0", + "product_name": "Pomona Minigrabber Test Clip to Stacking Banana Plug - 36\"", + "product_model": "Black", + "product_mpn": "ADA2608", + "product_master_category": "634", + "product_manufacturer": "Pomona", + "product_price": "7.50", + "product_shipping_weight": "19.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2608", + "product_stock": "-3", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2609", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2609-00.jpg", + "image_is_video": "0", + "product_name": "Pomona Minigrabber Test Clip to Stacking Banana Plug - 36\"", + "product_model": "Red", + "product_mpn": "ADA2609", + "product_master_category": "634", + "product_manufacturer": "Pomona", + "product_price": "7.50", + "product_shipping_weight": "19.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2609", + "product_stock": "-3", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2458", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2458-00.jpg", + "image_is_video": "0", + "product_name": "Fixture Clip - Short", + "product_model": "", + "product_mpn": "ADA2458", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2458", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2459", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2459-03.jpg", + "image_is_video": "1", + "product_name": "Toggle Clamp - Small Flip-down Style", + "product_model": "", + "product_mpn": "ADA2459", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "0.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2459", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2457", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2457-04.jpg", + "image_is_video": "1", + "product_name": "Toggle Clamp - Large Size", + "product_model": "201B", + "product_mpn": "ADA2457", + "product_master_category": "634", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "129.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2457", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "237", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/237-02.jpg", + "image_is_video": "0", + "product_name": "Bus Pirate - BPv3.6", + "product_model": "v3.6", + "product_mpn": "ADA237", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "30.00", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/237", + "product_stock": "80", + "products_hts": "542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "238", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/238-03.jpg", + "image_is_video": "0", + "product_name": "Bus pirate basic probe set", + "product_model": "", + "product_mpn": "ADA238", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "7.00", + "product_shipping_weight": "19.2", + "product_url": "https:\/\/www.adafruit.com\/product\/238", + "product_stock": "67", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "378", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/378-00.jpg", + "image_is_video": "0", + "product_name": "Saleae Logic - 8-Channel USB Logic Analyzer", + "product_model": "", + "product_mpn": "ADA378", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "149.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/378", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "149.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "134.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "119.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "708", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/708-02.jpg", + "image_is_video": "0", + "product_name": "Beagle USB 12 - Low\/Full Speed USB Protocol Analyzer + Sticker", + "product_model": "", + "product_mpn": "ADA708", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "495.00", + "product_shipping_weight": "252.3", + "product_url": "https:\/\/www.adafruit.com\/product\/708", + "product_stock": "16", + "products_hts": "9030.89.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "733", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/733-00.jpg", + "image_is_video": "0", + "product_name": "Saleae Logic 16 - 16-Channel USB Logic Analyzer", + "product_model": "", + "product_mpn": "ADA733", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "294.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/733", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2313", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2313-08.jpg", + "image_is_video": "0", + "product_name": "Saleae Logic Pro 8 - 8 Channels Logic + Analog - Black", + "product_model": "", + "product_mpn": "ADA2313", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "699.95", + "product_shipping_weight": "324.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2313", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4234", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4234-00.jpg", + "image_is_video": "0", + "product_name": "GreatFET One by Great Scott Gadgets", + "product_model": "", + "product_mpn": "ADA4234", + "product_master_category": "635", + "product_manufacturer": "Great Scott Gadgets", + "product_price": "99.95", + "product_shipping_weight": "50.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4234", + "product_stock": "42", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4267", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4267-04.jpg", + "image_is_video": "0", + "product_name": "I2CDriver by Excamera Labs", + "product_model": "", + "product_mpn": "ADA4267", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4267", + "product_stock": "in stock", + "products_hts": "8537.10.9170", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4268", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4268-04.jpg", + "image_is_video": "0", + "product_name": "SPIDriver by Excamera Labs", + "product_model": "", + "product_mpn": "ADA4268", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4268", + "product_stock": "44", + "products_hts": "8537.10.9170", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4459", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4459-07.jpg", + "image_is_video": "0", + "product_name": "Binho Nova Multi-Protocol USB Host Adapter", + "product_model": "", + "product_mpn": "ADA4459", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "229.00", + "product_shipping_weight": "131.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4459", + "product_stock": "12", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2512", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2512-04.jpg", + "image_is_video": "0", + "product_name": "Saleae Logic 8 - 8 Channels Logic + Analog - Black", + "product_model": "", + "product_mpn": "ADA2512", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "399.95", + "product_shipping_weight": "295.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2512", + "product_stock": "5", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2312", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2312-05.jpg", + "image_is_video": "0", + "product_name": "Saleae Logic 4 - 4 Channels Logic \/ 1 Channel Analog - Black", + "product_model": "", + "product_mpn": "ADA2312", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "109.00", + "product_shipping_weight": "244.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2312", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2431", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2431-01.jpg", + "image_is_video": "0", + "product_name": "Saleae Logic Pro 16 - 16 Channels Logic + Analog - Black", + "product_model": "", + "product_mpn": "ADA2431", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "999.95", + "product_shipping_weight": "544.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2431", + "product_stock": "-2", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1279", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1279-00.jpg", + "image_is_video": "0", + "product_name": "GoodFET v42 by Travis Goodspeed", + "product_model": "v4.2", + "product_mpn": "ADA1279", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1279", + "product_stock": "26", + "products_hts": "542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1550", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1550-02.jpg", + "image_is_video": "0", + "product_name": "JTAGulator by Grand Idea Studio", + "product_model": "", + "product_mpn": "ADA1550", + "product_master_category": "635", + "product_manufacturer": null, + "product_price": "174.95", + "product_shipping_weight": "52.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1550", + "product_stock": "8", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "969", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/969-05.jpg", + "image_is_video": "0", + "product_name": "Articulated Arm Stand for USB Microscope", + "product_model": "", + "product_mpn": "ADA969", + "product_master_category": "636", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "574.5", + "product_url": "https:\/\/www.adafruit.com\/product\/969", + "product_stock": "12", + "products_hts": "7616.99.5090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1345", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1345-06.jpg", + "image_is_video": "0", + "product_name": "TV Microscope - 25x & 400x magnification \/ 8 LEDs", + "product_model": "", + "product_mpn": "ADA1345", + "product_master_category": "636", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "382.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1345", + "product_stock": "-3", + "products_hts": "9011.80.0000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1276", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1276-00.jpg", + "image_is_video": "0", + "product_name": "WiFi Portable Microscope - Usable With Android\/iPad\/iPhone", + "product_model": "", + "product_mpn": "ADA1276", + "product_master_category": "636", + "product_manufacturer": null, + "product_price": "199.95", + "product_shipping_weight": "463.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1276", + "product_stock": "-3", + "products_hts": "9011.80.0000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "199.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "179.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "159.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1061", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1061-05.jpg", + "image_is_video": "0", + "product_name": "Aluminum USB Microscope with Precision Stand", + "product_model": "", + "product_mpn": "ADA1061", + "product_master_category": "636", + "product_manufacturer": null, + "product_price": "109.95", + "product_shipping_weight": "536.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1061", + "product_stock": "-3", + "products_hts": "9011.80.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "109.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "98.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "87.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "636", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/636-02.jpg", + "image_is_video": "0", + "product_name": "USB Microscope - 5MP interpolated 220x magnification \/ 8 LEDs", + "product_model": "", + "product_mpn": "ADA636", + "product_master_category": "636", + "product_manufacturer": null, + "product_price": "79.95", + "product_shipping_weight": "326.1", + "product_url": "https:\/\/www.adafruit.com\/product\/636", + "product_stock": "-3", + "products_hts": "9011.80.0000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2034", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2034-01.jpg", + "image_is_video": "0", + "product_name": "Digital Multimeter - Model 9205B+", + "product_model": "", + "product_mpn": "ADA2034", + "product_master_category": "637", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "367.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2034", + "product_stock": "in stock", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2610", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2610-02.jpg", + "image_is_video": "0", + "product_name": "Fluke 87V Industrial Multimeter", + "product_model": "", + "product_mpn": "ADA2610", + "product_master_category": "637", + "product_manufacturer": "Fluke", + "product_price": "449.95", + "product_shipping_weight": "970.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2610", + "product_stock": "-3", + "products_hts": "9030.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4774", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4774-01.jpg", + "image_is_video": "0", + "product_name": "Miniware DT71 Mini Digital Tweezers", + "product_model": "", + "product_mpn": "ADA4774", + "product_master_category": "637", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "131.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4774", + "product_stock": "in stock", + "products_hts": "8533.90.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2615", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2615-00.jpg", + "image_is_video": "0", + "product_name": "PM51A - Amprobe Pocket Autoranging Digital Multimeter", + "product_model": "", + "product_mpn": "ADA2615", + "product_master_category": "637", + "product_manufacturer": "Fluke", + "product_price": "39.95", + "product_shipping_weight": "196.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2615", + "product_stock": "0", + "products_hts": "9030.31.0000", + "products_coo": "TW", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1360", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1360-00.jpg", + "image_is_video": "0", + "product_name": "Autoranging Digital Multimeter Pen", + "product_model": "MS8211D", + "product_mpn": "ADA1360", + "product_master_category": "637", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "305.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1360", + "product_stock": "-3", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1359", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1359-00.jpg", + "image_is_video": "0", + "product_name": "SMD Component Testing Tweezers", + "product_model": "", + "product_mpn": "ADA1359", + "product_master_category": "637", + "product_manufacturer": null, + "product_price": "27.95", + "product_shipping_weight": "152.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1359", + "product_stock": "in stock", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "850", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/850-10.jpg", + "image_is_video": "0", + "product_name": "Pocket Autoranging Digital Multimeter", + "product_model": "", + "product_mpn": "ADA850", + "product_master_category": "637", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "158.3", + "product_url": "https:\/\/www.adafruit.com\/product\/850", + "product_stock": "22", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "308", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/308-00.jpg", + "image_is_video": "0", + "product_name": "Extech EX330 12-function autoranging multimeter", + "product_model": "EX330", + "product_mpn": "ADA308", + "product_master_category": "637", + "product_manufacturer": "Extech", + "product_price": "74.95", + "product_shipping_weight": "488.5", + "product_url": "https:\/\/www.adafruit.com\/product\/308", + "product_stock": "49", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4652", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4652-14.jpg", + "image_is_video": "0", + "product_name": "Digilent Analog Discovery 2 USB Oscilloscope and Logic Analyzer", + "product_model": "", + "product_mpn": "ADA4652", + "product_master_category": "638", + "product_manufacturer": null, + "product_price": "399.95", + "product_shipping_weight": "334.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4652", + "product_stock": "in stock", + "products_hts": "9030.89.0100", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1528", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1528-03.jpg", + "image_is_video": "0", + "product_name": "Oscilloscope Probe 100MHz", + "product_model": "", + "product_mpn": "ADA1528", + "product_master_category": "638", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "66.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1528", + "product_stock": "29", + "products_hts": "9030.89.0100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1987", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1987-03.jpg", + "image_is_video": "0", + "product_name": "1 GS\/s 100MHz Digital Storage Oscilloscope + Extras - DS1102E", + "product_model": "DS1102E", + "product_mpn": "ADA1987", + "product_master_category": "638", + "product_manufacturer": null, + "product_price": "449.95", + "product_shipping_weight": "3,403.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1987", + "product_stock": "-3", + "products_hts": "9030.89.0100", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2053", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2053-00.jpg", + "image_is_video": "0", + "product_name": "BitScope Micro USB", + "product_model": "", + "product_mpn": "ADA2053", + "product_master_category": "638", + "product_manufacturer": null, + "product_price": "145.00", + "product_shipping_weight": "115.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2053", + "product_stock": "0", + "products_hts": "9030.89.0100", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2145", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2145-04.jpg", + "image_is_video": "0", + "product_name": "1 GS\/s 50 MHz 4-channel Digital Oscilloscope - Rigol DS1054Z", + "product_model": "Rigol DS1054Z", + "product_mpn": "ADA2145", + "product_master_category": "638", + "product_manufacturer": null, + "product_price": "449.00", + "product_shipping_weight": "4,447.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2145", + "product_stock": "3", + "products_hts": "9030.89.0100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "468", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/468-06.jpg", + "image_is_video": "0", + "product_name": "DSO Nano v3 - Pocket-size color digital oscilloscope", + "product_model": "v3.0", + "product_mpn": "ADA468", + "product_master_category": "638", + "product_manufacturer": "SeeedStudio", + "product_price": "99.95", + "product_shipping_weight": "179.1", + "product_url": "https:\/\/www.adafruit.com\/product\/468", + "product_stock": "66", + "products_hts": "9030.89.0100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "681", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/681-06.jpg", + "image_is_video": "0", + "product_name": "1 GS\/s 50MHz Digital Storage Oscilloscope - Rigol DS1052E", + "product_model": "Rigol DS1052E", + "product_mpn": "ADA681", + "product_master_category": "638", + "product_manufacturer": null, + "product_price": "394.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/681", + "product_stock": "-3", + "products_hts": "9030.89.0100", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "705", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/705-04.jpg", + "image_is_video": "0", + "product_name": "Mini 3-wire Volt Meter (0 - 99.9VDC)", + "product_model": "", + "product_mpn": "ADA705", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/705", + "product_stock": "in stock", + "products_hts": "9030.33.3800", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "882", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/882-00.jpg", + "image_is_video": "0", + "product_name": "EEVblog uCurrent - Precision nA Current Measurement Assistant", + "product_model": "v3", + "product_mpn": "ADA882", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/882", + "product_stock": "-3", + "products_hts": "9030.31.0000", + "products_coo": "AU", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3624", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3624-06.jpg", + "image_is_video": "1", + "product_name": "Mini Power Meter with Voltage, Current, Watts, mAh & mWh Display", + "product_model": "", + "product_mpn": "ADA3624", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3624", + "product_stock": "in stock", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3626", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3626-03.jpg", + "image_is_video": "1", + "product_name": "Large Panel-Mount Digital Power Meter - 6.5V to 100VDC up to 20A", + "product_model": "", + "product_mpn": "ADA3626", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "78.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3626", + "product_stock": "85", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1456", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1456-04.jpg", + "image_is_video": "0", + "product_name": "FriedCircuits USB Tester v2.0", + "product_model": "", + "product_mpn": "ADA1456", + "product_master_category": "639", + "product_manufacturer": "FriedCircuits", + "product_price": "11.95", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1456", + "product_stock": "3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1549", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1549-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit USB Power Gauge Mini-Kit", + "product_model": "", + "product_mpn": "ADA1549", + "product_master_category": "639", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1549", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "576", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/576-00.jpg", + "image_is_video": "0", + "product_name": "Panel Temperature Meter \/ -30 to +70 \u00b0C", + "product_model": "", + "product_mpn": "ADA576", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/576", + "product_stock": "31", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2014", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2014-02.jpg", + "image_is_video": "0", + "product_name": "Triple Output 195 Watt Power Supply - 30V, 30V, 5V @ 3A - DP832", + "product_model": "", + "product_mpn": "ADA2014", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "545.95", + "product_shipping_weight": "13,400.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2014", + "product_stock": "8", + "products_hts": "9030.89.0100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "574", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/574-00.jpg", + "image_is_video": "0", + "product_name": "Panel Current Meter - 0 to 9.99A", + "product_model": "", + "product_mpn": "ADA574", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "25.4", + "product_url": "https:\/\/www.adafruit.com\/product\/574", + "product_stock": "in stock", + "products_hts": "9030.33.3800", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "575", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/575-04.jpg", + "image_is_video": "0", + "product_name": "Panel Volt Meter - 4.5V to 30VDC", + "product_model": "", + "product_mpn": "ADA575", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "18.5", + "product_url": "https:\/\/www.adafruit.com\/product\/575", + "product_stock": "in stock", + "products_hts": "9030.33.3800", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "460", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/460-04.jpg", + "image_is_video": "0", + "product_name": "Mini 2-wire Volt Meter (3.2 - 30 VDC)", + "product_model": "", + "product_mpn": "ADA460", + "product_master_category": "639", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/460", + "product_stock": "23", + "products_hts": "9030.33.3800", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3886", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3886-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit MPU-6050 6-DoF Accel and Gyro Sensor - STEMMA QT Qwiic", + "product_model": "", + "product_mpn": "ADA3886", + "product_master_category": "640", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3886", + "product_stock": "22", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4438", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4438-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit LSM6DSOX 6 DoF Accelerometer and Gyroscope", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4438", + "product_master_category": "640", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4438", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4464", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4464-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit ICM-20649 Wide Range \u00b130g \u00b14000dps 6-DoF IMU", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4464", + "product_master_category": "640", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4464", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4480", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4480-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit LSM6DS33 6-DoF Accel + Gyro IMU", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4480", + "product_master_category": "640", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4480", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4502", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4502-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit ISM330DHCX - 6 DoF IMU - Accelerometer and Gyroscope", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4502", + "product_master_category": "640", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4502", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4692", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4692-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit LSM6DSO32 6-DoF Accelerometer and Gyroscope", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4692", + "product_master_category": "640", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4692", + "product_stock": "50", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1604", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1604-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit 10-DOF IMU Breakout - L3GD20H + LSM303 + BMP180", + "product_model": "", + "product_mpn": "ADA1604", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "5.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1604", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2020", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2020-02.jpg", + "image_is_video": "0", + "product_name": "FLORA 9-DOF Accelerometer\/Gyroscope\/Magnetometer - LSM9DS0", + "product_model": "v1.0", + "product_mpn": "ADA2020", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2020", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2021", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2021-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 9-DOF Accel\/Mag\/Gyro+Temp Breakout Board - LSM9DS0", + "product_model": "", + "product_mpn": "ADA2021", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2021", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2472", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2472-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit 9-DOF Absolute Orientation IMU Fusion Breakout - BNO055", + "product_model": "", + "product_mpn": "ADA2472", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2472", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3085", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3085-00.jpg", + "image_is_video": "0", + "product_name": "PJRC Prop Shield with Motion Sensor for Teensy 3.2 and Teensy-LC", + "product_model": "", + "product_mpn": "ADA3085", + "product_master_category": "641", + "product_manufacturer": null, + "product_price": "22.50", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3085", + "product_stock": "-1", + "products_hts": "8543.90.1500", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3387", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3387-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 9-DOF Accel\/Mag\/Gyro+Temp Breakout Board - LSM9DS1", + "product_model": "", + "product_mpn": "ADA3387", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "5.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3387", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3463", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3463-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit Precision NXP 9-DOF Breakout Board", + "product_model": "FXOS8700 + FXAS21002", + "product_mpn": "ADA3463", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3463", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4485", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4485-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit LSM6DS33 + LIS3MDL - 9 DoF IMU with Accel \/ Gyro \/ Mag", + "product_model": "STEMMA QT Qwiic", + "product_mpn": "ADA4485", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4485", + "product_stock": "67", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4517", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4517-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit LSM6DSOX + LIS3MDL - Precision 9 DoF IMU", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4517", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4517", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4554", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4554-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit TDK InvenSense ICM-20948 9-DoF IMU (MPU-9250 Upgrade)", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4554", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4554", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4565", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4565-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit LSM6DSOX + LIS3MDL FeatherWing - Precision 9-DoF IMU", + "product_model": "", + "product_mpn": "ADA4565", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4565", + "product_stock": "1", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4569", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4569-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit ISM330DHCX + LIS3MDL FeatherWing", + "product_model": "High Precision 9-DoF IMU", + "product_mpn": "ADA4569", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4569", + "product_stock": "-1", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4634", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4634-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit 9-DOF LSM9DS1 Breakout Board - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4634", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4634", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4646", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4646-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 9-DOF Absolute Orientation IMU Fusion Breakout - BNO055", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4646", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4646", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4754", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4754-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 9-DOF Orientation IMU Fusion Breakout - BNO085 (BNO080)", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4754", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4754", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1714", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1714-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit 9-DOF IMU Breakout - L3GD20H + LSM303", + "product_model": "", + "product_mpn": "ADA1714", + "product_master_category": "641", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "5.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1714", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "158", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/158-00.jpg", + "image_is_video": "0", + "product_name": "Hall effect sensor", + "product_model": "US5881LUA", + "product_mpn": "ADA158", + "product_master_category": "677", + "product_manufacturer": null, + "product_price": "2.00", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/158", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.75", + "discounted_percent": "13", + "show_qty": "10-49", + "min_qty": 10 + }, + { + "discounted_price": "1.50", + "discounted_percent": "25", + "show_qty": "50+", + "min_qty": 50 + } + ] + }, + { + "product_id": "375", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/375-01.jpg", + "image_is_video": "0", + "product_name": "Magnetic contact switch (door sensor)", + "product_model": "", + "product_mpn": "ADA375", + "product_master_category": "677", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "11.6", + "product_url": "https:\/\/www.adafruit.com\/product\/375", + "product_stock": "in stock", + "products_hts": "8505.11.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4680", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4680-03.jpg", + "image_is_video": "1", + "product_name": "Alternating Multi Pole Magnetic Strip - 1 meter long", + "product_model": "", + "product_mpn": "ADA4680", + "product_master_category": "677", + "product_manufacturer": null, + "product_price": "47.50", + "product_shipping_weight": "90.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4680", + "product_stock": "36", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "47.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "42.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "38.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "9", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/9-01.jpg", + "image_is_video": "0", + "product_name": "High-strength 'rare earth' magnet", + "product_model": "", + "product_mpn": "ADA9", + "product_master_category": "677", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/9", + "product_stock": "in stock", + "products_hts": "8505.11.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "269", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/269-04.jpg", + "image_is_video": "0", + "product_name": "Thermocouple Amplifier MAX31855 breakout board (MAX6675 upgrade)", + "product_model": "", + "product_mpn": "ADA269", + "product_master_category": "679", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/269", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "270", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/270-02.jpg", + "image_is_video": "0", + "product_name": "Thermocouple Type-K Glass Braid Insulated", + "product_model": "K", + "product_mpn": "ADA270", + "product_master_category": "679", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/270", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1778", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1778-00.jpg", + "image_is_video": "0", + "product_name": "Analog Output K-Type Thermocouple Amplifier - AD8495 Breakout", + "product_model": "", + "product_mpn": "ADA1778", + "product_master_category": "679", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1778", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3081", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3081-01.jpg", + "image_is_video": "0", + "product_name": "Pax Instruments T400 Temperature Datalogger Set", + "product_model": "", + "product_mpn": "ADA3081", + "product_master_category": "679", + "product_manufacturer": "Pax Instruments", + "product_price": "175.00", + "product_shipping_weight": "409.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3081", + "product_stock": "0", + "products_hts": "9025.80.40 00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3245", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3245-02.jpg", + "image_is_video": "0", + "product_name": "Thermocouple Type-K Glass Braid Insulated Stainless Steel Tip", + "product_model": "", + "product_mpn": "ADA3245", + "product_master_category": "679", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3245", + "product_stock": "in stock", + "products_hts": "8543.89.96", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3263", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3263-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Universal Thermocouple Amplifier MAX31856 Breakout", + "product_model": "", + "product_mpn": "ADA3263", + "product_master_category": "679", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3263", + "product_stock": "-10", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3895", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3895-02.jpg", + "image_is_video": "0", + "product_name": "Thermocouple Type-K Glass Braid Insulated - 5m", + "product_model": "", + "product_mpn": "ADA3895", + "product_master_category": "679", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "13.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3895", + "product_stock": "79", + "products_hts": "9025.90.0600", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4101", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4101-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit MCP9600 I2C Thermocouple Amplifier", + "product_model": "K, J, T, N, S, E, B and R Type T", + "product_mpn": "ADA4101", + "product_master_category": "679", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4101", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1727", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1727-00.jpg", + "image_is_video": "0", + "product_name": "Thermocouple Amplifier with 1-Wire Breakout Board - MAX31850K", + "product_model": "", + "product_mpn": "ADA1727", + "product_master_category": "679", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1727", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "163", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/163-02.jpg", + "image_is_video": "0", + "product_name": "ADXL335 - 5V ready triple-axis accelerometer (+-3g analog out)", + "product_model": "", + "product_mpn": "ADA163", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/163", + "product_stock": "68", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "345", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/345-03.jpg", + "image_is_video": "0", + "product_name": "Nunchucky (Wii Nunchuck breakout adapter)", + "product_model": "", + "product_mpn": "ADA345", + "product_master_category": "682", + "product_manufacturer": null, + "product_price": "3.00", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/345", + "product_stock": "0", + "products_hts": "534.00.0040", + "products_coo": "CA", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.70", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1018", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1018-00.jpg", + "image_is_video": "0", + "product_name": "ADXL326 - 5V ready triple-axis accelerometer (+-16g analog out)", + "product_model": "", + "product_mpn": "ADA1018", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "17.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1018", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1120", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1120-00.jpg", + "image_is_video": "0", + "product_name": "Triple-axis Accelerometer+Magnetometer (Compass) Board - LSM303", + "product_model": "", + "product_mpn": "ADA1120", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1120", + "product_stock": "57", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1231", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1231-00.jpg", + "image_is_video": "0", + "product_name": "ADXL345 - Triple-Axis Accelerometer (+-2g\/4g\/8g\/16g) w\/ I2C\/SPI", + "product_model": "", + "product_mpn": "ADA1231", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1231", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1247", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1247-00.jpg", + "image_is_video": "0", + "product_name": "FLORA Accelerometer\/Compass Sensor - LSM303", + "product_model": "v1.0", + "product_mpn": "ADA1247", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1247", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1413", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1413-00.jpg", + "image_is_video": "0", + "product_name": "ADXL377 - High-G Triple-Axis Accelerometer (+-200g Analog Out)", + "product_model": "", + "product_mpn": "ADA1413", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1413", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2019", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2019-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Triple-Axis Accelerometer - \u00b12\/4\/8g @ 14-bit - MMA8451", + "product_model": "", + "product_mpn": "ADA2019", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "3.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2019", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2738", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2738-00.jpg", + "image_is_video": "1", + "product_name": "Raspberry Pi Sense HAT - any Raspberry Pi with 2x20 Connector", + "product_model": "", + "product_mpn": "ADA2738", + "product_master_category": "682", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "39.95", + "product_shipping_weight": "45.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2738", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2809", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2809-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit LIS3DH Triple-Axis Accelerometer (+-2g\/4g\/8g\/16g)", + "product_model": "", + "product_mpn": "ADA2809", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2809", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4097", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4097-03.jpg", + "image_is_video": "0", + "product_name": "ADXL343 - Triple-Axis Accelerometer (+-2g\/4g\/8g\/16g) w\/ I2C\/SPI", + "product_model": "", + "product_mpn": "ADA4097", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4097", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4344", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4344-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit MSA301 Triple Axis Accelerometer - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4344", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "4.50", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4344", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4626", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4626-11.jpg", + "image_is_video": "0", + "product_name": "Adafruit LIS331 Triple-Axis Wide-Range \u00b124g Accelerometer", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4626", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4626", + "product_stock": "27", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4627", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4627-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit H3LIS331 Ultra High Range Triple-Axis Accelerometer", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4627", + "product_master_category": "682", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4627", + "product_stock": "17", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1032", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1032-03.jpg", + "image_is_video": "0", + "product_name": "L3GD20H Triple-Axis Gyro Breakout Board - L3GD20\/L3G4200 Upgrade", + "product_model": "L3GD20H", + "product_mpn": "ADA1032", + "product_master_category": "683", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1032", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1746", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1746-00.jpg", + "image_is_video": "0", + "product_name": "Triple-axis Magnetometer (Compass) Board - HMC5883L", + "product_model": "", + "product_mpn": "ADA1746", + "product_master_category": "684", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1746", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4022", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4022-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit Wide-Range Triple-axis Magnetometer - MLX90393", + "product_model": "STEMMA QT", + "product_mpn": "ADA4022", + "product_master_category": "684", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4022", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4366", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4366-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit TLV493D Triple-Axis Magnetometer - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4366", + "product_master_category": "684", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4366", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4413", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4413-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit LSM303AGR Accelerometer Magnetometer - STEMMA QT Qwiic", + "product_model": "", + "product_mpn": "ADA4413", + "product_master_category": "684", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4413", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4479", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4479-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Triple-axis Magnetometer - LIS3MDL", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4479", + "product_master_category": "684", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4479", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4488", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4488-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Triple-axis Magnetometer - LIS2MDL", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4488", + "product_master_category": "684", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4488", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3846", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3846-02.jpg", + "image_is_video": "0", + "product_name": "High Temp Waterproof DS18B20 Digital Temperature Sensor", + "product_model": "3m long", + "product_mpn": "ADA3846", + "product_master_category": "685", + "product_manufacturer": null, + "product_price": "21.95", + "product_shipping_weight": "79.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3846", + "product_stock": "-10", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1020", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1020-00.jpg", + "image_is_video": "0", + "product_name": "Food-Grade Heat Shrink - 3\/8\" diameter 12\" long", + "product_model": "", + "product_mpn": "ADA1020", + "product_master_category": "685", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1020", + "product_stock": "5", + "products_hts": "3926.90.9880", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "374", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/374-00.jpg", + "image_is_video": "0", + "product_name": "DS18B20 Digital temperature sensor + extras", + "product_model": "", + "product_mpn": "ADA374", + "product_master_category": "685", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/374", + "product_stock": "0", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "642", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/642-00.jpg", + "image_is_video": "0", + "product_name": "High Temp Waterproof DS18B20 Digital temperature sensor + extras", + "product_model": "", + "product_mpn": "ADA642", + "product_master_category": "685", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/642", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "381", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/381-00.jpg", + "image_is_video": "0", + "product_name": "Waterproof 1-Wire DS18B20 Compatible Digital temperature sensor", + "product_model": "", + "product_mpn": "ADA381", + "product_master_category": "685", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "25.2", + "product_url": "https:\/\/www.adafruit.com\/product\/381", + "product_stock": "62", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3942", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3942-04.jpg", + "image_is_video": "1", + "product_name": "HC-SR04 Ultrasonic Sonar Distance Sensor + 2 x 10K resistors", + "product_model": "", + "product_mpn": "ADA3942", + "product_master_category": "686", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "10.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3942", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4007", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4007-00.jpg", + "image_is_video": "0", + "product_name": "Ultrasonic Distance Sensor - 3V or 5V - HC-SR04 compatible", + "product_model": "RCWL-1601", + "product_mpn": "ADA4007", + "product_master_category": "686", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4007", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4019", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4019-03.jpg", + "image_is_video": "1", + "product_name": "US-100 Ultrasonic Distance Sensor - 3V or 5V Logic", + "product_model": "", + "product_mpn": "ADA4019", + "product_master_category": "686", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "10.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4019", + "product_stock": "in stock", + "products_hts": "9026.80.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4664", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4664-05.jpg", + "image_is_video": "1", + "product_name": "Large Ultrasonic (Sonar) Sensor with Horn and UART Output", + "product_model": "", + "product_mpn": "ADA4664", + "product_master_category": "686", + "product_manufacturer": null, + "product_price": "28.95", + "product_shipping_weight": "37.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4664", + "product_stock": "29", + "products_hts": "9026.80.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "28.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4665", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4665-04.jpg", + "image_is_video": "1", + "product_name": "Panel Mount Ultrasonic (Sonar) Ranging Module with UART Output", + "product_model": "", + "product_mpn": "ADA4665", + "product_master_category": "686", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "39.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4665", + "product_stock": "in stock", + "products_hts": "9026.80.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1343", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1343-00.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder - HR-USB-EZ1", + "product_model": "MB1413", + "product_mpn": "ADA1343", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "49.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1343", + "product_stock": "75", + "products_hts": "9015.10.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "980", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/980-00.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder - LV-EZ2", + "product_model": "LV-EZ2", + "product_mpn": "ADA980", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "24.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/980", + "product_stock": "19", + "products_hts": "9015.10", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "981", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/981-00.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder", + "product_model": "LV-EZ3", + "product_mpn": "ADA981", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "24.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/981", + "product_stock": "23", + "products_hts": "9015.10", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "984", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/984-02.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder - HRLV-EZ1", + "product_model": "HRLV-EZ1", + "product_mpn": "ADA984", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "32.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/984", + "product_stock": "28", + "products_hts": "9015.10", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "32.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "985", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/985-02.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder - HRLV-EZ4", + "product_model": "HRLV-EZ4", + "product_mpn": "ADA985", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "32.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/985", + "product_stock": "48", + "products_hts": "9015.10", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "32.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "983", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/983-02.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder - HRLV-EZ0", + "product_model": "HRLV-EZ0", + "product_mpn": "ADA983", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "33.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/983", + "product_stock": "5", + "products_hts": "9015.10", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "33.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "30.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "979", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/979-00.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder - LV-EZ0", + "product_model": "LV-EZ0", + "product_mpn": "ADA979", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "26.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/979", + "product_stock": "87", + "products_hts": "9015.10", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "26.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "21.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "982", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/982-00.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder - LV-EZ4", + "product_model": "LV-EZ4", + "product_mpn": "ADA982", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "24.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/982", + "product_stock": "in stock", + "products_hts": "9015.10", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1137", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1137-03.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Weather-Resistant Ultrasonic Rangefinder", + "product_model": "MB7092 XL-MaxSonar-WRMA1", + "product_mpn": "ADA1137", + "product_master_category": "686", + "product_manufacturer": "Maxbotix", + "product_price": "84.95", + "product_shipping_weight": "56.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1137", + "product_stock": "26", + "products_hts": "9015.10", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "172", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/172-00.jpg", + "image_is_video": "0", + "product_name": "Maxbotix Ultrasonic Rangefinder - LV-EZ1", + "product_model": "LV-EZ1", + "product_mpn": "ADA172", + "product_master_category": "686", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/172", + "product_stock": "90", + "products_hts": "9015.10.4000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3290", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3290-01.jpg", + "image_is_video": "0", + "product_name": "Platinum RTD Sensor - PT100 - 3 Wire 1 meter long", + "product_model": "", + "product_mpn": "ADA3290", + "product_master_category": "687", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "21.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3290", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3328", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3328-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PT100 RTD Temperature Sensor Amplifier - MAX31865", + "product_model": "", + "product_mpn": "ADA3328", + "product_master_category": "687", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3328", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3648", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3648-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit PT1000 RTD Temperature Sensor Amplifier - MAX31865", + "product_model": "", + "product_mpn": "ADA3648", + "product_master_category": "687", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3648", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3984", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3984-02.jpg", + "image_is_video": "0", + "product_name": "Platinum RTD Sensor - PT1000 - 3 Wire 1 meter long", + "product_model": "", + "product_mpn": "ADA3984", + "product_master_category": "687", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "22.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3984", + "product_stock": "in stock", + "products_hts": "9026.80.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "466", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/466-02.jpg", + "image_is_video": "0", + "product_name": "VCNL4010 Proximity\/Light sensor", + "product_model": "", + "product_mpn": "ADA466", + "product_master_category": "689", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/466", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1568", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1568-00.jpg", + "image_is_video": "0", + "product_name": "IR Distance Sensor - Includes Cable (100cm-500cm)", + "product_model": "GP2Y0A710K0F", + "product_mpn": "ADA1568", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "13.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1568", + "product_stock": "17", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3025", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3025-00.jpg", + "image_is_video": "0", + "product_name": "Sharp GP2Y0D805Z0F Digital Distance Sensor with Pololu Carrier", + "product_model": "0.5 cm to 5 cm", + "product_mpn": "ADA3025", + "product_master_category": "689", + "product_manufacturer": "Pololu", + "product_price": "11.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3025", + "product_stock": "in stock", + "products_hts": "9015.10.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3316", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3316-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit VL6180X Time of Flight Distance Ranging Sensor (VL6180)", + "product_model": "STEMMA QT", + "product_mpn": "ADA3316", + "product_master_category": "689", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3316", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3317", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3317-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit VL53L0X Time of Flight Distance Sensor - ~30 to 1000mm", + "product_model": "", + "product_mpn": "ADA3317", + "product_master_category": "689", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3317", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3595", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3595-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit APDS9960 Proximity, Light, RGB, and Gesture Sensor", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA3595", + "product_master_category": "689", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3595", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3978", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3978-04.jpg", + "image_is_video": "0", + "product_name": "TFmini Infrared Time of Flight Distance Sensor", + "product_model": "", + "product_mpn": "ADA3978", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3978", + "product_stock": "-7", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4010", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4010-07.jpg", + "image_is_video": "0", + "product_name": "Slamtec RPLIDAR A1 - 360 Laser Range Scanner", + "product_model": "", + "product_mpn": "ADA4010", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "99.95", + "product_shipping_weight": "375.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4010", + "product_stock": "1", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4058", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4058-01.jpg", + "image_is_video": "0", + "product_name": "Garmin LIDAR-Lite Optical Distance Sensor - V3", + "product_model": "", + "product_mpn": "ADA4058", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "129.95", + "product_shipping_weight": "36.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4058", + "product_stock": "48", + "products_hts": "8473.30.9100", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4441", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4441-02.jpg", + "image_is_video": "0", + "product_name": "Garmin LIDAR-Lite Optical Distance LED Sensor", + "product_model": "V4", + "product_mpn": "ADA4441", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4441", + "product_stock": "42", + "products_hts": "9015.10.4000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4666", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4666-02.jpg", + "image_is_video": "0", + "product_name": "Mini Basic PIR Sensor - BS412", + "product_model": "", + "product_mpn": "ADA4666", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4666", + "product_stock": "in stock", + "products_hts": "8541.40.9500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4667", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4667-06.jpg", + "image_is_video": "0", + "product_name": "Mini Basic PIR Sensor - BL412", + "product_model": "", + "product_mpn": "ADA4667", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4667", + "product_stock": "in stock", + "products_hts": "8541.40.9500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4871", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4871-04.jpg", + "image_is_video": "1", + "product_name": "Breadboard-friendly Mini PIR Motion Sensor with 3 Pin Header", + "product_model": "", + "product_mpn": "ADA4871", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4871", + "product_stock": "in stock", + "products_hts": "8473.30.1180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1927", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1927-02.jpg", + "image_is_video": "0", + "product_name": "Sharp GP2Y0D810Z0F Digital Distance Sensor with Pololu Carrier", + "product_model": "GP2Y0D810Z0F", + "product_mpn": "ADA1927", + "product_master_category": "689", + "product_manufacturer": "Pololu", + "product_price": "8.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1927", + "product_stock": "86", + "products_hts": "9015.10.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2106", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2106-11.jpg", + "image_is_video": "1", + "product_name": "Leap Motion Controller with SDK", + "product_model": "", + "product_mpn": "ADA2106", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "89.95", + "product_shipping_weight": "259.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2106", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1031", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1031-02.jpg", + "image_is_video": "0", + "product_name": "IR distance sensor includes cable (20cm-150cm)", + "product_model": "GP2Y0A02YK", + "product_mpn": "ADA1031", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1031", + "product_stock": "62", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "164", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/164-00.jpg", + "image_is_video": "0", + "product_name": "IR distance sensor includes cable (10cm-80cm)", + "product_model": "GP2Y0A21YK0F", + "product_mpn": "ADA164", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/164", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "189", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/189-00.jpg", + "image_is_video": "0", + "product_name": "PIR (motion) sensor", + "product_model": "", + "product_mpn": "ADA189", + "product_master_category": "689", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "10.7", + "product_url": "https:\/\/www.adafruit.com\/product\/189", + "product_stock": "in stock", + "products_hts": "8541.40.95.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4818", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4818-05.jpg", + "image_is_video": "1", + "product_name": "Keyboard FeatherWing - QWERTY Keyboard + 2.6\" LCD", + "product_model": "", + "product_mpn": "ADA4818", + "product_master_category": "694", + "product_manufacturer": null, + "product_price": "67.50", + "product_shipping_weight": "85.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4818", + "product_stock": "0", + "products_hts": "8471.60.7080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3348", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3348-01.jpg", + "image_is_video": "0", + "product_name": "Adventures in Minecraft", + "product_model": "", + "product_mpn": "ADA3348", + "product_master_category": "720", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "745.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3348", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1173", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1173-02.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Raspberry Pi", + "product_model": "3rd Edition", + "product_mpn": "ADA1173", + "product_master_category": "720", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "15.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1173", + "product_stock": "9", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1745", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1745-05.jpg", + "image_is_video": "0", + "product_name": "Adventures in Raspberry Pi - Third Edition", + "product_model": "", + "product_mpn": "ADA1745", + "product_master_category": "720", + "product_manufacturer": null, + "product_price": "24.99", + "product_shipping_weight": "440.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1745", + "product_stock": "1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.49", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.99", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1741", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1741-02.jpg", + "image_is_video": "0", + "product_name": "Hacking the Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1741", + "product_master_category": "721", + "product_manufacturer": null, + "product_price": "29.99", + "product_shipping_weight": "725.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1741", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2274", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2274-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Cookbook by Simon Monk", + "product_model": "Second Edition", + "product_mpn": "ADA2274", + "product_master_category": "721", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "635.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2274", + "product_stock": "-1", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1707", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1707-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 18", + "product_model": "", + "product_mpn": "ADA1707", + "product_master_category": "722", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1707", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2639", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2639-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 23", + "product_model": "", + "product_mpn": "ADA2639", + "product_master_category": "722", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2639", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [] + }, + { + "product_id": "2640", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2640-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 24", + "product_model": "", + "product_mpn": "ADA2640", + "product_master_category": "722", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2640", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [] + }, + { + "product_id": "2641", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2641-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 25", + "product_model": "", + "product_mpn": "ADA2641", + "product_master_category": "722", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2641", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [] + }, + { + "product_id": "2645", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2645-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 29", + "product_model": "", + "product_mpn": "ADA2645", + "product_master_category": "722", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2645", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [] + }, + { + "product_id": "1704", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1704-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 14", + "product_model": "", + "product_mpn": "ADA1704", + "product_master_category": "725", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1704", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1710", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1710-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 9", + "product_model": "", + "product_mpn": "ADA1710", + "product_master_category": "725", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1710", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1711", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1711-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 10", + "product_model": "", + "product_mpn": "ADA1711", + "product_master_category": "725", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1711", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2642", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2642-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 26", + "product_model": "", + "product_mpn": "ADA2642", + "product_master_category": "725", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "166.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2642", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [] + }, + { + "product_id": "2643", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2643-01.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 27", + "product_model": "", + "product_mpn": "ADA2643", + "product_master_category": "725", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2643", + "product_stock": "-3", + "products_hts": "4902.90.2040", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2092", + "discount_pricing": [] + }, + { + "product_id": "1706", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1706-00.jpg", + "image_is_video": "0", + "product_name": "The MagPi - Issue 17", + "product_model": "", + "product_mpn": "ADA1706", + "product_master_category": "725", + "product_manufacturer": null, + "product_price": "5.99", + "product_shipping_weight": "181.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1706", + "product_stock": "-3", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "2092", + "discount_pricing": [ + { + "discounted_price": "5.99", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.39", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.79", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1327", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1327-05.jpg", + "image_is_video": "0", + "product_name": "Bluetooth 4.0 USB Module (v2.1 Back-Compatible)", + "product_model": "", + "product_mpn": "ADA1327", + "product_master_category": "727", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "12.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1327", + "product_stock": "in stock", + "products_hts": "8525.20.9080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1697", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1697-04.jpg", + "image_is_video": "0", + "product_name": "Bluefruit LE - Bluetooth Low Energy (BLE 4.0) - nRF8001 Breakout", + "product_model": "v1.0", + "product_mpn": "ADA1697", + "product_master_category": "727", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1697", + "product_stock": "-3", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2267", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2267-00.jpg", + "image_is_video": "0", + "product_name": "Bluefruit LE Friend - Bluetooth Low Energy (BLE 4.0) - nRF51822", + "product_model": "v3.0", + "product_mpn": "ADA2267", + "product_master_category": "727", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2267", + "product_stock": "in stock", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2269", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2269-00.jpg", + "image_is_video": "0", + "product_name": "Bluefruit LE Sniffer - Bluetooth Low Energy (BLE 4.0) - nRF51822", + "product_model": "Firmware Version 2", + "product_mpn": "ADA2269", + "product_master_category": "727", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2269", + "product_stock": "61", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2479", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2479-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Bluefruit LE UART Friend - Bluetooth Low Energy (BLE)", + "product_model": "", + "product_mpn": "ADA2479", + "product_master_category": "727", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2479", + "product_stock": "in stock", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2633", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2633-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Bluefruit LE SPI Friend - Bluetooth Low Energy (BLE)", + "product_model": "", + "product_mpn": "ADA2633", + "product_master_category": "727", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "5.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2633", + "product_stock": "in stock", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2649", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2649-01.jpg", + "image_is_video": "0", + "product_name": "Bluetooth \/ WiFi Combination USB Dongle", + "product_model": "", + "product_mpn": "ADA2649", + "product_master_category": "727", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "35.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2649", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3026", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3026-00.jpg", + "image_is_video": "0", + "product_name": "Make:Bluetooth Book Parts Pack - Book Not Included", + "product_model": "", + "product_mpn": "ADA3026", + "product_master_category": "727", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "327.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3026", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3029", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3029-01.jpg", + "image_is_video": "0", + "product_name": "Make: Bluetooth LE Projects for Arduino, RasPi, and Smartphones", + "product_model": "", + "product_mpn": "ADA3029", + "product_master_category": "727", + "product_manufacturer": "Maker Shed", + "product_price": "29.95", + "product_shipping_weight": "453.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3029", + "product_stock": "0", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3372", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3372-03.jpg", + "image_is_video": "0", + "product_name": "Espruino Puck.js v2", + "product_model": "", + "product_mpn": "ADA3372", + "product_master_category": "727", + "product_manufacturer": "Espruino", + "product_price": "39.95", + "product_shipping_weight": "19.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3372", + "product_stock": "in stock", + "products_hts": "8526.92.50", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3876", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3876-01.jpg", + "image_is_video": "0", + "product_name": "Espruino MDBT42Q Breakout", + "product_model": "", + "product_mpn": "ADA3876", + "product_master_category": "727", + "product_manufacturer": "Espruino", + "product_price": "26.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3876", + "product_stock": "37", + "products_hts": "8471.60.2000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4076", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4076-00.jpg", + "image_is_video": "0", + "product_name": "nRF51822 Bluetooth Low Energy Module", + "product_model": "MDBT40-256RV3", + "product_mpn": "ADA4076", + "product_master_category": "727", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4076", + "product_stock": "39", + "products_hts": "8517.69.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4077", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4077-00.jpg", + "image_is_video": "0", + "product_name": "nRF52832 Bluetooth Low Energy Module", + "product_model": "MDBT42Q-512KV2", + "product_mpn": "ADA4077", + "product_master_category": "727", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4077", + "product_stock": "in stock", + "products_hts": "8517.69.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4078", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4078-00.jpg", + "image_is_video": "0", + "product_name": "nRF52840 Bluetooth Low Energy Module with USB", + "product_model": "MDBT50Q-1MV2", + "product_mpn": "ADA4078", + "product_master_category": "727", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4078", + "product_stock": "in stock", + "products_hts": "8525.80.5050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4827", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4827-01.jpg", + "image_is_video": "0", + "product_name": "Combination WiFi + Bluetooth 4.0 USB Adapter", + "product_model": "", + "product_mpn": "ADA4827", + "product_master_category": "727", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "34.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4827", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2661", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2661-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Bluefruit LE Micro - Bluetooth Low Energy + ATmega32u4", + "product_model": "", + "product_mpn": "ADA2661", + "product_master_category": "727", + "product_manufacturer": "Adafruit", + "product_price": "26.95", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2661", + "product_stock": "-3", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "26.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "21.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2637", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2637-00.jpg", + "image_is_video": "0", + "product_name": "SIM808 GSM + GPRS + GPS Cellular Module", + "product_model": "", + "product_mpn": "ADA2637", + "product_master_category": "734", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2637", + "product_stock": "7", + "products_hts": "8471.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2505", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2505-06.jpg", + "image_is_video": "0", + "product_name": "GSM SIM Card from Ting & Adafruit - Data\/Voice\/Text", + "product_model": "", + "product_mpn": "ADA2505", + "product_master_category": "743", + "product_manufacturer": "Adafruit", + "product_price": "9.00", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2505", + "product_stock": "11", + "products_hts": "8523.52.0090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.10", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4952", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4952-00.jpg", + "image_is_video": "0", + "product_name": "Kailh Mechanical Key Switches - Linear Red - 10 pack", + "product_model": "Cherry MX Red Compatible", + "product_mpn": "ADA4952", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "17.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4952", + "product_stock": "in stock", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4996", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4953", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4953-00.jpg", + "image_is_video": "0", + "product_name": "Kailh Mechanical Key Switches - Linear Black - 10 pack", + "product_model": "Cherry MX Black Compatible", + "product_mpn": "ADA4953", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "17.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4953", + "product_stock": "in stock", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4996", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4954", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4954-00.jpg", + "image_is_video": "0", + "product_name": "Kailh Mechanical Key Switches - Tactile Brown - 10 pack", + "product_model": "Cherry MX Brown Compatible", + "product_mpn": "ADA4954", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4954", + "product_stock": "in stock", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4996", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4955", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4955-00.jpg", + "image_is_video": "0", + "product_name": "Kailh Mechanical Key Switches - Clicky White - 10 pack", + "product_model": "Cherry MX White Compatible", + "product_mpn": "ADA4955", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "17.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4955", + "product_stock": "in stock", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4996", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4958", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4958-00.jpg", + "image_is_video": "0", + "product_name": "Kailh Switch Sockets for MX-compatible Mechanical Keys - 20 Pack", + "product_model": "", + "product_mpn": "ADA4958", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "6.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4958", + "product_stock": "in stock", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4973", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4973-03.jpg", + "image_is_video": "1", + "product_name": "Kailh Mechanical Four Key Tester: White Black Red Brown Switches", + "product_model": "", + "product_mpn": "ADA4973", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4973", + "product_stock": "57", + "products_hts": "3923.10.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4974", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4974-00.jpg", + "image_is_video": "0", + "product_name": "Cherry MX Mechanical 4-Key Tester: Blue Black Red Brown Switches", + "product_model": "", + "product_mpn": "ADA4974", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4974", + "product_stock": "in stock", + "products_hts": "3923.10.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4977", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4977-03.jpg", + "image_is_video": "1", + "product_name": "Wire Whisk Style Key Cap Remover \/ Puller", + "product_model": "", + "product_mpn": "ADA4977", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4977", + "product_stock": "in stock", + "products_hts": "8483.50.9040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5122", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5122-02.jpg", + "image_is_video": "0", + "product_name": "Kailh Mechanical Key Switches - Linear Red - 12 Pack", + "product_model": "", + "product_mpn": "ADA5122", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "19.5", + "product_url": "https:\/\/www.adafruit.com\/product\/5122", + "product_stock": "in stock", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4996", + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5123", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5123-00.jpg", + "image_is_video": "0", + "product_name": "Kailh Mechanical Key Switch - Clicky Blue - Single Piece", + "product_model": "", + "product_mpn": "ADA5123", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/5123", + "product_stock": "19", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4996", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5124", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5124-00.jpg", + "image_is_video": "0", + "product_name": "Kailh Mechanical Key Switch - Linear Black - Single Piece", + "product_model": "", + "product_mpn": "ADA5124", + "product_master_category": "744", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/5124", + "product_stock": "78", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4996", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3538", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3538-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit AMG8833 IR Thermal Camera Breakout", + "product_model": "STEMMA QT", + "product_mpn": "ADA3538", + "product_master_category": "745", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3538", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4407", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4407-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit MLX90640 IR Thermal Camera Breakout", + "product_model": "55 Degree", + "product_mpn": "ADA4407", + "product_master_category": "745", + "product_manufacturer": "Adafruit", + "product_price": "64.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4407", + "product_stock": "in stock", + "products_hts": "8525.80.5050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "64.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "58.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "51.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4469", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4469-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit MLX90640 24x32 IR Thermal Camera Breakout", + "product_model": "110 Degree FoV", + "product_mpn": "ADA4469", + "product_master_category": "745", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4469", + "product_stock": "0", + "products_hts": "8525.80.5050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1748", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1748-00.jpg", + "image_is_video": "0", + "product_name": "Melexis Contact-less Infrared Sensor - MLX90614 5V", + "product_model": "MLX90614ESF-AAA", + "product_mpn": "ADA1748", + "product_master_category": "745", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1748", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1747", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1747-00.jpg", + "image_is_video": "0", + "product_name": "Melexis Contact-less Infrared Sensor - MLX90614 3V", + "product_model": "MLX90614ESF-BAA", + "product_mpn": "ADA1747", + "product_master_category": "745", + "product_manufacturer": null, + "product_price": "15.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1747", + "product_stock": "39", + "products_hts": "8542.31.99", + "products_coo": "PH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2023", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2023-00.jpg", + "image_is_video": "0", + "product_name": "Contact-less Infrared Thermopile Sensor Breakout - TMP007", + "product_model": "", + "product_mpn": "ADA2023", + "product_master_category": "745", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2023", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1296", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1296-00.jpg", + "image_is_video": "0", + "product_name": "Contact-less Infrared Thermopile Sensor Breakout - TMP006", + "product_model": "", + "product_mpn": "ADA1296", + "product_master_category": "745", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1296", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "475", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/475-00.jpg", + "image_is_video": "0", + "product_name": "Arcade Button - 30mm Translucent Green", + "product_model": "", + "product_mpn": "ADA475", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.7", + "product_url": "https:\/\/www.adafruit.com\/product\/475", + "product_stock": "63", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1187", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1187-00.jpg", + "image_is_video": "0", + "product_name": "Massive Arcade Button with LED - 100mm White", + "product_model": "", + "product_mpn": "ADA1187", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "135.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1187", + "product_stock": "83", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3429", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3429-03.jpg", + "image_is_video": "1", + "product_name": "Mini LED Arcade Button - 24mm Translucent Clear", + "product_model": "", + "product_mpn": "ADA3429", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "11.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3429", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3430", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3430-03.jpg", + "image_is_video": "1", + "product_name": "Mini LED Arcade Button - 24mm Translucent Red", + "product_model": "", + "product_mpn": "ADA3430", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "11.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3430", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3431", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3431-03.jpg", + "image_is_video": "1", + "product_name": "Mini LED Arcade Button - 24mm Translucent Yellow", + "product_model": "", + "product_mpn": "ADA3431", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "11.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3431", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3432", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3432-03.jpg", + "image_is_video": "1", + "product_name": "Mini LED Arcade Button - 24mm Translucent Blue", + "product_model": "", + "product_mpn": "ADA3432", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "11.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3432", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3433", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3433-03.jpg", + "image_is_video": "1", + "product_name": "Mini LED Arcade Button - 24mm Green", + "product_model": "", + "product_mpn": "ADA3433", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "11.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3433", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3487", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3487-00.jpg", + "image_is_video": "1", + "product_name": "Arcade Button with LED - 30mm Translucent Green", + "product_model": "", + "product_mpn": "ADA3487", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3487", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3488", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3488-03.jpg", + "image_is_video": "1", + "product_name": "Arcade Button with LED - 30mm Translucent Yellow", + "product_model": "", + "product_mpn": "ADA3488", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3488", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3489", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3489-03.jpg", + "image_is_video": "1", + "product_name": "Arcade Button with LED - 30mm Translucent Red", + "product_model": "", + "product_mpn": "ADA3489", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3489", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3490", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3490-03.jpg", + "image_is_video": "1", + "product_name": "Arcade Button with LED - 30mm Translucent Blue", + "product_model": "", + "product_mpn": "ADA3490", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "16.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3490", + "product_stock": "33", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3491", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3491-03.jpg", + "image_is_video": "1", + "product_name": "Arcade Button with LED - 30mm Translucent Clear", + "product_model": "", + "product_mpn": "ADA3491", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "16.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3491", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "472", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/472-00.jpg", + "image_is_video": "0", + "product_name": "Arcade Button - 30mm Translucent Pink", + "product_model": "", + "product_mpn": "ADA472", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/472", + "product_stock": "42", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1191", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1191-00.jpg", + "image_is_video": "0", + "product_name": "Large Arcade Button with LED - 60mm Yellow", + "product_model": "", + "product_mpn": "ADA1191", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "44.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1191", + "product_stock": "4", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1186", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1186-00.jpg", + "image_is_video": "0", + "product_name": "Massive Arcade Button with LED - 100mm Yellow", + "product_model": "", + "product_mpn": "ADA1186", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "135.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1186", + "product_stock": "15", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1189", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1189-00.jpg", + "image_is_video": "0", + "product_name": "Massive Arcade Button with LED - 100mm Blue", + "product_model": "", + "product_mpn": "ADA1189", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "135.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1189", + "product_stock": "70", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1194", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1194-00.jpg", + "image_is_video": "0", + "product_name": "Large Arcade Button with LED - 60mm Blue", + "product_model": "", + "product_mpn": "ADA1194", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "44.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1194", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "474", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/474-00.jpg", + "image_is_video": "0", + "product_name": "Arcade Button - 30mm Translucent Yellow", + "product_model": "", + "product_mpn": "ADA474", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.6", + "product_url": "https:\/\/www.adafruit.com\/product\/474", + "product_stock": "70", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1193", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1193-00.jpg", + "image_is_video": "0", + "product_name": "Large Arcade Button with LED - 60mm Green", + "product_model": "", + "product_mpn": "ADA1193", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "44.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1193", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1192", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1192-00.jpg", + "image_is_video": "0", + "product_name": "Large Arcade Button with LED - 60mm White", + "product_model": "", + "product_mpn": "ADA1192", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "44.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1192", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1190", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1190-00.jpg", + "image_is_video": "0", + "product_name": "Large Arcade Button with LED - 60mm Red", + "product_model": "", + "product_mpn": "ADA1190", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "44.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1190", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "476", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/476-00.jpg", + "image_is_video": "0", + "product_name": "Arcade Button - 30mm Translucent Blue", + "product_model": "", + "product_mpn": "ADA476", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.7", + "product_url": "https:\/\/www.adafruit.com\/product\/476", + "product_stock": "96", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "473", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/473-00.jpg", + "image_is_video": "0", + "product_name": "Arcade Button - 30mm Translucent Red", + "product_model": "", + "product_mpn": "ADA473", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.7", + "product_url": "https:\/\/www.adafruit.com\/product\/473", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "471", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/471-00.jpg", + "image_is_video": "0", + "product_name": "Arcade Button - 30mm Translucent Clear", + "product_model": "", + "product_mpn": "ADA471", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "12.7", + "product_url": "https:\/\/www.adafruit.com\/product\/471", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1185", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1185-00.jpg", + "image_is_video": "0", + "product_name": "Massive Arcade Button with LED - 100mm Red", + "product_model": "", + "product_mpn": "ADA1185", + "product_master_category": "757", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "135.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1185", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "491", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/491-04.jpg", + "image_is_video": "0", + "product_name": "LED Illuminated Pushbutton - 30mm Square", + "product_model": "", + "product_mpn": "ADA491", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "30.6", + "product_url": "https:\/\/www.adafruit.com\/product\/491", + "product_stock": "36", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "492", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/492-00.jpg", + "image_is_video": "0", + "product_name": "LED Illuminated Pushbutton - 30mm Round", + "product_model": "", + "product_mpn": "ADA492", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/492", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1439", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1439-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - Red Momentary", + "product_model": "", + "product_mpn": "ADA1439", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1439", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1440", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1440-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - Green Momentary", + "product_model": "", + "product_mpn": "ADA1440", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1440", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1441", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1441-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - Yellow Momentary", + "product_model": "", + "product_mpn": "ADA1441", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1441", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1442", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1442-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - Red Latching On\/Off Switch", + "product_model": "", + "product_mpn": "ADA1442", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1442", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1443", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1443-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - Green Latching On\/Off Switch", + "product_model": "", + "product_mpn": "ADA1443", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1443", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1444", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1444-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - Yellow Latching On\/Off Switch", + "product_model": "", + "product_mpn": "ADA1444", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1444", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1476", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1476-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - Blue Latching On\/Off Switch", + "product_model": "", + "product_mpn": "ADA1476", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1476", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1477", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1477-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - Blue Momentary", + "product_model": "", + "product_mpn": "ADA1477", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1477", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1478", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1478-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - White Latching On\/Off Switch", + "product_model": "", + "product_mpn": "ADA1478", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1478", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1479", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1479-00.jpg", + "image_is_video": "0", + "product_name": "16mm Illuminated Pushbutton - White Momentary", + "product_model": "", + "product_mpn": "ADA1479", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1479", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3104", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3104-02.jpg", + "image_is_video": "0", + "product_name": "Mini Illuminated Momentary Pushbutton - Red Power Symbol", + "product_model": "", + "product_mpn": "ADA3104", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3104", + "product_stock": "in stock", + "products_hts": "8536.50.9030", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3105", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3105-01.jpg", + "image_is_video": "0", + "product_name": "Mini Illuminated Momentary Pushbutton - Blue Power Symbol", + "product_model": "", + "product_mpn": "ADA3105", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3105", + "product_stock": "in stock", + "products_hts": "8536.50.9030", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4186", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4186-01.jpg", + "image_is_video": "0", + "product_name": "LED Illuminated Triangle Pushbutton A.K.A 1960s Sci-Fi Buttons", + "product_model": "Red", + "product_mpn": "ADA4186", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4186", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4187", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4187-01.jpg", + "image_is_video": "0", + "product_name": "LED Illuminated Triangle Pushbutton A.K.A 1960s Sci-Fi Buttons", + "product_model": "Blue", + "product_mpn": "ADA4187", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4187", + "product_stock": "99", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4188", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4188-01.jpg", + "image_is_video": "0", + "product_name": "LED Illuminated Triangle Pushbutton A.K.A 1960s Sci-Fi Buttons", + "product_model": "Green", + "product_mpn": "ADA4188", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4188", + "product_stock": "59", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4189", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4189-01.jpg", + "image_is_video": "0", + "product_name": "LED Illuminated Triangle Pushbutton A.K.A 1960s Sci-Fi Buttons", + "product_model": "Yellow", + "product_mpn": "ADA4189", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4189", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4190", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4190-00.jpg", + "image_is_video": "0", + "product_name": "LED Illuminated Triangle Pushbutton A.K.A 1960s Sci-Fi Buttons", + "product_model": "White", + "product_mpn": "ADA4190", + "product_master_category": "758", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4190", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3101", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3101-00.jpg", + "image_is_video": "0", + "product_name": "Soft Tactile Button (8mm) x 10", + "product_model": "", + "product_mpn": "ADA3101", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3101", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3347", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3347-00.jpg", + "image_is_video": "0", + "product_name": "Metal Ball Tactile Button (6mm) x 10 pack", + "product_model": "", + "product_mpn": "ADA3347", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3347", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3844", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3844-03.jpg", + "image_is_video": "1", + "product_name": "4x4 Matrix Keypad", + "product_model": "", + "product_mpn": "ADA3844", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "23.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3844", + "product_stock": "in stock", + "products_hts": "8471.60.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4183", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4183-04.jpg", + "image_is_video": "0", + "product_name": "Soft Silicone Top 6mm Push-buttons (20-pack)", + "product_model": "Translucent", + "product_mpn": "ADA4183", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4183", + "product_stock": "in stock", + "products_hts": "8536.50.9035", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4184", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4184-04.jpg", + "image_is_video": "0", + "product_name": "6mm Rainbow Tactile Button Deluxe Party Tray - 160 Pieces", + "product_model": "", + "product_mpn": "ADA4184", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "65.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4184", + "product_stock": "3", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4228", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4228-04.jpg", + "image_is_video": "0", + "product_name": "Plastic Button Caps For Square Top (10-pack) - 8mm Diameter", + "product_model": "", + "product_mpn": "ADA4228", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4228", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1490", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1490-02.jpg", + "image_is_video": "0", + "product_name": "Tactile Switch Buttons (6mm tall) x 10 pack", + "product_model": "", + "product_mpn": "ADA1490", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1490", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1119", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1119-03.jpg", + "image_is_video": "0", + "product_name": "Tactile Switch Buttons (12mm square, 6mm tall) x 10 pack", + "product_model": "", + "product_mpn": "ADA1119", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1119", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1009", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1009-07.jpg", + "image_is_video": "0", + "product_name": "Colorful Round Tactile Button Switch Assortment - 15 pack", + "product_model": "", + "product_mpn": "ADA1009", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "19.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1009", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "367", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/367-01.jpg", + "image_is_video": "0", + "product_name": "Tactile Button switch (6mm) x 20 pack", + "product_model": "", + "product_mpn": "ADA367", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/367", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1010", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1010-00.jpg", + "image_is_video": "0", + "product_name": "Colorful 12mm Square Tactile Button Switch Assortment - 15 pack", + "product_model": "", + "product_mpn": "ADA1010", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "15.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1010", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1489", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1489-00.jpg", + "image_is_video": "0", + "product_name": "Tactile Switch Buttons (6mm slim) x 20 pack", + "product_model": "", + "product_mpn": "ADA1489", + "product_master_category": "759", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1489", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1688", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/1688-07.jpg", + "image_is_video": "1", + "product_name": "FREQUENCY - Adafruit's 1st Vinyl Record", + "product_model": "", + "product_mpn": "ADA1688", + "product_master_category": "770", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "427.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1688", + "product_stock": "in stock", + "products_hts": "vinyl record", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2715", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2715-01.jpg", + "image_is_video": "0", + "product_name": "Hackers Blu-ray - 20th anniversary edition", + "product_model": "", + "product_mpn": "ADA2715", + "product_master_category": "770", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "67.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2715", + "product_stock": "-3", + "products_hts": "8523.49.4000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3278", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3278-01.jpg", + "image_is_video": "0", + "product_name": "Infinity Shred - Long Distance Adafruit Edition", + "product_model": "", + "product_mpn": "ADA3278", + "product_master_category": "770", + "product_manufacturer": "Adafruit", + "product_price": "20.00", + "product_shipping_weight": "286.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3278", + "product_stock": "-3", + "products_hts": "8523.80.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3282", + "discount_pricing": [] + }, + { + "product_id": "3279", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3279-01.jpg", + "image_is_video": "0", + "product_name": "Infinity Shred - Long Distance", + "product_model": "", + "product_mpn": "ADA3279", + "product_master_category": "770", + "product_manufacturer": "Adafruit", + "product_price": "20.00", + "product_shipping_weight": "286.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3279", + "product_stock": "-3", + "products_hts": "8523.80.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3282", + "discount_pricing": [] + }, + { + "product_id": "2721", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2721-00.jpg", + "image_is_video": "0", + "product_name": "Particle Photon with Headers", + "product_model": "", + "product_mpn": "ADA2721", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "19.00", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2721", + "product_stock": "0", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2726", + "discount_pricing": [] + }, + { + "product_id": "2722", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2722-00.jpg", + "image_is_video": "0", + "product_name": "Particle Photon without Headers", + "product_model": "", + "product_mpn": "ADA2722", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "19.00", + "product_shipping_weight": "7.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2722", + "product_stock": "-10", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2726", + "discount_pricing": [] + }, + { + "product_id": "2723", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2723-02.jpg", + "image_is_video": "0", + "product_name": "Particle Photon Starter Kit", + "product_model": "", + "product_mpn": "ADA2723", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "29.00", + "product_shipping_weight": "91.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2723", + "product_stock": "-7", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2724", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2724-00.jpg", + "image_is_video": "0", + "product_name": "Particle Programmer Shield for Photon", + "product_model": "", + "product_mpn": "ADA2724", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "30.00", + "product_shipping_weight": "24.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2724", + "product_stock": "18", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2725", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2725-00.jpg", + "image_is_video": "0", + "product_name": "Particle Shield Shield for Photon", + "product_model": "", + "product_mpn": "ADA2725", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "20.00", + "product_shipping_weight": "35.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2725", + "product_stock": "-3", + "products_hts": "8543.70.9990", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2799", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2799-03.jpg", + "image_is_video": "0", + "product_name": "Particle Photon Internet Button", + "product_model": "", + "product_mpn": "ADA2799", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "49.00", + "product_shipping_weight": "74.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2799", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3051", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3051-00.jpg", + "image_is_video": "0", + "product_name": "Particle Relay Shield for Photon", + "product_model": "", + "product_mpn": "ADA3051", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "30.00", + "product_shipping_weight": "91.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3051", + "product_stock": "-10", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3233", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3233-03.jpg", + "image_is_video": "0", + "product_name": "Particle Electron Cellular IoT Kit - 2G Global", + "product_model": "", + "product_mpn": "ADA3233", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "49.99", + "product_shipping_weight": "202.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3233", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3234", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3234-03.jpg", + "image_is_video": "0", + "product_name": "Particle Electron Cellular IoT Kit - 3G Americas\/Aus", + "product_model": "", + "product_mpn": "ADA3234", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "69.99", + "product_shipping_weight": "204.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3234", + "product_stock": "-10", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3450", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3450-00.jpg", + "image_is_video": "0", + "product_name": "Particle Asset Tracker \u2013 2G", + "product_model": "", + "product_mpn": "ADA3450", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "109.00", + "product_shipping_weight": "463.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3450", + "product_stock": "2", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3451", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3451-06.jpg", + "image_is_video": "0", + "product_name": "Particle Asset Tracker \u2013 3G Americas\/Aus", + "product_model": "", + "product_mpn": "ADA3451", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "129.00", + "product_shipping_weight": "421.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3451", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3452", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3452-10.jpg", + "image_is_video": "0", + "product_name": "Particle Asset Tracker \u2013 3G Eur\/Afr\/Asia", + "product_model": "", + "product_mpn": "ADA3452", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "129.00", + "product_shipping_weight": "422.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3452", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3453", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3453-02.jpg", + "image_is_video": "0", + "product_name": "Particle Electron Cellular IoT Kit - 3G Eur\/Afr\/Asia", + "product_model": "", + "product_mpn": "ADA3453", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "69.99", + "product_shipping_weight": "202.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3453", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3454", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3454-01.jpg", + "image_is_video": "0", + "product_name": "Particle Sensor Kit 3G \u2013 Eur\/Afr\/Asia", + "product_model": "", + "product_mpn": "ADA3454", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "149.99", + "product_shipping_weight": "455.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3454", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3455", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3455-00.jpg", + "image_is_video": "0", + "product_name": "Particle Power Shield with Headers", + "product_model": "", + "product_mpn": "ADA3455", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "25.00", + "product_shipping_weight": "70.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3455", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3457", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3457-05.jpg", + "image_is_video": "0", + "product_name": "Particle Sensor Kit 3G - Americas\/Aus", + "product_model": "", + "product_mpn": "ADA3457", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "149.99", + "product_shipping_weight": "463.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3457", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2798", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2798-02.jpg", + "image_is_video": "0", + "product_name": "Particle Maker Kit with Photon", + "product_model": "", + "product_mpn": "ADA2798", + "product_master_category": "771", + "product_manufacturer": "Particle", + "product_price": "89.00", + "product_shipping_weight": "268.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2798", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "597", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/597-03.jpg", + "image_is_video": "1", + "product_name": "Mini Thermal Receipt Printer", + "product_model": "", + "product_mpn": "ADA597", + "product_master_category": "772", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "250.1", + "product_url": "https:\/\/www.adafruit.com\/product\/597", + "product_stock": "in stock", + "products_hts": "8443.32.1050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "599", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/599-00.jpg", + "image_is_video": "0", + "product_name": "Thermal paper roll - 50' long, 2.25\" wide", + "product_model": "", + "product_mpn": "ADA599", + "product_master_category": "772", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "42.6", + "product_url": "https:\/\/www.adafruit.com\/product\/599", + "product_stock": "in stock", + "products_hts": "4802.54.6100", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "600", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/600-02.jpg", + "image_is_video": "0", + "product_name": "Mini Thermal Receipt Printer Starter Pack", + "product_model": "", + "product_mpn": "ADA600", + "product_master_category": "772", + "product_manufacturer": null, + "product_price": "61.95", + "product_shipping_weight": "389.3", + "product_url": "https:\/\/www.adafruit.com\/product\/600", + "product_stock": "in stock", + "products_hts": "8443.32.1050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "61.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "55.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "49.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2754", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2754-00.jpg", + "image_is_video": "0", + "product_name": "Thermal Paper Roll - 33' long, 2.25\"", + "product_model": "", + "product_mpn": "ADA2754", + "product_master_category": "772", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "31.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2754", + "product_stock": "58", + "products_hts": "4811.90.9030", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2755", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2755-00.jpg", + "image_is_video": "0", + "product_name": "Thermal Paper Roll - 16' long, 2.25\"", + "product_model": "", + "product_mpn": "ADA2755", + "product_master_category": "772", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "13.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2755", + "product_stock": "in stock", + "products_hts": "4811.90.9030", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3539", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3539-04.jpg", + "image_is_video": "0", + "product_name": "Hydro Dipping Sheets - 10 Pack of A4 Size Sheets", + "product_model": "", + "product_mpn": "ADA3539", + "product_master_category": "772", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "83.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3539", + "product_stock": "in stock", + "products_hts": "4811.90.9030", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1565", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1565-12.jpg", + "image_is_video": "0", + "product_name": "USB Battery Pack for Raspberry Pi - 5000mAh - 5V @ 2.1A", + "product_model": "", + "product_mpn": "ADA1565", + "product_master_category": "773", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "174.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1565", + "product_stock": "-3", + "products_hts": "8507.80.8100", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1566", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1566-11.jpg", + "image_is_video": "0", + "product_name": "USB Battery Pack for Raspberry Pi - 10000mAh - 2 x 5V outputs", + "product_model": "", + "product_mpn": "ADA1566", + "product_master_category": "773", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "352.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1566", + "product_stock": "in stock", + "products_hts": "8507.80.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1944", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1944-00.jpg", + "image_is_video": "0", + "product_name": "PowerBoost 500 Charger - Rechargeable 5V Lipo USB Boost @ 500mA+", + "product_model": "", + "product_mpn": "ADA1944", + "product_master_category": "773", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1944", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1959", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1959-00.jpg", + "image_is_video": "0", + "product_name": "USB Battery Pack - 2200 mAh Capacity - 5V 1A Output", + "product_model": "", + "product_mpn": "ADA1959", + "product_master_category": "773", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "126.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1959", + "product_stock": "in stock", + "products_hts": "8507.80.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2465", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2465-08.jpg", + "image_is_video": "0", + "product_name": "PowerBoost 1000 Charger - Rechargeable 5V Lipo USB Boost @ 1A", + "product_model": "1000C", + "product_mpn": "ADA2465", + "product_master_category": "773", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2465", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2697", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2697-01.jpg", + "image_is_video": "0", + "product_name": "USB to 2.1mm Male Barrel Jack Cable", + "product_model": "22AWG & 1 meter", + "product_mpn": "ADA2697", + "product_master_category": "773", + "product_manufacturer": null, + "product_price": "2.75", + "product_shipping_weight": "24.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2697", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.48", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4288", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4288-05.jpg", + "image_is_video": "0", + "product_name": "USB Li-Ion Power Bank with 2 x 5V Outputs @ 2.1A - 5000mAh", + "product_model": "", + "product_mpn": "ADA4288", + "product_master_category": "773", + "product_manufacturer": null, + "product_price": "18.95", + "product_shipping_weight": "135.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4288", + "product_stock": "in stock", + "products_hts": "8507.60.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "962", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/962-00.jpg", + "image_is_video": "0", + "product_name": "USB Battery Pack for Raspberry Pi - 3300mAh - 5V @ 1A and 500mA", + "product_model": "", + "product_mpn": "ADA962", + "product_master_category": "773", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/962", + "product_stock": "-3", + "products_hts": "8507.80.8000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "2690", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2690-08.jpg", + "image_is_video": "0", + "product_name": "USB Voltage Meter with OLED Display", + "product_model": "", + "product_mpn": "ADA2690", + "product_master_category": "774", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "27.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2690", + "product_stock": "in stock", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3989", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3989-00.jpg", + "image_is_video": "1", + "product_name": "Large 3V Analog Panel Meter", + "product_model": "", + "product_mpn": "ADA3989", + "product_master_category": "774", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "116.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3989", + "product_stock": "26", + "products_hts": "9026.80.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3990", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3990-00.jpg", + "image_is_video": "1", + "product_name": "Large 5V Analog Panel Meter", + "product_model": "", + "product_mpn": "ADA3990", + "product_master_category": "774", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "116.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3990", + "product_stock": "20", + "products_hts": "9026.80.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4232", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4232-10.jpg", + "image_is_video": "0", + "product_name": "Multifunctional USB Digital Tester - USB A and C", + "product_model": "", + "product_mpn": "ADA4232", + "product_master_category": "774", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "32.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4232", + "product_stock": "35", + "products_hts": "8471.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4403", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4403-00.jpg", + "image_is_video": "0", + "product_name": "Small -15 to +15V DC Analog Panel Meter", + "product_model": "", + "product_mpn": "ADA4403", + "product_master_category": "774", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "64.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4403", + "product_stock": "in stock", + "products_hts": "9026.80.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4404", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4404-03.jpg", + "image_is_video": "0", + "product_name": "Small -1 Amp to +1 Amp DC Current Analog Panel Meter", + "product_model": "", + "product_mpn": "ADA4404", + "product_master_category": "774", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "72.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4404", + "product_stock": "in stock", + "products_hts": "9026.80.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1852", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1852-03.jpg", + "image_is_video": "0", + "product_name": "USB Charger Doctor - In-line Voltage and Current Meter", + "product_model": "", + "product_mpn": "ADA1852", + "product_master_category": "774", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "17.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1852", + "product_stock": "-3", + "products_hts": "9030.31.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3319", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3319-00.jpg", + "image_is_video": "0", + "product_name": "Panel Mount Stereo Audio Extension Cable - 1\/8\" \/ 3.5mm", + "product_model": "", + "product_mpn": "ADA3319", + "product_master_category": "775", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3319", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4216", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4216-02.jpg", + "image_is_video": "0", + "product_name": "USB B Round Panel Mount Extension Cable - 30cm", + "product_model": "", + "product_mpn": "ADA4216", + "product_master_category": "775", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "34.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4216", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4217", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4217-03.jpg", + "image_is_video": "0", + "product_name": "Micro B Round Panel Mount Extension Cable - 30cm", + "product_model": "", + "product_mpn": "ADA4217", + "product_master_category": "775", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4217", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2071", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2071-01.jpg", + "image_is_video": "0", + "product_name": "ABS Filament for 3D Printers - 1.75mm Diameter - Silver - 1KG", + "product_model": "", + "product_mpn": "ADA2071", + "product_master_category": "782", + "product_manufacturer": "Ultimaker", + "product_price": "46.00", + "product_shipping_weight": "1,360.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2071", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2061", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2061-01.jpg", + "image_is_video": "0", + "product_name": "ABS Filament for 3D Printers - 3mm Diameter - White - 1KG", + "product_model": "", + "product_mpn": "ADA2061", + "product_master_category": "782", + "product_manufacturer": "Ultimaker", + "product_price": "46.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2061", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2062", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2062-01.jpg", + "image_is_video": "0", + "product_name": "ABS Filament for 3D Printers - 3mm Diameter - Silver - 1KG", + "product_model": "", + "product_mpn": "ADA2062", + "product_master_category": "782", + "product_manufacturer": "Ultimaker", + "product_price": "46.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2062", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2066", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2066-01.jpg", + "image_is_video": "0", + "product_name": "ABS Filament for 3D Printers - 3mm Diameter - Black - 1KG", + "product_model": "", + "product_mpn": "ADA2066", + "product_master_category": "782", + "product_manufacturer": "Ultimaker", + "product_price": "46.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2066", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2148", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2148-01.jpg", + "image_is_video": "0", + "product_name": "ABS Filament for 3D Printers - 3mm Diameter - Blue - 1KG", + "product_model": "", + "product_mpn": "ADA2148", + "product_master_category": "782", + "product_manufacturer": "Ultimaker", + "product_price": "46.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2148", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2149", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2149-01.jpg", + "image_is_video": "0", + "product_name": "ABS Filament for 3D Printers - 1.75mm Diameter - Blue - 1KG", + "product_model": "", + "product_mpn": "ADA2149", + "product_master_category": "782", + "product_manufacturer": "Ultimaker", + "product_price": "46.00", + "product_shipping_weight": "1,360.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2149", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2069", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2069-01.jpg", + "image_is_video": "0", + "product_name": "ABS Filament for 3D Printers - 1.75mm Diameter - White - 1KG", + "product_model": "", + "product_mpn": "ADA2069", + "product_master_category": "782", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,360.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2069", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2065", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2065-01.jpg", + "image_is_video": "0", + "product_name": "ABS Filament for 3D Printers - 1.75mm Diameter - Black - 1KG", + "product_model": "", + "product_mpn": "ADA2065", + "product_master_category": "782", + "product_manufacturer": "Ultimaker", + "product_price": "46.00", + "product_shipping_weight": "1,360.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2065", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2321", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2321-00.jpg", + "image_is_video": "0", + "product_name": "SemiFlex - 1.75mm Diameter - Midnight Black - 0.5Kg", + "product_model": "", + "product_mpn": "ADA2321", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2321", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.95", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "49.95", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2713", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2713-00.jpg", + "image_is_video": "0", + "product_name": "SemiFlex - 1.75mm Diameter - Semitranslucent White - 0.5Kg", + "product_model": "", + "product_mpn": "ADA2713", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2713", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3185", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3185-03.jpg", + "image_is_video": "0", + "product_name": "Cheetah 3D Printer Filament - 3mm Diameter 1kg - Midnight", + "product_model": "", + "product_mpn": "ADA3185", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "59.95", + "product_shipping_weight": "1,079.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3185", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3186", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3186-01.jpg", + "image_is_video": "0", + "product_name": "Cheetah 3D Printer Filament - 3mm Diameter 1kg - Snow", + "product_model": "", + "product_mpn": "ADA3186", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "59.95", + "product_shipping_weight": "1,079.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3186", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3222", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3222-01.jpg", + "image_is_video": "0", + "product_name": "Cheetah NinjaFlex Filament - 1.75mm - Midnight - 0.5 Kg", + "product_model": "", + "product_mpn": "ADA3222", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "815.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3222", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3223", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3223-01.jpg", + "image_is_video": "0", + "product_name": "Cheetah 3D Printer Filament - 1.75mm Diameter 0.5kg - Snow", + "product_model": "", + "product_mpn": "ADA3223", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "800.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3223", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2385", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2385-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 3mm Diameter - Almond-Peach Smoothie - 0.75Kg", + "product_model": "", + "product_mpn": "ADA2385", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "59.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2385", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2386", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2386-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 3mm Diameter - Rose-Gold Blush - 0.75Kg", + "product_model": "", + "product_mpn": "ADA2386", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "59.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2386", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2387", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2387-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 3mm Diameter - Caramel Candy - 0.75Kg", + "product_model": "", + "product_mpn": "ADA2387", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "59.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2387", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2655", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2655-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Glow in the Dark - 0.5 Kg", + "product_model": "", + "product_mpn": "ADA2655", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2655", + "product_stock": "3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2564", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2564-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Violet Grape - .50 Kg", + "product_model": "", + "product_mpn": "ADA2564", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2564", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2565", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2565-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Flamingo Pink - 0.50 Kg", + "product_model": "", + "product_mpn": "ADA2565", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "1,360.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2565", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2382", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2382-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Caramel Candy - 0.5Kg", + "product_model": "", + "product_mpn": "ADA2382", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2382", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2383", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2383-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Almond-Peach Smoothie - 0.50Kg", + "product_model": "", + "product_mpn": "ADA2383", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2383", + "product_stock": "14", + "products_hts": "3916.90.3000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2444", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2444-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Green Grass - 0.50 Kg", + "product_model": "", + "product_mpn": "ADA2444", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2444", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2381", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2381-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Rose-Gold Blush - 0.5Kg", + "product_model": "", + "product_mpn": "ADA2381", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2381", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2446", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2446-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Satin Sheen Gold - 0.50 Kg", + "product_model": "", + "product_mpn": "ADA2446", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2446", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2563", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2563-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Sky Blue - 0.50 Kg", + "product_model": "", + "product_mpn": "ADA2563", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2563", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2443", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2443-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex Filament - 1.75mm - Liquid Hot Lava - 0.5 Kg", + "product_model": "", + "product_mpn": "ADA2443", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2443", + "product_stock": "3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2445", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2445-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Semitranslucent White - 0.50 Kg", + "product_model": "", + "product_mpn": "ADA2445", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2445", + "product_stock": "26", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10+", + "min_qty": 10 + } + ] + }, + { + "product_id": "2108", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2108-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Sterling Silver - 0.5Kg", + "product_model": "", + "product_mpn": "ADA2108", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2108", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "1691", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1691-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Snow White - 0.5 Kg", + "product_model": "", + "product_mpn": "ADA1691", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1691", + "product_stock": "11", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "1690", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1690-01.jpg", + "image_is_video": "0", + "product_name": "NinjaFlex - 1.75mm Diameter - Midnight Black - 0.5Kg", + "product_model": "", + "product_mpn": "ADA1690", + "product_master_category": "783", + "product_manufacturer": "NinjaFlex", + "product_price": "29.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1690", + "product_stock": "53", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2703", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2703-01.jpg", + "image_is_video": "0", + "product_name": "Proto-Pasta - 1.75mm 500g Conductive PLA Filament", + "product_model": "", + "product_mpn": "ADA2703", + "product_master_category": "784", + "product_manufacturer": "ProtoPlant", + "product_price": "58.00", + "product_shipping_weight": "725.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2703", + "product_stock": "11", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2797", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2797-01.jpg", + "image_is_video": "0", + "product_name": "Proto-Pasta - 1.75mm Magnetic Iron Filament", + "product_model": "", + "product_mpn": "ADA2797", + "product_master_category": "784", + "product_manufacturer": "ProtoPlant", + "product_price": "54.95", + "product_shipping_weight": "702.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2797", + "product_stock": "-1", + "products_hts": "8505.11.0090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3225", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3225-01.jpg", + "image_is_video": "0", + "product_name": "Proto-Pasta - Aromatic Coffee 1.75mm HTPLA Filament", + "product_model": "0.5 KG", + "product_mpn": "ADA3225", + "product_master_category": "784", + "product_manufacturer": "ProtoPlant", + "product_price": "39.95", + "product_shipping_weight": "617.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3225", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3752", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3752-01.jpg", + "image_is_video": "0", + "product_name": "Proto-pasta - 2.85mm Diameter - Conductive Graphite Filament", + "product_model": "500g", + "product_mpn": "ADA3752", + "product_master_category": "784", + "product_manufacturer": "ProtoPlant", + "product_price": "49.95", + "product_shipping_weight": "656.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3752", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3753", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3753-02.jpg", + "image_is_video": "0", + "product_name": "Proto-pasta - 2.85mm Diameter - Magnetic Rustable Iron Filament", + "product_model": "500g", + "product_mpn": "ADA3753", + "product_master_category": "784", + "product_manufacturer": "ProtoPlant", + "product_price": "34.95", + "product_shipping_weight": "635.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3753", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "1830", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1830-01.jpg", + "image_is_video": "0", + "product_name": "PLA\/PHA bronzeFill for 3D Printers - 1.75mm Diameter - 750g", + "product_model": "", + "product_mpn": "ADA1830", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "69.95", + "product_shipping_weight": "1,088.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1830", + "product_stock": "-1", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2060", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2060-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter - Black - 1KG", + "product_model": "", + "product_mpn": "ADA2060", + "product_master_category": "785", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,422.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2060", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2067", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2067-00.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter - White - 1KG", + "product_model": "", + "product_mpn": "ADA2067", + "product_master_category": "785", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,460.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2067", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2128", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2128-01.jpg", + "image_is_video": "0", + "product_name": "PLA\/PHA copperFill for 3D Printers - 1.75mm Diameter - 750g", + "product_model": "", + "product_mpn": "ADA2128", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "69.95", + "product_shipping_weight": "1,088.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2128", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2338", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2338-01.jpg", + "image_is_video": "0", + "product_name": "PLA\/PHA Filament for 3D Printers - 1.75mm Diameter - 1KG", + "product_model": "Glowfill", + "product_mpn": "ADA2338", + "product_master_category": "785", + "product_manufacturer": "PRINTinZ", + "product_price": "49.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2338", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2449", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2449-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter", + "product_model": "Purple Translucent - 1KG", + "product_mpn": "ADA2449", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "46.00", + "product_shipping_weight": "1,360.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2449", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2451", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2451-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Natural Translucent - 1KG", + "product_model": "", + "product_mpn": "ADA2451", + "product_master_category": "785", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,436.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2451", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2475", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2475-01.jpg", + "image_is_video": "0", + "product_name": "PLA\/PHA bambooFill for 3D Printers - 1.75mm Diameter - 600g", + "product_model": "", + "product_mpn": "ADA2475", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "49.95", + "product_shipping_weight": "1,088.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2475", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "NL", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "2080", + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3226", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3226-02.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter - Cool Gray - 1KG", + "product_model": "", + "product_mpn": "ADA3226", + "product_master_category": "785", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,433.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3226", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3731", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3731-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Diameter - Silver - 1 Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3731", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,377.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3731", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3732", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3732-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Diameter - Magenta - 1 Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3732", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,401.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3732", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3733", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3733-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Diameter - Lilac - 1 Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3733", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,401.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3733", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3734", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3734-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Dia. - Cool Gray - 1 Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3734", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,421.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3734", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3735", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3735-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Dia - Light Green - 1 Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3735", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,385.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3735", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3736", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3736-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Diameter - Neon Blue - 1Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3736", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,407.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3736", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3737", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3737-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Diameter - Aqua - 1.0 Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3737", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,395.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3737", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3750", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3750-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Diameter - Clear - 1.0Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3750", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,410.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3750", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3751", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3751-00.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 2.85mm Diameter - Black - 1.0Kg", + "product_model": "MeltInk", + "product_mpn": "ADA3751", + "product_master_category": "785", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "1,394.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3751", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2064", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2064-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 3mm Diameter - Black - 1KG", + "product_model": "", + "product_mpn": "ADA2064", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "46.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2064", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2068", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2068-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 3mm Diameter - White - 1KG", + "product_model": "", + "product_mpn": "ADA2068", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "46.00", + "product_shipping_weight": "206.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2068", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2070", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2070-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 3mm Diameter - Silver - 1KG", + "product_model": "", + "product_mpn": "ADA2070", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "46.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2070", + "product_stock": "0", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2147", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2147-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 3mm Diameter - Blue - 1KG", + "product_model": "", + "product_mpn": "ADA2147", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "46.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2147", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2151", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2151-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 3mm Diameter - Green - 1KG", + "product_model": "", + "product_mpn": "ADA2151", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "46.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2151", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "46.00", + "discounted_percent": "0", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2450", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2450-03.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter", + "product_model": "Red- 1KG", + "product_mpn": "ADA2450", + "product_master_category": "785", + "product_manufacturer": "ColorFabb", + "product_price": "46.00", + "product_shipping_weight": "1,360.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2450", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "1011", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1011-00.jpg", + "image_is_video": "0", + "product_name": "Red Berry Tote Bag", + "product_model": "", + "product_mpn": "ADA1011", + "product_master_category": "787", + "product_manufacturer": null, + "product_price": "25.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1011", + "product_stock": "-3", + "products_hts": "4202.92.4500", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "961", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/961-07.jpg", + "image_is_video": "0", + "product_name": "USB 2.0 Powered Hub - 7 Ports with 5V 2A Power Supply", + "product_model": "", + "product_mpn": "ADA961", + "product_master_category": "788", + "product_manufacturer": null, + "product_price": "27.50", + "product_shipping_weight": "234.4", + "product_url": "https:\/\/www.adafruit.com\/product\/961", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2909", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2909-01.jpg", + "image_is_video": "0", + "product_name": "USB 2.0 and Ethernet Hub - 3 USB Ports and 1 Ethernet", + "product_model": "", + "product_mpn": "ADA2909", + "product_master_category": "788", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "42.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2909", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2937", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2937-01.jpg", + "image_is_video": "0", + "product_name": "USB 2.0 WiFi Hub with 3 USB Ports", + "product_model": "", + "product_mpn": "ADA2937", + "product_master_category": "788", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "56.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2937", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2991", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2991-00.jpg", + "image_is_video": "0", + "product_name": "USB Mini Hub with Power Switch - OTG Micro-USB", + "product_model": "", + "product_mpn": "ADA2991", + "product_master_category": "788", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2991", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2998", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2998-02.jpg", + "image_is_video": "0", + "product_name": "USB Mini Hub with Power Switch", + "product_model": "", + "product_mpn": "ADA2998", + "product_master_category": "788", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2998", + "product_stock": "75", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4115", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4115-02.jpg", + "image_is_video": "0", + "product_name": "Zero4U - 4-Port USB Hub without Pogo Pins", + "product_model": "v1.3", + "product_mpn": "ADA4115", + "product_master_category": "788", + "product_manufacturer": "UUGear", + "product_price": "6.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4115", + "product_stock": "in stock", + "products_hts": "8537.10.9120", + "products_coo": "CZ", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1516", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1516-00.jpg", + "image_is_video": "0", + "product_name": "PIHUB - USB Hub for Raspberry Pi with US Power Adapter", + "product_model": "", + "product_mpn": "ADA1516", + "product_master_category": "788", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1516", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "856", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/856-01.jpg", + "image_is_video": "0", + "product_name": "MCP3008 - 8-Channel 10-Bit ADC With SPI Interface", + "product_model": "", + "product_mpn": "ADA856", + "product_master_category": "790", + "product_manufacturer": null, + "product_price": "3.75", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/856", + "product_stock": "in stock", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.38", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1012", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1012-02.jpg", + "image_is_video": "0", + "product_name": "USB WiFi (802.11b\/g\/n) Module: For Raspberry Pi and more", + "product_model": "", + "product_mpn": "ADA1012", + "product_master_category": "791", + "product_manufacturer": null, + "product_price": "12.95", + "product_shipping_weight": "34.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1012", + "product_stock": "0", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1030", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1030-03.jpg", + "image_is_video": "0", + "product_name": "USB WiFi (802.11b\/g\/n) Module with Antenna for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1030", + "product_master_category": "791", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "40.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1030", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2638", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2638-01.jpg", + "image_is_video": "0", + "product_name": "Miniature WiFi Module - Official Raspberry Pi Edition", + "product_model": "", + "product_mpn": "ADA2638", + "product_master_category": "791", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "12.95", + "product_shipping_weight": "25.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2638", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2810", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2810-10.jpg", + "image_is_video": "0", + "product_name": "Mini USB WiFi Module - RTL8188eu - 802.11b\/g\/n", + "product_model": "", + "product_mpn": "ADA2810", + "product_master_category": "791", + "product_manufacturer": null, + "product_price": "11.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2810", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4793", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4793-04.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Compute Module 4 Antenna Kit", + "product_model": "", + "product_mpn": "ADA4793", + "product_master_category": "791", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "5.00", + "product_shipping_weight": "14.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4793", + "product_stock": "in stock", + "products_hts": "8529.10.2190", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3014", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3014-08.jpg", + "image_is_video": "0", + "product_name": "PiGRRL 2.0 Kit Pack - Build your own Pi Game Emulator!", + "product_model": "CASE + RASPBERRY PI NOT INCLUDED", + "product_mpn": "ADA3014", + "product_master_category": "792", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "151.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3014", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1538", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1538-01.jpg", + "image_is_video": "0", + "product_name": "CODER Pack for Raspberry Pi 2 Model B", + "product_model": "", + "product_mpn": "ADA1538", + "product_master_category": "792", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "307.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1538", + "product_stock": "0", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2129", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2129-00.jpg", + "image_is_video": "0", + "product_name": "Computer Add-On Pack for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2129", + "product_master_category": "793", + "product_manufacturer": null, + "product_price": "22.95", + "product_shipping_weight": "567.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2129", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2126", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2126-05.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 2 or Model B+ Starter Pack (Without Raspberry Pi)", + "product_model": "", + "product_mpn": "ADA2126", + "product_master_category": "793", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "36.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2126", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1410", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1410-01.jpg", + "image_is_video": "0", + "product_name": "Onion Pi Pack w\/ WiFi Module - Make a Raspberry Pi B+ Tor Proxy", + "product_model": "", + "product_mpn": "ADA1410", + "product_master_category": "793", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "392.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1410", + "product_stock": "0", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1406", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1406-01.jpg", + "image_is_video": "0", + "product_name": "Onion Pi Pack w\/Large Antenna - Make a Raspberry Pi B+ Tor Proxy", + "product_model": "", + "product_mpn": "ADA1406", + "product_master_category": "793", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "397.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1406", + "product_stock": "0", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2125", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2125-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 1 Model B+ Starter Pack - Includes a Raspberry Pi 1", + "product_model": "", + "product_mpn": "ADA2125", + "product_master_category": "793", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "550.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2125", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2510", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2510-02.jpg", + "image_is_video": "1", + "product_name": "Pocket PiGRRL Pack Build your own Pi Game Emulator!", + "product_model": "CASE + PI NOT INCLUDED", + "product_mpn": "ADA2510", + "product_master_category": "794", + "product_manufacturer": "Adafruit", + "product_price": "47.50", + "product_shipping_weight": "102.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2510", + "product_stock": "93", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "47.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "42.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "38.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2355", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2355-01.jpg", + "image_is_video": "0", + "product_name": "PiGRRL Pack Build your own Pi Game Emulator! (CASE NOT INCLUDED)", + "product_model": "", + "product_mpn": "ADA2355", + "product_master_category": "795", + "product_manufacturer": "Adafruit", + "product_price": "99.95", + "product_shipping_weight": "294.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2355", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "1563", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1563-00.jpg", + "image_is_video": "0", + "product_name": "RaspBMC Pack for Raspberry Pi - Includes IRKey & Remote", + "product_model": "", + "product_mpn": "ADA1563", + "product_master_category": "795", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "424.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1563", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1986", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1986-02.jpg", + "image_is_video": "0", + "product_name": "Downgrade GPIO Ribbon Cable for Pi A+\/B+\/Pi 2\/Pi 3 - 40p to 26p", + "product_model": "", + "product_mpn": "ADA1986", + "product_master_category": "796", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1986", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1988", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1988-00.jpg", + "image_is_video": "0", + "product_name": "GPIO Ribbon Cable for Raspberry Pi Model A+\/B+\/Pi 2\/Pi 3\/Pi 4", + "product_model": "(40 pins)", + "product_mpn": "ADA1988", + "product_master_category": "796", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "21.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1988", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4933", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4933-05.jpg", + "image_is_video": "0", + "product_name": "40-pin 0.5mm pitch FPC Flex Cable with A-B Connections", + "product_model": "25cm long", + "product_mpn": "ADA4933", + "product_master_category": "796", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4933", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "862", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/862-02.jpg", + "image_is_video": "0", + "product_name": "GPIO Ribbon Cable for Raspberry Pi Model A and B - 26 pin", + "product_model": "", + "product_mpn": "ADA862", + "product_master_category": "797", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "14.6", + "product_url": "https:\/\/www.adafruit.com\/product\/862", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3048", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3048-00.jpg", + "image_is_video": "0", + "product_name": "Mini HDMI to VGA Video Adapter with 3.5mm Stereo Cable", + "product_model": "", + "product_mpn": "ADA3048", + "product_master_category": "798", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "46.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3048", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4302", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4302-02.jpg", + "image_is_video": "0", + "product_name": "Official Raspberry Pi Micro HDMI to HDMI Cable", + "product_model": "1 meter long", + "product_mpn": "ADA4302", + "product_master_category": "798", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "8.95", + "product_shipping_weight": "49.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4302", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1151", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1151-04.jpg", + "image_is_video": "0", + "product_name": "HDMI to VGA Video Adapter and 3.5mm Male\/Male Stereo Cable", + "product_model": "", + "product_mpn": "ADA1151", + "product_master_category": "798", + "product_manufacturer": null, + "product_price": "18.95", + "product_shipping_weight": "55.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1151", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2881", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2881-02.jpg", + "image_is_video": "0", + "product_name": "A\/V and RCA (Composite Video, Audio) Cable for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2881", + "product_master_category": "799", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "44.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2881", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "863", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/863-03.jpg", + "image_is_video": "0", + "product_name": "RCA (Composite Video, Audio) Cable 6 feet", + "product_model": "", + "product_mpn": "ADA863", + "product_master_category": "799", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "81.5", + "product_url": "https:\/\/www.adafruit.com\/product\/863", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1645", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1645-04.jpg", + "image_is_video": "0", + "product_name": "Flex Cable for Raspberry Pi Camera or Display - 50mm \/ 2\"", + "product_model": "", + "product_mpn": "ADA1645", + "product_master_category": "800", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1645", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2087", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1646", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1646-03.jpg", + "image_is_video": "0", + "product_name": "Flex Cable for Raspberry Pi Camera or Display - 100mm \/ 4\"", + "product_model": "", + "product_mpn": "ADA1646", + "product_master_category": "800", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1646", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2087", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1647", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1647-03.jpg", + "image_is_video": "0", + "product_name": "Flex Cable for Raspberry Pi Camera or Display - 200mm \/ 8\"", + "product_model": "", + "product_mpn": "ADA1647", + "product_master_category": "800", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1647", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2087", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1648", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1648-05.jpg", + "image_is_video": "0", + "product_name": "Flex Cable for Raspberry Pi Camera or Display - 300mm \/ 12\"", + "product_model": "", + "product_mpn": "ADA1648", + "product_master_category": "800", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1648", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2087", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1730", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1730-03.jpg", + "image_is_video": "0", + "product_name": "Flex Cable for Raspberry Pi Camera or Display - 18\" \/ 457mm", + "product_model": "", + "product_mpn": "ADA1730", + "product_master_category": "800", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "4.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1730", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2087", + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1731", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1731-04.jpg", + "image_is_video": "0", + "product_name": "Flex Cable for Raspberry Pi Camera or Display - 24\" \/ 610mm", + "product_model": "", + "product_mpn": "ADA1731", + "product_master_category": "800", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "5.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1731", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2087", + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2143", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2143-02.jpg", + "image_is_video": "0", + "product_name": "Flex Cable for Raspberry Pi Camera or Display - 1 meter", + "product_model": "", + "product_mpn": "ADA2143", + "product_master_category": "800", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2143", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2087", + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2144", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2144-02.jpg", + "image_is_video": "0", + "product_name": "Flex Cable for Raspberry Pi Camera or Display - 2 meters", + "product_model": "", + "product_mpn": "ADA2144", + "product_master_category": "800", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2144", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2087", + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "592", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/592-01.jpg", + "image_is_video": "0", + "product_name": "USB cable - USB A to Micro-B", + "product_model": "3 foot long", + "product_mpn": "ADA592", + "product_master_category": "801", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "28.1", + "product_url": "https:\/\/www.adafruit.com\/product\/592", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1367", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1367-07.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Camera Board", + "product_model": "", + "product_mpn": "ADA1367", + "product_master_category": "802", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1367", + "product_stock": "-3", + "products_hts": "8525.40.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1567", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1567-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi NoIR Camera Board - Infrared-sensitive Camera", + "product_model": "", + "product_mpn": "ADA1567", + "product_master_category": "802", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "16.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1567", + "product_stock": "-3", + "products_hts": "8525.40.00", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1937", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1937-02.jpg", + "image_is_video": "0", + "product_name": "Spy Camera for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1937", + "product_master_category": "802", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1937", + "product_stock": "90", + "products_hts": "8525.40.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3099", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3099-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Camera Board v2 - 8 Megapixels", + "product_model": "", + "product_mpn": "ADA3099", + "product_master_category": "802", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "29.95", + "product_shipping_weight": "25.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3099", + "product_stock": "0", + "products_hts": "8525.80.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3100", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3100-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi NoIR Camera Board v2 - 8 Megapixels", + "product_model": "", + "product_mpn": "ADA3100", + "product_master_category": "802", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "25.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3100", + "product_stock": "in stock", + "products_hts": "8525.80.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3508", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3508-04.jpg", + "image_is_video": "0", + "product_name": "Zero Spy Camera for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3508", + "product_master_category": "802", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3508", + "product_stock": "in stock", + "products_hts": "8525.40.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4561", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4561-18.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi High Quality HQ Camera", + "product_model": "12MP", + "product_mpn": "ADA4561", + "product_master_category": "802", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "50.00", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4561", + "product_stock": "in stock", + "products_hts": "8473.30.1180", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1434", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1434-06.jpg", + "image_is_video": "0", + "product_name": "Adjustable Pi Camera Mount", + "product_model": "", + "product_mpn": "ADA1434", + "product_master_category": "803", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1434", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2807", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2807-01.jpg", + "image_is_video": "0", + "product_name": "Faceplate and Buttons Pack for 2.8\" PiTFTs", + "product_model": "Raspberry Pi B+ \/ Pi 2", + "product_mpn": "ADA2807", + "product_master_category": "804", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "12.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2807", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3062", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3062-04.jpg", + "image_is_video": "0", + "product_name": "Pi Model B+ \/ Pi 2 \/ Pi 3 - Case Base and Faceplate Pack - Clear", + "product_model": "for 2.8\" PiTFT", + "product_mpn": "ADA3062", + "product_master_category": "804", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "41.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3062", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3932", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3932-04.jpg", + "image_is_video": "0", + "product_name": "Pimoroni HyperPixel - 4.0\" Hi-Res Display for Raspberry Pi", + "product_model": "Non-Touch", + "product_mpn": "ADA3932", + "product_master_category": "804", + "product_manufacturer": "Pimoroni", + "product_price": "39.95", + "product_shipping_weight": "99.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3932", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2097", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2097-05.jpg", + "image_is_video": "0", + "product_name": "PiTFT - Assembled 480x320 3.5\" TFT+Touchscreen for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2097", + "product_master_category": "805", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "55.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2097", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2298", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2298-16.jpg", + "image_is_video": "0", + "product_name": "PiTFT Plus Assembled 320x240 2.8\" TFT + Resistive Touchscreen", + "product_model": "", + "product_mpn": "ADA2298", + "product_master_category": "805", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "69.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2298", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2441", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2441-10.jpg", + "image_is_video": "0", + "product_name": "PiTFT Plus 480x320 3.5\" TFT+Touchscreen for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2441", + "product_master_category": "805", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "83.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2441", + "product_stock": "71", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2616", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2616-00.jpg", + "image_is_video": "0", + "product_name": "PiTFT Plus 320x240 3.2\" TFT + Resistive Touchscreen", + "product_model": "", + "product_mpn": "ADA2616", + "product_master_category": "805", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "74.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2616", + "product_stock": "96", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2423", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2423-14.jpg", + "image_is_video": "0", + "product_name": "Adafruit PiTFT Plus 320x240 2.8\" TFT + Capacitive Touchscreen", + "product_model": "", + "product_mpn": "ADA2423", + "product_master_category": "806", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "74.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2423", + "product_stock": "-11", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2718", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2718-07.jpg", + "image_is_video": "0", + "product_name": "Pi Foundation Display - 7\" Touchscreen Display for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA2718", + "product_master_category": "806", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "79.95", + "product_shipping_weight": "519.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2718", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3578", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3578-03.jpg", + "image_is_video": "1", + "product_name": "Pimoroni HyperPixel - 4.0\" Hi-Res Display for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3578", + "product_master_category": "806", + "product_manufacturer": "Pimoroni", + "product_price": "49.95", + "product_shipping_weight": "87.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3578", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4499", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4499-03.jpg", + "image_is_video": "1", + "product_name": "Pimoroni HyperPixel 4.0 Square - Touch Display for Raspberry Pi", + "product_model": "Capacitive Touch - PIM470", + "product_mpn": "ADA4499", + "product_master_category": "806", + "product_manufacturer": "Pimoroni", + "product_price": "78.95", + "product_shipping_weight": "100.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4499", + "product_stock": "27", + "products_hts": "8531.20.0020", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1983", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1983-00.jpg", + "image_is_video": "0", + "product_name": "PiTFT 2.8\" TFT 320x240 + Capacitive Touchscreen for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1983", + "product_master_category": "806", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "72.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1983", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1109", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1109-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit RGB Positive 16x2 LCD+Keypad Kit for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1109", + "product_master_category": "808", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "72.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1109", + "product_stock": "-12", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1110", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1110-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit RGB Negative 16x2 LCD+Keypad Kit for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1110", + "product_master_category": "808", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "72.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1110", + "product_stock": "0", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1115", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1115-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Blue&White 16x2 LCD+Keypad Kit for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA1115", + "product_master_category": "808", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "61.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1115", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2883", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2883-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Pi Protector for Raspberry Pi Model Zero", + "product_model": "", + "product_mpn": "ADA2883", + "product_master_category": "813", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2883", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2992", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2992-04.jpg", + "image_is_video": "0", + "product_name": "Ethernet Hub and USB Hub w\/ Micro USB OTG Connector", + "product_model": "", + "product_mpn": "ADA2992", + "product_master_category": "813", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "47.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2992", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3003", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3003-00.jpg", + "image_is_video": "0", + "product_name": "C4Labs Zebra Zero for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3003", + "product_master_category": "813", + "product_manufacturer": "C4 Labs", + "product_price": "6.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3003", + "product_stock": "11", + "products_hts": "8538.10.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3004", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3004-05.jpg", + "image_is_video": "0", + "product_name": "C4Labs Zebra Zero Plus for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3004", + "product_master_category": "813", + "product_manufacturer": "C4 Labs", + "product_price": "14.95", + "product_shipping_weight": "89.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3004", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3005", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3005-06.jpg", + "image_is_video": "0", + "product_name": "Pibow Zero Case for Raspberry Pi Zero v1.3", + "product_model": "", + "product_mpn": "ADA3005", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "5.95", + "product_shipping_weight": "26.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3005", + "product_stock": "61", + "products_hts": "3926.90.9990", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3016", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3016-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni pHAT DAC for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3016", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "13.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3016", + "product_stock": "-10", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3017", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3017-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Scroll pHAT - 11x5 LED Matrix for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3017", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "12.50", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3017", + "product_stock": "0", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3018", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3018-05.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Explorer pHAT for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3018", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "13.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3018", + "product_stock": "13", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3157", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3157-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero v1.3 Camera Cable", + "product_model": "", + "product_mpn": "ADA3157", + "product_master_category": "813", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3157", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3181", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3181-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Unicorn pHAT - 4x8 RGB LED Shield for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3181", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "13.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3181", + "product_stock": "-10", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3194", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3194-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Enviro pHAT for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3194", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "19.95", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3194", + "product_stock": "-10", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3196", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3196-05.jpg", + "image_is_video": "0", + "product_name": "Pimoroni LiPo SHIM", + "product_model": "", + "product_mpn": "ADA3196", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "9.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3196", + "product_stock": "50", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3248", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3248-04.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Micro Dot pHAT with Included LED Modules - Red", + "product_model": "", + "product_mpn": "ADA3248", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "29.95", + "product_shipping_weight": "17.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3248", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3252", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3252-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Raspberry Pi Zero Case", + "product_model": "", + "product_mpn": "ADA3252", + "product_master_category": "813", + "product_manufacturer": "Adafruit", + "product_price": "4.75", + "product_shipping_weight": "14.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3252", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.28", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3283", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3283-01.jpg", + "image_is_video": "0", + "product_name": "Red Bear IoT pHAT for Raspberry Pi - WiFi + BTLE", + "product_model": "", + "product_mpn": "ADA3283", + "product_master_category": "813", + "product_manufacturer": "Red Bear", + "product_price": "16.95", + "product_shipping_weight": "22.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3283", + "product_stock": "0", + "products_hts": "8537.10.9160", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3288", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3288-00.jpg", + "image_is_video": "0", + "product_name": "ModMyPi Pi Zero Case - Frost\/Clear", + "product_model": "", + "product_mpn": "ADA3288", + "product_master_category": "813", + "product_manufacturer": "ModMyPi", + "product_price": "7.50", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3288", + "product_stock": "70", + "products_hts": "8538.10.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3298", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3298-00.jpg", + "image_is_video": "0", + "product_name": "Zero4U - 4 Port USB Hub for Raspberry Pi Zero v1.3", + "product_model": "", + "product_mpn": "ADA3298", + "product_master_category": "813", + "product_manufacturer": "UUGear", + "product_price": "9.95", + "product_shipping_weight": "16.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3298", + "product_stock": "in stock", + "products_hts": "8537.10.9160", + "products_coo": "CZ", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3329", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3329-01.jpg", + "image_is_video": "0", + "product_name": "Red Bear IoT pHAT for Raspberry Pi - WiFi + BTLE - unassembled", + "product_model": "", + "product_mpn": "ADA3329", + "product_master_category": "813", + "product_manufacturer": "Red Bear", + "product_price": "16.95", + "product_shipping_weight": "22.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3329", + "product_stock": "0", + "products_hts": "8537.10.9160", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3335", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3335-01.jpg", + "image_is_video": "0", + "product_name": "Pi Supply PaPiRus Zero ePaper\/eInk pHAT v1.2", + "product_model": "", + "product_mpn": "ADA3335", + "product_master_category": "813", + "product_manufacturer": "Pi Supply", + "product_price": "34.95", + "product_shipping_weight": "44.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3335", + "product_stock": "45", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3374", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3374-01.jpg", + "image_is_video": "0", + "product_name": "PiJack Ethernet HAT for Pi Zero", + "product_model": "", + "product_mpn": "ADA3374", + "product_master_category": "813", + "product_manufacturer": "PiJack", + "product_price": "14.95", + "product_shipping_weight": "18.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3374", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3401", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3401-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Speaker pHAT for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3401", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "12.95", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3401", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3471", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3471-01.jpg", + "image_is_video": "0", + "product_name": "Pibow Zero W Case for Raspberry Pi Zero W", + "product_model": "", + "product_mpn": "ADA3471", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "5.95", + "product_shipping_weight": "25.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3471", + "product_stock": "in stock", + "products_hts": "3920.51.1000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3472", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3472-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Touch pHAT for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3472", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "11.50", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3472", + "product_stock": "84", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3473", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3473-04.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Scroll pHAT HD \u2013 LED Matrix for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3473", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "12.95", + "product_shipping_weight": "12.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3473", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3474", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3474-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni pHAT BEAT for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3474", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "19.95", + "product_shipping_weight": "14.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3474", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3475", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3475-06.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Four Letter pHAT for Raspberry Pi Zero", + "product_model": "", + "product_mpn": "ADA3475", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "10.50", + "product_shipping_weight": "21.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3475", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3581", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3581-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni OnOff SHIM for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3581", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "8.50", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3581", + "product_stock": "75", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3582", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3582-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Button SHIM for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3582", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "6.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3582", + "product_stock": "85", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3945", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3945-03.jpg", + "image_is_video": "0", + "product_name": "Zero Stem for Pi Zero 1.3 and Pi Zero W 1.1", + "product_model": "", + "product_mpn": "ADA3945", + "product_master_category": "813", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3945", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4463", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4463-04.jpg", + "image_is_video": "0", + "product_name": "SparkFun Qwiic or Stemma QT SHIM for Raspberry Pi \/ SBC", + "product_model": "", + "product_mpn": "ADA4463", + "product_master_category": "813", + "product_manufacturer": "Sparkfun Electronics", + "product_price": "1.50", + "product_shipping_weight": "0.9", + "product_url": "https:\/\/www.adafruit.com\/product\/4463", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4671", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4671-04.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Scroll HAT Mini for Raspberry Pi", + "product_model": "PIM491", + "product_mpn": "ADA4671", + "product_master_category": "813", + "product_manufacturer": "Pimoroni", + "product_price": "15.95", + "product_shipping_weight": "12.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4671", + "product_stock": "6", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "85", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/85-05.jpg", + "image_is_video": "0", + "product_name": "Shield stacking headers for Arduino (R3 Compatible)", + "product_model": "", + "product_mpn": "ADA85", + "product_master_category": "816", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/85", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "554", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/554-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit AVR Sticker for Breadboard Arduino-compatibles - 10 pcs", + "product_model": "", + "product_mpn": "ADA554", + "product_master_category": "816", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/554", + "product_stock": "in stock", + "products_hts": "3919.90.5060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "123", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/123-02.jpg", + "image_is_video": "0", + "product_name": "Arduino bootloader-programmed chip (Atmega328P)", + "product_model": "", + "product_mpn": "ADA123", + "product_master_category": "816", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/123", + "product_stock": "0", + "products_hts": "8542.31.00.00", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "50", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/50-09.jpg", + "image_is_video": "0", + "product_name": "Adafruit METRO 328 Fully Assembled - Arduino IDE compatible", + "product_model": "ATmega328", + "product_mpn": "ADA50", + "product_master_category": "818", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "26.6", + "product_url": "https:\/\/www.adafruit.com\/product\/50", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2466", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2466-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit METRO 328 without Headers", + "product_model": "ATmega328", + "product_mpn": "ADA2466", + "product_master_category": "818", + "product_manufacturer": "Adafruit", + "product_price": "19.50", + "product_shipping_weight": "23.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2466", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2488", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2488-09.jpg", + "image_is_video": "0", + "product_name": "Adafruit METRO 328 - Arduino Compatible - with Headers", + "product_model": "ATmega328", + "product_mpn": "ADA2488", + "product_master_category": "818", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "26.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2488", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3345", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3345-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Metro 328 Starter Pack", + "product_model": "", + "product_mpn": "ADA3345", + "product_master_category": "818", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "344.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3345", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3505", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3505-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit METRO M0 Express - designed for CircuitPython", + "product_model": "ATSAMD21G18", + "product_mpn": "ADA3505", + "product_master_category": "818", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "25.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3505", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "70", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/70-03.jpg", + "image_is_video": "0", + "product_name": "FTDI Serial TTL-232 USB Cable", + "product_model": "", + "product_mpn": "ADA70", + "product_master_category": "819", + "product_manufacturer": null, + "product_price": "17.95", + "product_shipping_weight": "36.0", + "product_url": "https:\/\/www.adafruit.com\/product\/70", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "91", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/91-00.jpg", + "image_is_video": "0", + "product_name": "USB Boarduino (Arduino compatible) Kit w\/ATmega328", + "product_model": "v2.0", + "product_mpn": "ADA91", + "product_master_category": "819", + "product_manufacturer": "Adafruit", + "product_price": "25.00", + "product_shipping_weight": "15.1", + "product_url": "https:\/\/www.adafruit.com\/product\/91", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "25.00", + "discounted_percent": 0, + "show_qty": "1-4", + "min_qty": 1 + }, + { + "discounted_price": "22.50", + "discounted_percent": "10", + "show_qty": "5-99", + "min_qty": 5 + }, + { + "discounted_price": "20.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "72", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/72-00.jpg", + "image_is_video": "0", + "product_name": "DC Boarduino (Arduino compatible) Kit (w\/ATmega328)", + "product_model": "v1.0", + "product_mpn": "ADA72", + "product_master_category": "819", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "21.3", + "product_url": "https:\/\/www.adafruit.com\/product\/72", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.00", + "discounted_percent": "14", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2111", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2111-05.jpg", + "image_is_video": "0", + "product_name": "Intel\u00ae Edison w\/ Mini Breakout Board", + "product_model": "", + "product_mpn": "ADA2111", + "product_master_category": "820", + "product_manufacturer": "Intel", + "product_price": "74.95", + "product_shipping_weight": "90.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2111", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1637", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1637-00.jpg", + "image_is_video": "0", + "product_name": "Intel\u00ae Galileo Development Board - Arduino Certified", + "product_model": "", + "product_mpn": "ADA1637", + "product_master_category": "820", + "product_manufacturer": "Intel", + "product_price": "79.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1637", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2112", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2112-00.jpg", + "image_is_video": "0", + "product_name": "Intel\u00ae Edison Compute Module", + "product_model": "", + "product_mpn": "ADA2112", + "product_master_category": "820", + "product_manufacturer": "Intel", + "product_price": "49.95", + "product_shipping_weight": "88.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2112", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2188", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2188-00.jpg", + "image_is_video": "0", + "product_name": "Intel\u00ae Galileo Development Board (Gen 2) - Arduino Certified", + "product_model": "Gen 2", + "product_mpn": "ADA2188", + "product_master_category": "820", + "product_manufacturer": "Intel", + "product_price": "79.95", + "product_shipping_weight": "370.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2188", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2180", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2180-04.jpg", + "image_is_video": "0", + "product_name": "Intel\u00ae Edison R2 Kit w\/ Arduino Breakout Board", + "product_model": "", + "product_mpn": "ADA2180", + "product_master_category": "820", + "product_manufacturer": "Intel", + "product_price": "109.95", + "product_shipping_weight": "155.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2180", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3034", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3034-00.jpg", + "image_is_video": "0", + "product_name": "Seeeduino Cloud - Compatible with Arduino Yun", + "product_model": "", + "product_mpn": "ADA3034", + "product_master_category": "821", + "product_manufacturer": "SeeedStudio", + "product_price": "49.95", + "product_shipping_weight": "52.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3034", + "product_stock": "3", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-19", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "20+", + "min_qty": 20 + } + ] + }, + { + "product_id": "795", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/795-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit MENTA - Mint Tin Arduino Compatible Kit with Mint Tin", + "product_model": "", + "product_mpn": "ADA795", + "product_master_category": "821", + "product_manufacturer": "Adafruit", + "product_price": "35.00", + "product_shipping_weight": "92.0", + "product_url": "https:\/\/www.adafruit.com\/product\/795", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "35.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "29.75", + "discounted_percent": "15", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4540", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4540-01.jpg", + "image_is_video": "0", + "product_name": "Strain Gauge Load Cell - 4 Wires - 1Kg", + "product_model": "", + "product_mpn": "ADA4540", + "product_master_category": "822", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4540", + "product_stock": "0", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4630", + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4541", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4541-05.jpg", + "image_is_video": "0", + "product_name": "Strain Gauge Load Cell - 4 Wires - 5Kg", + "product_model": "", + "product_mpn": "ADA4541", + "product_master_category": "822", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4541", + "product_stock": "0", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4630", + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4542", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4542-01.jpg", + "image_is_video": "0", + "product_name": "Strain Gauge Load Cell - 4 Wires - 10Kg", + "product_model": "", + "product_mpn": "ADA4542", + "product_master_category": "822", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4542", + "product_stock": "0", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4630", + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4543", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4543-02.jpg", + "image_is_video": "0", + "product_name": "Strain Gauge Load Cell - 4 Wires - 20Kg", + "product_model": "", + "product_mpn": "ADA4543", + "product_master_category": "822", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "33.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4543", + "product_stock": "0", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "4630", + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "171", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/171-00.jpg", + "image_is_video": "0", + "product_name": "Motor party add-on pack for Arduino", + "product_model": "", + "product_mpn": "ADA171", + "product_master_category": "823", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "154.6", + "product_url": "https:\/\/www.adafruit.com\/product\/171", + "product_stock": "-3", + "products_hts": "8501.10.4060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1411", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1411-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 16-Channel 12-bit PWM\/Servo Shield - I2C interface", + "product_model": "", + "product_mpn": "ADA1411", + "product_master_category": "823", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "20.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1411", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1438", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1438-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Motor\/Stepper\/Servo Shield for Arduino v2 Kit", + "product_model": "v2.3", + "product_mpn": "ADA1438", + "product_master_category": "823", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "26.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1438", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "81", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/81-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Motor\/Stepper\/Servo Shield for Arduino kit", + "product_model": "v1.2", + "product_mpn": "ADA81", + "product_master_category": "823", + "product_manufacturer": "Adafruit", + "product_price": "19.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/81", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1750", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1750-00.jpg", + "image_is_video": "0", + "product_name": "Synthetos gShield (grblShield) V5", + "product_model": "", + "product_mpn": "ADA1750", + "product_master_category": "823", + "product_manufacturer": null, + "product_price": "63.00", + "product_shipping_weight": "32.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1750", + "product_stock": "43", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1749", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1749-00.jpg", + "image_is_video": "0", + "product_name": "TinyG CNC Controller Board v8", + "product_model": "", + "product_mpn": "ADA1749", + "product_master_category": "823", + "product_manufacturer": null, + "product_price": "165.00", + "product_shipping_weight": "82.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1749", + "product_stock": "14", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "715", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/715-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit I2C Controlled + Keypad Shield Kit for 16x2 LCD", + "product_model": "", + "product_mpn": "ADA715", + "product_master_category": "825", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "25.5", + "product_url": "https:\/\/www.adafruit.com\/product\/715", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1651", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1651-00.jpg", + "image_is_video": "0", + "product_name": "2.8\" TFT Touch Shield for Arduino with Resistive Touch Screen", + "product_model": "", + "product_mpn": "ADA1651", + "product_master_category": "825", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "65.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1651", + "product_stock": "81", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "376", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/376-00.jpg", + "image_is_video": "0", + "product_name": "2.8\" TFT Touch Shield for Arduino", + "product_model": "2.8\"", + "product_mpn": "ADA376", + "product_master_category": "825", + "product_manufacturer": null, + "product_price": "59.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/376", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "59.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.10", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "716", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/716-06.jpg", + "image_is_video": "0", + "product_name": "RGB LCD Shield Kit w\/ 16x2 Character Display - Only 2 pins used!", + "product_model": "POSITIVE DISPLAY", + "product_mpn": "ADA716", + "product_master_category": "825", + "product_manufacturer": "Adafruit", + "product_price": "23.95", + "product_shipping_weight": "67.1", + "product_url": "https:\/\/www.adafruit.com\/product\/716", + "product_stock": "-12", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "23.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "21.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1947", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1947-05.jpg", + "image_is_video": "0", + "product_name": "2.8\" TFT Touch Shield for Arduino w\/Capacitive Touch", + "product_model": "", + "product_mpn": "ADA1947", + "product_master_category": "825", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "70.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1947", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "714", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/714-07.jpg", + "image_is_video": "0", + "product_name": "RGB LCD Shield Kit w\/ 16x2 Character Display - Only 2 pins used!", + "product_model": "NEGATIVE DISPLAY", + "product_mpn": "ADA714", + "product_master_category": "825", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "66.8", + "product_url": "https:\/\/www.adafruit.com\/product\/714", + "product_stock": "0", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "772", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/772-03.jpg", + "image_is_video": "0", + "product_name": "LCD Shield Kit w\/ 16x2 Character Display - Only 2 pins used!", + "product_model": "BLUE AND WHITE", + "product_mpn": "ADA772", + "product_master_category": "825", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "55.9", + "product_url": "https:\/\/www.adafruit.com\/product\/772", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2746", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2746-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Bluefruit LE Shield - Bluetooth LE for Arduino", + "product_model": "", + "product_mpn": "ADA2746", + "product_master_category": "826", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "18.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2746", + "product_stock": "in stock", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3408", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3408-02.jpg", + "image_is_video": "0", + "product_name": "1Sheeld+ for iOS and Android", + "product_model": "", + "product_mpn": "ADA3408", + "product_master_category": "826", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "34.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3408", + "product_stock": "-3", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "249", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/249-03.jpg", + "image_is_video": "0", + "product_name": "Light and temperature data-logger pack", + "product_model": "", + "product_mpn": "ADA249", + "product_master_category": "827", + "product_manufacturer": "Adafruit", + "product_price": "23.95", + "product_shipping_weight": "99.8", + "product_url": "https:\/\/www.adafruit.com\/product\/249", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "23.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "21.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1141", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1141-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Assembled Data Logging shield for Arduino", + "product_model": "", + "product_mpn": "ADA1141", + "product_master_category": "827", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "40.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1141", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1272", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1272-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Ultimate GPS Logger Shield - Includes GPS Module", + "product_model": "", + "product_mpn": "ADA1272", + "product_master_category": "827", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "45.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1272", + "product_stock": "82", + "products_hts": "8526.91.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "98", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/98-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit GPS logger shield kit", + "product_model": "v1.1", + "product_mpn": "ADA98", + "product_master_category": "827", + "product_manufacturer": "Adafruit", + "product_price": "19.50", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/98", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "243", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/243-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Data logging shield for Arduino", + "product_model": "v1.0", + "product_mpn": "ADA243", + "product_master_category": "827", + "product_manufacturer": "Adafruit", + "product_price": "24.80", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/243", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.32", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "201", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/201-00.jpg", + "image_is_video": "0", + "product_name": "Arduino Ethernet shield R3 with micro SD connector - Assembled", + "product_model": "", + "product_mpn": "ADA201", + "product_master_category": "828", + "product_manufacturer": null, + "product_price": "45.00", + "product_shipping_weight": "40.7", + "product_url": "https:\/\/www.adafruit.com\/product\/201", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "45.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.50", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "36.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1491", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1491-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit HUZZAH CC3000 WiFi Shield with Onboard Antenna", + "product_model": "", + "product_mpn": "ADA1491", + "product_master_category": "828", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "14.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1491", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1534", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1534-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit CC3000 WiFi Shield with uFL Connector for Ext Antenna", + "product_model": "", + "product_mpn": "ADA1534", + "product_master_category": "828", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "14.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1534", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2891", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2891-00.jpg", + "image_is_video": "0", + "product_name": "Arduino WiFi Shield 101", + "product_model": "", + "product_mpn": "ADA2891", + "product_master_category": "828", + "product_manufacturer": "Arduino", + "product_price": "49.95", + "product_shipping_weight": "29.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2891", + "product_stock": "-3", + "products_hts": "8471.80.1000", + "products_coo": "IT", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3653", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3653-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit WINC1500 WiFi Shield with PCB Antenna", + "product_model": "", + "product_mpn": "ADA3653", + "product_master_category": "828", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3653", + "product_stock": "76", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3654", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3654-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit WINC1500 WiFi Shield with uFL Connector", + "product_model": "", + "product_mpn": "ADA3654", + "product_master_category": "828", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "18.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3654", + "product_stock": "51", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4285", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4285-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit AirLift Shield - ESP32 WiFi Co-Processor", + "product_model": "", + "product_mpn": "ADA4285", + "product_master_category": "828", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "19.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4285", + "product_stock": "71", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2771", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2771-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 Basic Proto", + "product_model": "", + "product_mpn": "ADA2771", + "product_master_category": "830", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2771", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2772", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2772-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 Basic Proto - ATSAMD21 Cortex M0", + "product_model": "", + "product_mpn": "ADA2772", + "product_master_category": "830", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2772", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2795", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2795-10.jpg", + "image_is_video": "1", + "product_name": "Adafruit Feather 32u4 Adalogger", + "product_model": "", + "product_mpn": "ADA2795", + "product_master_category": "830", + "product_manufacturer": "Adafruit", + "product_price": "21.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2795", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3403", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3403-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 Express - Designed for CircuitPython", + "product_model": "ATSAMD21 Cortex M0", + "product_mpn": "ADA3403", + "product_master_category": "830", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3403", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2830", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2830-00.jpg", + "image_is_video": "0", + "product_name": "Stacking Headers for Feather - 12-pin and 16-pin female headers", + "product_model": "", + "product_mpn": "ADA2830", + "product_master_category": "831", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2830", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2886", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2886-00.jpg", + "image_is_video": "0", + "product_name": "Header Kit for Feather - 12-pin and 16-pin Female Header Set", + "product_model": "", + "product_mpn": "ADA2886", + "product_master_category": "831", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2886", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3002", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3002-00.jpg", + "image_is_video": "0", + "product_name": "Short Feather Male Headers - 12-pin and 16-pin Male Header Set", + "product_model": "", + "product_mpn": "ADA3002", + "product_master_category": "831", + "product_manufacturer": null, + "product_price": "0.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3002", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1222", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1222-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit GEMMA v2 - Miniature wearable electronic platform", + "product_model": "", + "product_mpn": "ADA1222", + "product_master_category": "833", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1222", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3501", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3501-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit GEMMA M0 - Miniature wearable electronic platform", + "product_model": "", + "product_mpn": "ADA3501", + "product_master_category": "833", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3501", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2709", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2709-00.jpg", + "image_is_video": "0", + "product_name": "Zebra Byte Case for Adafruit Metro Mini", + "product_model": "", + "product_mpn": "ADA2709", + "product_master_category": "834", + "product_manufacturer": "C4 Labs", + "product_price": "5.50", + "product_shipping_weight": "16.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2709", + "product_stock": "12", + "products_hts": "8538.10.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4775", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4775-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Metro ESP32-S2", + "product_model": "", + "product_mpn": "ADA4775", + "product_master_category": "834", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "26.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4775", + "product_stock": "in stock", + "products_hts": "8473.30.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2780", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2780-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 220 ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA2780", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2780", + "product_stock": "in stock", + "products_hts": "8533.10.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2781", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2781-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 470 ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA2781", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2781", + "product_stock": "in stock", + "products_hts": "8533.10.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2782", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2782-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 2.2K ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA2782", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2782", + "product_stock": "in stock", + "products_hts": "8533.10.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2783", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2783-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 4.7K ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA2783", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2783", + "product_stock": "83", + "products_hts": "8533.10.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2784", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2784-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 10K ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA2784", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2784", + "product_stock": "in stock", + "products_hts": "8533.10.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2785", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2785-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 22K ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA2785", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2785", + "product_stock": "27", + "products_hts": "8533.10.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2786", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2786-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 47K ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA2786", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2786", + "product_stock": "10", + "products_hts": "8533.10.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2787", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2787-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 100K ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA2787", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2787", + "product_stock": "71", + "products_hts": "8533.10.0070", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4293", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4293-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 100 ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA4293", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4293", + "product_stock": "in stock", + "products_hts": "8533.29.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4294", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4294-00.jpg", + "image_is_video": "0", + "product_name": "Through-Hole Resistors - 1.0K ohm 5% 1\/4W - Pack of 25", + "product_model": "", + "product_mpn": "ADA4294", + "product_master_category": "837", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4294", + "product_stock": "in stock", + "products_hts": "8533.29.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2892", + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1577", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1577-00.jpg", + "image_is_video": "0", + "product_name": "Costume Goggles", + "product_model": "", + "product_mpn": "ADA1577", + "product_master_category": "838", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "147.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1577", + "product_stock": "23", + "products_hts": "9004.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "659", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/659-07.jpg", + "image_is_video": "0", + "product_name": "FLORA - Wearable electronic platform: Arduino-compatible", + "product_model": "v3", + "product_mpn": "ADA659", + "product_master_category": "839", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "5.8", + "product_url": "https:\/\/www.adafruit.com\/product\/659", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1246", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1246-00.jpg", + "image_is_video": "0", + "product_name": "Flora Lux Sensor - TSL2561 Light Sensor", + "product_model": "v1.0", + "product_mpn": "ADA1246", + "product_master_category": "839", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1246", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2487", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2487-03.jpg", + "image_is_video": "0", + "product_name": "Flora Wearable Bluefruit LE Module", + "product_model": "", + "product_mpn": "ADA2487", + "product_master_category": "839", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2487", + "product_stock": "in stock", + "products_hts": "8525.20.3080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1060", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1060-00.jpg", + "image_is_video": "0", + "product_name": "Flora RGB Smart NeoPixel version 1 - Pack of 4", + "product_model": "", + "product_mpn": "ADA1060", + "product_master_category": "839", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1060", + "product_stock": "-3", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1981", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1981-02.jpg", + "image_is_video": "0", + "product_name": "Flora UV Index Sensor - Si1145 Light Sensor", + "product_model": "", + "product_mpn": "ADA1981", + "product_master_category": "839", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1981", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1356", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1356-00.jpg", + "image_is_video": "0", + "product_name": "Flora Color Sensor with White Illumination LED - TCS34725", + "product_model": "", + "product_mpn": "ADA1356", + "product_master_category": "839", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "1.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1356", + "product_stock": "92", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1059", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1059-05.jpg", + "image_is_video": "0", + "product_name": "Flora Wearable Ultimate GPS Module", + "product_model": "", + "product_mpn": "ADA1059", + "product_master_category": "839", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1059", + "product_stock": "in stock", + "products_hts": "8526.91.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1260", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1260-00.jpg", + "image_is_video": "0", + "product_name": "Flora RGB Smart NeoPixel version 2 - Pack of 4", + "product_model": "", + "product_mpn": "ADA1260", + "product_master_category": "839", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1260", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1092", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1092-01.jpg", + "image_is_video": "0", + "product_name": "Tactile On\/Off Switch with Leads", + "product_model": "", + "product_mpn": "ADA1092", + "product_master_category": "840", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1092", + "product_stock": "in stock", + "products_hts": "8536.50.9031", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1592", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1592-00.jpg", + "image_is_video": "0", + "product_name": "Short Wire Alligator Clip Test Lead (set of 12)", + "product_model": "", + "product_mpn": "ADA1592", + "product_master_category": "840", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "45.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1592", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2470", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2470-07.jpg", + "image_is_video": "1", + "product_name": "Arduino GEMMA - Miniature wearable electronic platform", + "product_model": "", + "product_mpn": "ADA2470", + "product_master_category": "843", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2470", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1167", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1167-03.jpg", + "image_is_video": "0", + "product_name": "Knit Conductive Fabric - Silver 20cm square", + "product_model": "", + "product_mpn": "ADA1167", + "product_master_category": "845", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1167", + "product_stock": "in stock", + "products_hts": "5907.00.8090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1168", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1168-03.jpg", + "image_is_video": "0", + "product_name": "Woven Conductive Fabric - 20cm square", + "product_model": "", + "product_mpn": "ADA1168", + "product_master_category": "845", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "7.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1168", + "product_stock": "in stock", + "products_hts": "5809.00.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1364", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1364-04.jpg", + "image_is_video": "0", + "product_name": "Knit Jersey Conductive Fabric - 20cm square", + "product_model": "", + "product_mpn": "ADA1364", + "product_master_category": "845", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "12.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1364", + "product_stock": "in stock", + "products_hts": "5809.00.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3669", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3669-05.jpg", + "image_is_video": "1", + "product_name": "Eeonyx Stretchy Variable Resistance Sensor Fabric", + "product_model": "LTT-SLPA-20K", + "product_mpn": "ADA3669", + "product_master_category": "845", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "19.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3669", + "product_stock": "0", + "products_hts": "6004.10.0085", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1139", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1139-01.jpg", + "image_is_video": "0", + "product_name": "Conductive thread ribbon cable - White - 1 yard", + "product_model": "", + "product_mpn": "ADA1139", + "product_master_category": "846", + "product_manufacturer": null, + "product_price": "5.25", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1139", + "product_stock": "-3", + "products_hts": "5806.32.1090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1243", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1243-04.jpg", + "image_is_video": "0", + "product_name": "Stainless Steel Conductive Ribbon - 17mm wide 1 meter long", + "product_model": "", + "product_mpn": "ADA1243", + "product_master_category": "846", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "15.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1243", + "product_stock": "18", + "products_hts": "7326.90.8588", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1244", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1244-07.jpg", + "image_is_video": "0", + "product_name": "Stainless Steel Conductive Ribbon - 5mm wide 1 meter long", + "product_model": "", + "product_mpn": "ADA1244", + "product_master_category": "846", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1244", + "product_stock": "20", + "products_hts": "7326.90.8588", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1424", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1424-03.jpg", + "image_is_video": "0", + "product_name": "Conductive thread ribbon cable - Black - 1 yard", + "product_model": "", + "product_mpn": "ADA1424", + "product_master_category": "846", + "product_manufacturer": null, + "product_price": "5.25", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1424", + "product_stock": "-3", + "products_hts": "5806.32.1090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.73", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "519", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/519-03.jpg", + "image_is_video": "0", + "product_name": "Conductive Rubber Cord Stretch Sensor + extras!", + "product_model": "", + "product_mpn": "ADA519", + "product_master_category": "847", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "7.9", + "product_url": "https:\/\/www.adafruit.com\/product\/519", + "product_stock": "in stock", + "products_hts": "4016.99.6050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1088", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1088-03.jpg", + "image_is_video": "0", + "product_name": "Conductive Fiber - Stainless Steel 20um - 10 grams", + "product_model": "", + "product_mpn": "ADA1088", + "product_master_category": "847", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "13.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1088", + "product_stock": "in stock", + "products_hts": "7326.90.8588", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1324", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1324-04.jpg", + "image_is_video": "0", + "product_name": "Conductive Hook & Loop Tape - 3\" long", + "product_model": "", + "product_mpn": "ADA1324", + "product_master_category": "847", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1324", + "product_stock": "in stock", + "products_hts": "5806.10.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1361", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1361-00.jpg", + "image_is_video": "0", + "product_name": "Pressure-Sensitive Conductive Sheet (Velostat\/Linqstat)", + "product_model": "", + "product_mpn": "ADA1361", + "product_master_category": "847", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "21.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1361", + "product_stock": "in stock", + "products_hts": "3920.69.0000", + "products_coo": "CA", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1656", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1656-00.jpg", + "image_is_video": "0", + "product_name": "3M Z-Axis Conductive Tape 9703 - 2\"x6\" (50mm x 150mm) Strip", + "product_model": "", + "product_mpn": "ADA1656", + "product_master_category": "847", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1656", + "product_stock": "in stock", + "products_hts": "3919.90.5030", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1894", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1894-01.jpg", + "image_is_video": "0", + "product_name": "Flex PCB Material - 6\" by 6\" Square", + "product_model": "Shengyi SF305", + "product_mpn": "ADA1894", + "product_master_category": "847", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "13.3", + "product_url": "https:\/\/www.adafruit.com\/product\/1894", + "product_stock": "in stock", + "products_hts": "8544.49.30", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2273", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2273-01.jpg", + "image_is_video": "0", + "product_name": "Soft Potentiometer Kit from Plug&Wear", + "product_model": "", + "product_mpn": "ADA2273", + "product_master_category": "847", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2273", + "product_stock": "-3", + "products_hts": "7326.90.8588", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5019", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5019-03.jpg", + "image_is_video": "0", + "product_name": "Thick Double-Sided Rectangle Foam Tape - 2 pieces", + "product_model": "3\/4\" x 1.5\" x 0.063\"", + "product_mpn": "ADA5019", + "product_master_category": "847", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "1.7", + "product_url": "https:\/\/www.adafruit.com\/product\/5019", + "product_stock": "in stock", + "products_hts": "3919.10.2055", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1373", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1373-03.jpg", + "image_is_video": "0", + "product_name": "Fabric Ribbon 4-Channel Wire - 1 yard", + "product_model": "", + "product_mpn": "ADA1373", + "product_master_category": "847", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1373", + "product_stock": "-3", + "products_hts": "5806.32.1090", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1136", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1136-01.jpg", + "image_is_video": "0", + "product_name": "E1115 PS\/2 Keyboard to TTL Serial Converter", + "product_model": "", + "product_mpn": "ADA1136", + "product_master_category": "848", + "product_manufacturer": null, + "product_price": "17.95", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/1136", + "product_stock": "15", + "products_hts": "8542.31.99", + "products_coo": "CA", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2063", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2063-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter - 1KG", + "product_model": "Silver", + "product_mpn": "ADA2063", + "product_master_category": "850", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,468.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2063", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2146", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2146-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter - Blue - 1KG", + "product_model": "", + "product_mpn": "ADA2146", + "product_master_category": "850", + "product_manufacturer": "PRINTinZ", + "product_price": "44.95", + "product_shipping_weight": "1,439.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2146", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "2150", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2150-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter - Green - 1KG", + "product_model": "", + "product_mpn": "ADA2150", + "product_master_category": "850", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,439.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2150", + "product_stock": "0", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3059", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3059-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter", + "product_model": "Natural White", + "product_mpn": "ADA3059", + "product_master_category": "850", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,440.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3059", + "product_stock": "-3", + "products_hts": "3910.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3069", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3069-01.jpg", + "image_is_video": "0", + "product_name": "PLA Filament for 3D Printers - 1.75mm Diameter - Teal - 1KG", + "product_model": "", + "product_mpn": "ADA3069", + "product_master_category": "850", + "product_manufacturer": "PRINTinZ", + "product_price": "39.95", + "product_shipping_weight": "1,452.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3069", + "product_stock": "-3", + "products_hts": "3916.90.3000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": "2080", + "discount_pricing": [] + }, + { + "product_id": "3657", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3657-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit ATSAMD09 Breakout with seesaw", + "product_model": "", + "product_mpn": "ADA3657", + "product_master_category": "851", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3657", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4385", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4385-03.jpg", + "image_is_video": "0", + "product_name": "Google Coral Development Board", + "product_model": "", + "product_mpn": "ADA4385", + "product_master_category": "851", + "product_manufacturer": "Google", + "product_price": "175.00", + "product_shipping_weight": "136.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4385", + "product_stock": "11", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4500", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4500-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit CLUE - nRF52840 Express with Bluetooth LE", + "product_model": "", + "product_mpn": "ADA4500", + "product_master_category": "851", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4500", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "255", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/255-01.jpg", + "image_is_video": "0", + "product_name": "ChronoDot - Ultra-precise Real Time Clock", + "product_model": "v2.1", + "product_mpn": "ADA255", + "product_master_category": "858", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/255", + "product_stock": "28", + "products_hts": "8542.31.99", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "264", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/264-00.jpg", + "image_is_video": "0", + "product_name": "DS1307 Real Time Clock breakout board kit", + "product_model": "", + "product_mpn": "ADA264", + "product_master_category": "858", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/264", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2045", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2045-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Si5351A Clock Generator Breakout Board - 8KHz to 160MHz", + "product_model": "", + "product_mpn": "ADA2045", + "product_master_category": "858", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2045", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3013", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3013-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit DS3231 Precision RTC Breakout", + "product_model": "", + "product_mpn": "ADA3013", + "product_master_category": "858", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3013", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3295", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3295-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit PCF8523 Real Time Clock Assembled Breakout Board", + "product_model": "", + "product_mpn": "ADA3295", + "product_master_category": "858", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3295", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3296", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3296-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit DS1307 Real Time Clock Assembled Breakout Board", + "product_model": "", + "product_mpn": "ADA3296", + "product_master_category": "858", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3296", + "product_stock": "48", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3386", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3386-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PiRTC - PCF8523 Real Time Clock for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3386", + "product_master_category": "858", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3386", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4282", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4282-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit PiRTC - Precise DS3231 Real Time Clock for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4282", + "product_master_category": "858", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4282", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1958", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1958-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Stereo FM Transmitter with RDS\/RBDS Breakout - Si4713", + "product_model": "", + "product_mpn": "ADA1958", + "product_master_category": "859", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "6.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1958", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3070", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3070-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit RFM69HCW Transceiver Radio Breakout - 868 or 915 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3070", + "product_master_category": "859", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3070", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3071", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3071-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit RFM69HCW Transceiver Radio Breakout - 433 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3071", + "product_master_category": "859", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "5.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3071", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4521", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4521-01.jpg", + "image_is_video": "0", + "product_name": "RockBLOCK 9603 with USB Cable - Iridium Satellite Modem Bundle", + "product_model": "", + "product_mpn": "ADA4521", + "product_master_category": "859", + "product_manufacturer": null, + "product_price": "249.95", + "product_shipping_weight": "137.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4521", + "product_stock": "30", + "products_hts": "8517.62.0090", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1551", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1551-00.jpg", + "image_is_video": "0", + "product_name": "DS2413 1-Wire Two GPIO Controller Breakout", + "product_model": "", + "product_mpn": "ADA1551", + "product_master_category": "861", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "2.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1551", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2264", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2264-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit FT232H Breakout - General Purpose USB to GPIO, SPI, I2C", + "product_model": "USB C & Stemma QT", + "product_mpn": "ADA2264", + "product_master_category": "861", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2264", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2471", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2471-10.jpg", + "image_is_video": "0", + "product_name": "Adafruit HUZZAH ESP8266 Breakout", + "product_model": "", + "product_mpn": "ADA2471", + "product_master_category": "862", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2471", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2491", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2491-03.jpg", + "image_is_video": "0", + "product_name": "ESP8266 SMT Module", + "product_model": "ESP-12F", + "product_mpn": "ADA2491", + "product_master_category": "862", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2491", + "product_stock": "in stock", + "products_hts": "8525.20.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3060", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3060-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit ATWINC1500 WiFi Breakout with uFL Connector", + "product_model": "fw 19.4.4", + "product_mpn": "ADA3060", + "product_master_category": "862", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "6.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3060", + "product_stock": "33", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3269", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3269-11.jpg", + "image_is_video": "0", + "product_name": "Espressif ESP32 Development Board - Developer Edition", + "product_model": "", + "product_mpn": "ADA3269", + "product_master_category": "862", + "product_manufacturer": "Espressif", + "product_price": "15.00", + "product_shipping_weight": "33.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3269", + "product_stock": "36", + "products_hts": "8525.20.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3384", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3384-08.jpg", + "image_is_video": "0", + "product_name": "Espressif ESP32 WROVER KIT", + "product_model": "VB", + "product_mpn": "ADA3384", + "product_master_category": "862", + "product_manufacturer": "Espressif", + "product_price": "49.95", + "product_shipping_weight": "77.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3384", + "product_stock": "-2", + "products_hts": "8525.20.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4363", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4363-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit AirLift Bitsy Add-On \u2013 ESP32 WiFi Co-Processor", + "product_model": "", + "product_mpn": "ADA4363", + "product_master_category": "862", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4363", + "product_stock": "64", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2282", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2282-00.jpg", + "image_is_video": "0", + "product_name": "ESP8266 WiFi Module", + "product_model": "", + "product_mpn": "ADA2282", + "product_master_category": "862", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "2.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2282", + "product_stock": "-3", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "254", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/254-05.jpg", + "image_is_video": "0", + "product_name": "MicroSD card breakout board+", + "product_model": "", + "product_mpn": "ADA254", + "product_master_category": "863", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/254", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1895", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1895-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit I2C Non-Volatile FRAM Breakout - 256Kbit \/ 32KByte", + "product_model": "", + "product_mpn": "ADA1895", + "product_master_category": "863", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "3.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1895", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1897", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1897-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit SPI Non-Volatile FRAM Breakout - 64Kbit \/ 8KByte", + "product_model": "", + "product_mpn": "ADA1897", + "product_master_category": "863", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "3.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1897", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4677", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4677-03.jpg", + "image_is_video": "0", + "product_name": "Generic 64 Mbit Serial Pseudo SRAM - 3.3V 133 MHz", + "product_model": "", + "product_mpn": "ADA4677", + "product_master_category": "863", + "product_manufacturer": null, + "product_price": "1.75", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4677", + "product_stock": "in stock", + "products_hts": "8542.32.0002", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.58", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4682", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4682-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Micro SD SPI or SDIO Card Breakout Board - 3V ONLY!", + "product_model": "", + "product_mpn": "ADA4682", + "product_master_category": "863", + "product_manufacturer": "Adafruit", + "product_price": "2.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4682", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4718", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4718-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit SPI Non-Volatile FRAM Breakout - 2 Mbit \/ 256 KBytes", + "product_model": "MB85RS2MTA", + "product_mpn": "ADA4718", + "product_master_category": "863", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4718", + "product_stock": "34", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4719", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4719-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit SPI Non-Volatile FRAM Breakout - 4 Mbit \/ 512 KBytes", + "product_model": "MB85RS4MT", + "product_mpn": "ADA4719", + "product_master_category": "863", + "product_manufacturer": "Adafruit", + "product_price": "17.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4719", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4899", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4899-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit SPI Flash SD Card - XTSD 512 MB", + "product_model": "", + "product_mpn": "ADA4899", + "product_master_category": "863", + "product_manufacturer": "Adafruit", + "product_price": "9.50", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4899", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.55", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "395", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/395-06.jpg", + "image_is_video": "0", + "product_name": "8-channel Bi-directional Logic Level Converter", + "product_model": "TXB0108", + "product_mpn": "ADA395", + "product_master_category": "864", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/395", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "757", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/757-03.jpg", + "image_is_video": "0", + "product_name": "4-channel I2C-safe Bi-directional Logic Level Converter", + "product_model": "BSS138", + "product_mpn": "ADA757", + "product_master_category": "864", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/757", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1875", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1875-00.jpg", + "image_is_video": "0", + "product_name": "TXB0104 Bi-Directional Level Shifter", + "product_model": "TXB0104", + "product_mpn": "ADA1875", + "product_master_category": "864", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "3.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1875", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2717", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2717-00.jpg", + "image_is_video": "0", + "product_name": "TCA9548A I2C Multiplexer", + "product_model": "", + "product_mpn": "ADA2717", + "product_master_category": "864", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "5.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2717", + "product_stock": "in stock", + "products_hts": "8537.10.9050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3975", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3975-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPXL8 Friend - 8 x Strands NeoPixel Level Shifter", + "product_model": "", + "product_mpn": "ADA3975", + "product_master_category": "864", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "14.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3975", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4704", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4704-05.jpg", + "image_is_video": "0", + "product_name": "SparkFun STEMMA QT \/ Qwiic Mux Breakout - 8 Channel", + "product_model": "", + "product_mpn": "ADA4704", + "product_master_category": "864", + "product_manufacturer": "Sparkfun Electronics", + "product_price": "11.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4704", + "product_stock": "in stock", + "products_hts": "9503.00.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4886", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4886-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit AW9523 GPIO Expander and LED Driver Breakout", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4886", + "product_master_category": "864", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4886", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4903", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4903-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit ISO1540 Bidirectional I2C Isolator", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4903", + "product_master_category": "864", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4903", + "product_stock": "49", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5159", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5159-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit TCA4307 Hot-Swap I2C Buffer with Stuck Bus Recovery", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA5159", + "product_master_category": "864", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/5159", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2305", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2305-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit DRV2605L Haptic Motor Controller", + "product_model": "", + "product_mpn": "ADA2305", + "product_master_category": "865", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2305", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2448", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2448-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit TB6612 1.2A DC\/Stepper Motor Driver Breakout Board", + "product_model": "", + "product_mpn": "ADA2448", + "product_master_category": "865", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2448", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3190", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3190-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit DRV8871 DC Motor Driver Breakout Board - 3.6A Max", + "product_model": "", + "product_mpn": "ADA3190", + "product_master_category": "865", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "6.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3190", + "product_stock": "99", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3297", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3297-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit DRV8833 DC\/Stepper Motor Driver Breakout Board", + "product_model": "", + "product_mpn": "ADA3297", + "product_master_category": "865", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3297", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3567", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3567-00.jpg", + "image_is_video": "0", + "product_name": "RageBridge v2 from Equal Zero Designs", + "product_model": "", + "product_mpn": "ADA3567", + "product_master_category": "865", + "product_manufacturer": "Equals Zero Designs", + "product_price": "199.95", + "product_shipping_weight": "194.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3567", + "product_stock": "19", + "products_hts": "8542.90.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1429", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1429-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 24-Channel 12-bit PWM LED Driver - SPI Interface", + "product_model": "TLC5947", + "product_mpn": "ADA1429", + "product_master_category": "866", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1429", + "product_stock": "in stock", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1455", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1455-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 12-Channel 16-bit PWM LED Driver - SPI Interface", + "product_model": "TLC59711", + "product_mpn": "ADA1455", + "product_master_category": "866", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/1455", + "product_stock": "85", + "products_hts": "8542.31.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1946", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1946-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA - Mini Cellular GSM Breakout uFL Version", + "product_model": "", + "product_mpn": "ADA1946", + "product_master_category": "867", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "11.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1946", + "product_stock": "18", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2636", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2636-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA 808 Shield - Mini Cellular GSM + GPS for Arduino", + "product_model": "", + "product_mpn": "ADA2636", + "product_master_category": "867", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "23.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2636", + "product_stock": "51", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3147", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3147-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit FONA 3G Cellular Breakout - American version", + "product_model": "FREE Ting Sim Card w\/ Purchase!", + "product_mpn": "ADA3147", + "product_master_category": "867", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "21.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3147", + "product_stock": "49", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2696", + "discount_pricing": [] + }, + { + "product_id": "2884", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2884-03.jpg", + "image_is_video": "0", + "product_name": "FeatherWing Proto - Prototyping Add-on For All Feather Boards", + "product_model": "", + "product_mpn": "ADA2884", + "product_master_category": "871", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "6.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2884", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2890", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2890-01.jpg", + "image_is_video": "0", + "product_name": "FeatherWing Doubler - Prototyping Add-on For All Feather Boards", + "product_model": "", + "product_mpn": "ADA2890", + "product_master_category": "871", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2890", + "product_stock": "0", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2922", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2922-06.jpg", + "image_is_video": "0", + "product_name": "Adalogger FeatherWing - RTC + SD Add-on For All Feather Boards", + "product_model": "", + "product_mpn": "ADA2922", + "product_master_category": "871", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2922", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3417", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3417-05.jpg", + "image_is_video": "0", + "product_name": "FeatherWing Tripler Mini Kit - Prototyping Add-on For Feathers", + "product_model": "", + "product_mpn": "ADA3417", + "product_master_category": "871", + "product_manufacturer": "Adafruit", + "product_price": "8.50", + "product_shipping_weight": "18.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3417", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3622", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3622-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit AMG8833 IR Thermal Camera FeatherWing", + "product_model": "", + "product_mpn": "ADA3622", + "product_master_category": "871", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3622", + "product_stock": "38", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3650", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3650-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit INA219 FeatherWing", + "product_model": "", + "product_mpn": "ADA3650", + "product_master_category": "871", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3650", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4969", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4969-05.jpg", + "image_is_video": "1", + "product_name": "Gameduino 3X Dazzler for Feather M4 by Excamera Labs", + "product_model": "", + "product_mpn": "ADA4969", + "product_master_category": "871", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "37.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4969", + "product_stock": "33", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2124", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2124-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit LiIon\/LiPoly Backpack Add-On for Pro Trinket\/ItsyBitsy", + "product_model": "", + "product_mpn": "ADA2124", + "product_master_category": "872", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2124", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "352", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/352-03.jpg", + "image_is_video": "0", + "product_name": "12V 5A switching power supply", + "product_model": "", + "product_mpn": "ADA352", + "product_master_category": "874", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "344.7", + "product_url": "https:\/\/www.adafruit.com\/product\/352", + "product_stock": "in stock", + "products_hts": "8504.40.9520", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "798", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/798-05.jpg", + "image_is_video": "0", + "product_name": "12V DC 1000mA (1A) regulated switching power adapter - UL listed", + "product_model": "", + "product_mpn": "ADA798", + "product_master_category": "874", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "106.6", + "product_url": "https:\/\/www.adafruit.com\/product\/798", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1448", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1448-08.jpg", + "image_is_video": "0", + "product_name": "Compact Switching Power Supply - Selectable Output 3-12VDC", + "product_model": "", + "product_mpn": "ADA1448", + "product_master_category": "874", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "178.4", + "product_url": "https:\/\/www.adafruit.com\/product\/1448", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2591", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2591-04.jpg", + "image_is_video": "0", + "product_name": "Switching Split Power Supply \u00b1 12V 500mA Split Supply", + "product_model": "", + "product_mpn": "ADA2591", + "product_master_category": "874", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "141.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2591", + "product_stock": "16", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4880", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4880-06.jpg", + "image_is_video": "1", + "product_name": "Adjustable Power Supply with 2.1mm \/ 5.5mm DC - 3V to 12V at 5A", + "product_model": "", + "product_mpn": "ADA4880", + "product_master_category": "874", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "230.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4880", + "product_stock": "in stock", + "products_hts": "8504.40.9510", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4864", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4864-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Pico RP2040", + "product_model": "", + "product_mpn": "ADA4864", + "product_master_category": "875", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "4.00", + "product_shipping_weight": "4.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4864", + "product_stock": "99", + "products_hts": "8473.30.1180", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4883", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4883-06.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Pico RP2040 with Loose Unsoldered Headers", + "product_model": "", + "product_mpn": "ADA4883", + "product_master_category": "875", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "5.00", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4883", + "product_stock": "95", + "products_hts": "8473.30.3000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4884", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4884-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather RP2040", + "product_model": "", + "product_mpn": "ADA4884", + "product_master_category": "875", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4884", + "product_stock": "0", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "4888", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4888-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit ItsyBitsy RP2040", + "product_model": "", + "product_mpn": "ADA4888", + "product_master_category": "875", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4888", + "product_stock": "6", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4898", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4898-02.jpg", + "image_is_video": "0", + "product_name": "Get Started with MicroPython on Raspberry Pi Pico", + "product_model": "2nd Impression", + "product_mpn": "ADA4898", + "product_master_category": "875", + "product_manufacturer": null, + "product_price": "13.95", + "product_shipping_weight": "275.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4898", + "product_stock": "in stock", + "products_hts": "4901.99.0050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4900", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4900-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit QT Py RP2040", + "product_model": "", + "product_mpn": "ADA4900", + "product_master_category": "875", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4900", + "product_stock": "0", + "products_hts": "9025.19.8080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4901", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4901-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit GPIO Reference Card for Raspberry Pi Pico", + "product_model": "", + "product_mpn": "ADA4901", + "product_master_category": "875", + "product_manufacturer": "Adafruit", + "product_price": "0.50", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4901", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5041", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5041-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi RP2040 Microcontroller - Single Surface Mount Chip", + "product_model": "", + "product_mpn": "ADA5041", + "product_master_category": "875", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "1.00", + "product_shipping_weight": "1.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5041", + "product_stock": "-3", + "products_hts": "8542.39.9000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5042", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5042-03.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi RP2040 Microcontroller - Surface Mount Chips", + "product_model": "10 Pack", + "product_mpn": "ADA5042", + "product_master_category": "875", + "product_manufacturer": null, + "product_price": "10.00", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5042", + "product_stock": "-3", + "products_hts": "8542.39.9000", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5095", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5095-05.jpg", + "image_is_video": "0", + "product_name": "Terminal Block Breakout Module for Raspberry Pi Pico", + "product_model": "Screw Mount Version", + "product_mpn": "ADA5095", + "product_master_category": "875", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "94.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5095", + "product_stock": "0", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5096", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5096-00.jpg", + "image_is_video": "0", + "product_name": "Terminal Block Breakout Module Board for Raspberry Pi Pico", + "product_model": "", + "product_mpn": "ADA5096", + "product_master_category": "875", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "108.8", + "product_url": "https:\/\/www.adafruit.com\/product\/5096", + "product_stock": "0", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5129", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5129-00.jpg", + "image_is_video": "0", + "product_name": "Maker Pi RP2040 - Motor and Robot Controller", + "product_model": "", + "product_mpn": "ADA5129", + "product_master_category": "875", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "70.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5129", + "product_stock": "37", + "products_hts": "8542.39.00.00", + "products_coo": "MY", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5160", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5160-07.jpg", + "image_is_video": "0", + "product_name": "Maker Pi Pico Base - Raspberry Pi Pico Not Included", + "product_model": "", + "product_mpn": "ADA5160", + "product_master_category": "875", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "54.7", + "product_url": "https:\/\/www.adafruit.com\/product\/5160", + "product_stock": "27", + "products_hts": "8542.39.00.00", + "products_coo": "MY", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3031", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3031-02.jpg", + "image_is_video": "0", + "product_name": "Microsoft Azure IoT Starter Kit w\/ Adafruit Feather M0 WiFi", + "product_model": "", + "product_mpn": "ADA3031", + "product_master_category": "878", + "product_manufacturer": "Adafruit", + "product_price": "106.95", + "product_shipping_weight": "1,361.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3031", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "106.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "96.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "85.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3032", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3032-02.jpg", + "image_is_video": "0", + "product_name": "Microsoft Azure IoT Starter Kit w\/ Adafruit Feather HUZZAH", + "product_model": "", + "product_mpn": "ADA3032", + "product_master_category": "878", + "product_manufacturer": "Adafruit", + "product_price": "46.95", + "product_shipping_weight": "1,361.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3032", + "product_stock": "15", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "46.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "42.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "37.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3604", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3604-02.jpg", + "image_is_video": "0", + "product_name": "Microsoft Hackster.io Virtual IoT Pack \u2013 No Pi", + "product_model": "", + "product_mpn": "ADA3604", + "product_master_category": "878", + "product_manufacturer": "Adafruit", + "product_price": "184.95", + "product_shipping_weight": "1,050.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3604", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "3608", + "discount_pricing": [] + }, + { + "product_id": "3605", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3605-02.jpg", + "image_is_video": "0", + "product_name": "Microsoft Hackster.io Virtual IoT Pack \u2013 w\/ Raspberry Pi 3", + "product_model": "", + "product_mpn": "ADA3605", + "product_master_category": "878", + "product_manufacturer": "Adafruit", + "product_price": "219.95", + "product_shipping_weight": "1,103.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3605", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "3608", + "discount_pricing": [] + }, + { + "product_id": "3606", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3606-00.jpg", + "image_is_video": "0", + "product_name": "Mongoose OS & Google IoT Core Pack w\/ Adafruit Feather HUZZAH32", + "product_model": "", + "product_mpn": "ADA3606", + "product_master_category": "878", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "355.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3606", + "product_stock": "27", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "54.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "49.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "43.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4420", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4420-01.jpg", + "image_is_video": "0", + "product_name": "Sony Spresense Pack - Main Board + Extension Board + Camera", + "product_model": "", + "product_mpn": "ADA4420", + "product_master_category": "878", + "product_manufacturer": null, + "product_price": "130.00", + "product_shipping_weight": "73.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4420", + "product_stock": "16", + "products_hts": "8542.90.0000", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4450", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4450-01.jpg", + "image_is_video": "0", + "product_name": "Smart Home Kit for Digi-Key IoT Studio - Feather ESP32 + Parts", + "product_model": "", + "product_mpn": "ADA4450", + "product_master_category": "878", + "product_manufacturer": "Adafruit", + "product_price": "89.95", + "product_shipping_weight": "393.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4450", + "product_stock": "-1", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "89.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "80.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "71.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3446", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3446-01.jpg", + "image_is_video": "0", + "product_name": "Pi Foundation Raspberry Pi Zero Case + Mini Camera Cable", + "product_model": "", + "product_mpn": "ADA3446", + "product_master_category": "880", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "5.95", + "product_shipping_weight": "29.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3446", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4822", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4822-06.jpg", + "image_is_video": "0", + "product_name": "Flirc Aluminum Case for Raspberry Pi Zero \/ Zero WH", + "product_model": "", + "product_mpn": "ADA4822", + "product_master_category": "880", + "product_manufacturer": null, + "product_price": "13.50", + "product_shipping_weight": "44.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4822", + "product_stock": "56", + "products_hts": "3923.10.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2814", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2814-01.jpg", + "image_is_video": "0", + "product_name": "Google AIY Voice Kit for Raspberry Pi - Starter Pack", + "product_model": "", + "product_mpn": "ADA2814", + "product_master_category": "881", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "676.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2814", + "product_stock": "-3", + "products_hts": "8542.39.00.01", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3462", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3462-00.jpg", + "image_is_video": "0", + "product_name": "IBM TJBot \u2013 A Watson Maker Kit", + "product_model": "", + "product_mpn": "ADA3462", + "product_master_category": "881", + "product_manufacturer": "Adafruit", + "product_price": "149.95", + "product_shipping_weight": "887.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3462", + "product_stock": "12", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3602", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3602-00.jpg", + "image_is_video": "0", + "product_name": "Google AIY Voice Kit for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3602", + "product_master_category": "881", + "product_manufacturer": "Google", + "product_price": "24.95", + "product_shipping_weight": "481.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3602", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2816", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2816-08.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero Starter Pack - Includes Pi Zero v1.3", + "product_model": "", + "product_mpn": "ADA2816", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "23.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2816", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3160", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3160-08.jpg", + "image_is_video": "0", + "product_name": "Pi GRRL Zero - Does Not Include Pi Zero", + "product_model": "CASE NOT INCLUDED", + "product_mpn": "ADA3160", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "247.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3160", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3161", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3161-08.jpg", + "image_is_video": "0", + "product_name": "Pi GRRL Zero Parts Kit - Includes Pi Zero W", + "product_model": "CASE NOT INCLUDED", + "product_mpn": "ADA3161", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "259.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3161", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3170", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3170-04.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero v1.3 Camera Pack - Includes Pi Zero", + "product_model": "", + "product_mpn": "ADA3170", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "63.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3170", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3172", + "discount_pricing": [] + }, + { + "product_id": "3171", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3171-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero v1.3 NoIR Camera Pack - Includes Pi Zero", + "product_model": "", + "product_mpn": "ADA3171", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "63.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3171", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3172", + "discount_pricing": [] + }, + { + "product_id": "3192", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3192-00.jpg", + "image_is_video": "0", + "product_name": "OLED Bonnet Pack for Raspberry Pi Zero - Includes Pi Zero W", + "product_model": "", + "product_mpn": "ADA3192", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "44.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3192", + "product_stock": "94", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3205", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3205-01.jpg", + "image_is_video": "0", + "product_name": "Joy Bonnet Pack for Raspberry Pi Zero - Includes Pi Zero W", + "product_model": "", + "product_mpn": "ADA3205", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "32.50", + "product_shipping_weight": "62.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3205", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3411", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3411-01.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero W Starter Pack - Includes Pi Zero W", + "product_model": "", + "product_mpn": "ADA3411", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "59.95", + "product_shipping_weight": "11.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3411", + "product_stock": "71", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3412", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3412-02.jpg", + "image_is_video": "0", + "product_name": "Stereo Bonnet Pack for Raspberry Pi Zero W - Includes Pi Zero W", + "product_model": "", + "product_mpn": "ADA3412", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "11.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3412", + "product_stock": "4", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3414", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3414-05.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero W Camera Pack - Includes Pi Zero W", + "product_model": "", + "product_mpn": "ADA3414", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "65.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3414", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3172", + "discount_pricing": [] + }, + { + "product_id": "3415", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3415-04.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Zero W NoIR Camera Pack - Includes Pi Zero W", + "product_model": "", + "product_mpn": "ADA3415", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "65.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3415", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3172", + "discount_pricing": [] + }, + { + "product_id": "4080", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4080-03.jpg", + "image_is_video": "0", + "product_name": "Google AIY Voice Kit for Raspberry Pi V2", + "product_model": "", + "product_mpn": "ADA4080", + "product_master_category": "882", + "product_manufacturer": null, + "product_price": "59.95", + "product_shipping_weight": "428.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4080", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4085", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4085-00.jpg", + "image_is_video": "0", + "product_name": "Joy Bonnet Pack without Soldering - Includes Pi Zero WH", + "product_model": "", + "product_mpn": "ADA4085", + "product_master_category": "882", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "70.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4085", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3072", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3072-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit RFM95W LoRa Radio Transceiver Breakout - 868 or 915 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3072", + "product_master_category": "883", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3072", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3073", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3073-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit RFM96W LoRa Radio Transceiver Breakout - 433 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3073", + "product_master_category": "883", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "3.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3073", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2237", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2237-08.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar Digital LED Strip - Black 30 LED - Per Meter", + "product_model": "BLACK", + "product_mpn": "ADA2237", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "99.75", + "product_shipping_weight": "376.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2237", + "product_stock": "93", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2237", + "discount_pricing": [ + { + "discounted_price": "99.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.78", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2237", + "meters": "5", + "product_price": "99.75" + }, + { + "products_id": "2575", + "meters": "4", + "product_price": "79.80" + }, + { + "products_id": "2576", + "meters": "3", + "product_price": "59.85" + }, + { + "products_id": "2577", + "meters": "2", + "product_price": "39.90" + }, + { + "products_id": "2578", + "meters": "1", + "product_price": "19.95" + } + ] + }, + { + "product_id": "2238", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2238-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit DotStar Digital LED Strip - White 30 LED - Per Meter", + "product_model": "WHITE", + "product_mpn": "ADA2238", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "99.75", + "product_shipping_weight": "264.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2238", + "product_stock": "51", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2238", + "discount_pricing": [ + { + "discounted_price": "99.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.78", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2238", + "meters": "5", + "product_price": "99.75" + }, + { + "products_id": "2567", + "meters": "4", + "product_price": "79.80" + }, + { + "products_id": "2568", + "meters": "3", + "product_price": "59.85" + }, + { + "products_id": "2569", + "meters": "2", + "product_price": "39.90" + }, + { + "products_id": "2570", + "meters": "1", + "product_price": "19.95" + } + ] + }, + { + "product_id": "2239", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2239-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar Digital LED Strip - Black 60 LED - Per Meter", + "product_model": "BLACK", + "product_mpn": "ADA2239", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "119.80", + "product_shipping_weight": "252.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2239", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2239", + "discount_pricing": [ + { + "discounted_price": "119.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "107.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "95.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2239", + "meters": "4", + "product_price": "119.80" + }, + { + "products_id": "3634", + "meters": "4", + "product_price": "34.95" + }, + { + "products_id": "3635", + "meters": "4", + "product_price": "26.95" + }, + { + "products_id": "3636", + "meters": "4", + "product_price": "17.95" + }, + { + "products_id": "3729", + "meters": "4", + "product_price": "19.95" + }, + { + "products_id": "3776", + "meters": "4", + "product_price": "74.95" + }, + { + "products_id": "2572", + "meters": "3", + "product_price": "89.85" + }, + { + "products_id": "2573", + "meters": "2", + "product_price": "59.90" + }, + { + "products_id": "2574", + "meters": "1", + "product_price": "29.95" + } + ] + }, + { + "product_id": "2240", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2240-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit DotStar Digital LED Strip - White 60 LED - Per Meter", + "product_model": "WHITE", + "product_mpn": "ADA2240", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "119.80", + "product_shipping_weight": "251.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2240", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2240", + "discount_pricing": [ + { + "discounted_price": "119.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "107.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "95.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2240", + "meters": "4", + "product_price": "119.80" + }, + { + "products_id": "3869", + "meters": "4", + "product_price": "34.95" + }, + { + "products_id": "4915", + "meters": "4", + "product_price": "24.95" + }, + { + "products_id": "2557", + "meters": "3", + "product_price": "89.85" + }, + { + "products_id": "2558", + "meters": "2", + "product_price": "59.90" + }, + { + "products_id": "2559", + "meters": "1", + "product_price": "29.95" + } + ] + }, + { + "product_id": "2241", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2241-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar Digital LED Strip - Black 144 LED\/m - One Meter", + "product_model": "BLACK", + "product_mpn": "ADA2241", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "113.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2241", + "product_stock": "87", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2242", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2242-09.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar Digital LED Strip - White 144 LED\/m - One Meter", + "product_model": "WHITE", + "product_mpn": "ADA2242", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "113.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2242", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2329", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2329-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit DotStar Digital LED Strip - White 144 LED\/m - 0.5 Meter", + "product_model": "WHITE", + "product_mpn": "ADA2329", + "product_master_category": "886", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "83.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2329", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2432", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2432-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar LED Strip - Addressable Cool White - 30 LED\/m", + "product_model": "~6000K", + "product_mpn": "ADA2432", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "99.75", + "product_shipping_weight": "258.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2432", + "product_stock": "17", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2432", + "discount_pricing": [ + { + "discounted_price": "99.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.78", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2432", + "meters": "5", + "product_price": "99.75" + }, + { + "products_id": "2526", + "meters": "4", + "product_price": "79.80" + }, + { + "products_id": "2527", + "meters": "3", + "product_price": "59.85" + }, + { + "products_id": "2528", + "meters": "2", + "product_price": "39.90" + }, + { + "products_id": "2529", + "meters": "1", + "product_price": "19.95" + } + ] + }, + { + "product_id": "2433", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2433-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar LED Strip - Addressable Cool White - 60 LED\/m", + "product_model": "~6000K", + "product_mpn": "ADA2433", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "119.80", + "product_shipping_weight": "240.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2433", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2433", + "discount_pricing": [ + { + "discounted_price": "119.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "107.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "95.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2433", + "meters": "4", + "product_price": "119.80" + }, + { + "products_id": "2531", + "meters": "3", + "product_price": "89.85" + }, + { + "products_id": "2532", + "meters": "2", + "product_price": "59.90" + }, + { + "products_id": "2533", + "meters": "1", + "product_price": "29.95" + } + ] + }, + { + "product_id": "2434", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2434-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar LED Strip - Cool White - 144 LED\/m", + "product_model": "~6000K - One Meter", + "product_mpn": "ADA2434", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "98.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2434", + "product_stock": "85", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "59.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2435", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2435-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar LED Strip - Addressable Warm White - 30 LED\/m", + "product_model": "~3000K", + "product_mpn": "ADA2435", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "99.75", + "product_shipping_weight": "250.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2435", + "product_stock": "43", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2435", + "discount_pricing": [ + { + "discounted_price": "99.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.78", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2435", + "meters": "5", + "product_price": "99.75" + }, + { + "products_id": "2580", + "meters": "4", + "product_price": "79.80" + }, + { + "products_id": "2581", + "meters": "3", + "product_price": "59.85" + }, + { + "products_id": "2582", + "meters": "2", + "product_price": "39.90" + }, + { + "products_id": "2583", + "meters": "1", + "product_price": "19.95" + } + ] + }, + { + "product_id": "2436", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2436-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar LED Strip - Addressable Warm White - 60 LED\/m", + "product_model": "~3000K", + "product_mpn": "ADA2436", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "119.80", + "product_shipping_weight": "240.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2436", + "product_stock": "51", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2436", + "discount_pricing": [ + { + "discounted_price": "119.80", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "107.82", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "95.84", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ], + "pricing_per_length": [ + { + "products_id": "2436", + "meters": "4", + "product_price": "119.80" + }, + { + "products_id": "2584", + "meters": "3", + "product_price": "89.85" + }, + { + "products_id": "2585", + "meters": "2", + "product_price": "59.90" + }, + { + "products_id": "2586", + "meters": "1", + "product_price": "29.95" + } + ] + }, + { + "product_id": "2437", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2437-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar LED Strip - Warm White - 144 LED\/m", + "product_model": "~3000K - One Meter", + "product_mpn": "ADA2437", + "product_master_category": "886", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "96.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2437", + "product_stock": "12", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "59.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2343", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2343-03.jpg", + "image_is_video": "0", + "product_name": "DotStar Addressable 5050 RGB LED w\/ Integrated Driver - 10 Pack", + "product_model": "SK9822", + "product_mpn": "ADA2343", + "product_master_category": "887", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2343", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2350", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2350-02.jpg", + "image_is_video": "0", + "product_name": "DotStar Addressable 5050 Warm White LED w\/Integrated Driver Chip", + "product_model": "10 Pack ~3000K", + "product_mpn": "ADA2350", + "product_master_category": "887", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2350", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2351", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2351-02.jpg", + "image_is_video": "0", + "product_name": "5050 Cool White LED w\/ Integrated Driver Chip - 10 Pack", + "product_model": "~6000K", + "product_mpn": "ADA2351", + "product_master_category": "887", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2351", + "product_stock": "7", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3341", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3341-00.jpg", + "image_is_video": "0", + "product_name": "DotStar Micro LEDs (APA102\u20132020) - Smart SMD RGB LED - 10 pack", + "product_model": "", + "product_mpn": "ADA3341", + "product_master_category": "887", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "4.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3341", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3199", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3199-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit MiCS5524 CO, Alcohol and VOC Gas Sensor Breakout", + "product_model": "", + "product_mpn": "ADA3199", + "product_master_category": "897", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3199", + "product_stock": "-3", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3566", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3566-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit CCS811 Air Quality Sensor Breakout - VOC and eCO2", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA3566", + "product_master_category": "897", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3566", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3709", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3709-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit SGP30 Air Quality Sensor Breakout - VOC and eCO2", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA3709", + "product_master_category": "897", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3709", + "product_stock": "in stock", + "products_hts": "8542.31.00.01", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4829", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4829-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit SGP40 Air Quality Sensor Breakout - VOC Index", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4829", + "product_master_category": "897", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4829", + "product_stock": "in stock", + "products_hts": "8542.31.00.01", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4867", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4867-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit SCD-30 - NDIR CO2 Temperature and Humidity Sensor", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4867", + "product_master_category": "897", + "product_manufacturer": "Adafruit", + "product_price": "58.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4867", + "product_stock": "in stock", + "products_hts": "8542.31.00.01", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "58.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "53.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "47.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2265", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2265-07.jpg", + "image_is_video": "0", + "product_name": "CadSoft EAGLE Learn PCB Design Software V7 - .EDU - 1 User", + "product_model": "", + "product_mpn": "ADA2265", + "product_master_category": "908", + "product_manufacturer": "CadSoft", + "product_price": "410.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2265", + "product_stock": "-3", + "products_hts": "software", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "765", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/765-00.jpg", + "image_is_video": "0", + "product_name": "Lady Ada's Bento Box - Portable Pack & Hack Box", + "product_model": "Breadboard + Tin", + "product_mpn": "ADA765", + "product_master_category": "908", + "product_manufacturer": null, + "product_price": "37.50", + "product_shipping_weight": "98.5", + "product_url": "https:\/\/www.adafruit.com\/product\/765", + "product_stock": "-3", + "products_hts": "8538.10.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "37.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "33.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3456", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3456-01.jpg", + "image_is_video": "0", + "product_name": "5 x AA Battery Holder with 2.1mm DC Jack", + "product_model": "", + "product_mpn": "ADA3456", + "product_master_category": "911", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "23.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3456", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2272", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2272-03.jpg", + "image_is_video": "0", + "product_name": "Camcorder Battery Holder for Panasonic CGR-D28 and CGA-D54s", + "product_model": "", + "product_mpn": "ADA2272", + "product_master_category": "913", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "22.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2272", + "product_stock": "12", + "products_hts": "8536.9010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4856", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4856-07.jpg", + "image_is_video": "0", + "product_name": "Single CR2032 \/ 20mm Coin Cell Battery Holder with Switch", + "product_model": "", + "product_mpn": "ADA4856", + "product_master_category": "914", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4856", + "product_stock": "in stock", + "products_hts": "8536.20.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4988", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4988-05.jpg", + "image_is_video": "0", + "product_name": "2 x CR2032 Coin Cell Battery Box w\/ On-Off Switch & Plain Wires", + "product_model": "", + "product_mpn": "ADA4988", + "product_master_category": "914", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "8.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4988", + "product_stock": "in stock", + "products_hts": "8536.90.8085", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2390", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2390-06.jpg", + "image_is_video": "0", + "product_name": "MicroPython pyboard", + "product_model": "v1.1", + "product_mpn": "ADA2390", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "13.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2390", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3271", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3271-00.jpg", + "image_is_video": "0", + "product_name": "MicroPython - Skill badge, iron-on patch", + "product_model": "", + "product_mpn": "ADA3271", + "product_master_category": "924", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3271", + "product_stock": "-10", + "products_hts": "5810.92.10 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3325", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3325-01.jpg", + "image_is_video": "0", + "product_name": "Python for Microcontrollers: Getting Started with MicroPython", + "product_model": "", + "product_mpn": "ADA3325", + "product_master_category": "924", + "product_manufacturer": "McGraw-Hill", + "product_price": "19.95", + "product_shipping_weight": "348.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3325", + "product_stock": "19", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3496", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3496-00.jpg", + "image_is_video": "0", + "product_name": "MicroPython pyboard Anodized Housing with Open Lid", + "product_model": "", + "product_mpn": "ADA3496", + "product_master_category": "924", + "product_manufacturer": "George Robotics LTD", + "product_price": "39.95", + "product_shipping_weight": "44.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3496", + "product_stock": "-3", + "products_hts": "7612.90.9000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3497", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3497-00.jpg", + "image_is_video": "0", + "product_name": "MicroPython pyboard Lite v1.0 with Accelerometer", + "product_model": "", + "product_mpn": "ADA3497", + "product_master_category": "924", + "product_manufacturer": "George Robotics LTD", + "product_price": "29.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3497", + "product_stock": "-3", + "products_hts": "8542.39.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3498", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3498-05.jpg", + "image_is_video": "0", + "product_name": "pyboard Color LCD Skin with Resistive Touch", + "product_model": "LCD160CR v1.1", + "product_mpn": "ADA3498", + "product_master_category": "924", + "product_manufacturer": "George Robotics LTD", + "product_price": "39.95", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3498", + "product_stock": "31", + "products_hts": "8531.20.0020", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3499", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3499-01.jpg", + "image_is_video": "0", + "product_name": "Set of Header Pins for MicroPython pyboard", + "product_model": "", + "product_mpn": "ADA3499", + "product_master_category": "924", + "product_manufacturer": "George Robotics LTD", + "product_price": "5.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3499", + "product_stock": "23", + "products_hts": "8535.90.80.20", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3613", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3613-01.jpg", + "image_is_video": "0", + "product_name": "Pycom FiPy", + "product_model": "", + "product_mpn": "ADA3613", + "product_master_category": "924", + "product_manufacturer": "Pycom", + "product_price": "79.95", + "product_shipping_weight": "32.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3613", + "product_stock": "34", + "products_hts": "8542.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4176", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4176-04.jpg", + "image_is_video": "0", + "product_name": "M5Stack FACES ESP32 Pocket Computer - Keyboard, Game, Calculator", + "product_model": "", + "product_mpn": "ADA4176", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "69.95", + "product_shipping_weight": "262.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4176", + "product_stock": "14", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4177", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4177-03.jpg", + "image_is_video": "0", + "product_name": "M5Stack Gray Development Kit - ESP32 Dev Board w\/ MPU6886+BMM150", + "product_model": "", + "product_mpn": "ADA4177", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "42.50", + "product_shipping_weight": "93.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4177", + "product_stock": "12", + "products_hts": "8471.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4178", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4178-07.jpg", + "image_is_video": "1", + "product_name": "M5Stack Basic Core IoT Development Kit - ESP32 Dev Board", + "product_model": "", + "product_mpn": "ADA4178", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "289.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4178", + "product_stock": "27", + "products_hts": "8471.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4289", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4289-05.jpg", + "image_is_video": "1", + "product_name": "M5Stick-C IoT Development Kit with 2 Sensors + Watch Accessories", + "product_model": "", + "product_mpn": "ADA4289", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "87.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4289", + "product_stock": "28", + "products_hts": "8542.39.0001", + "products_coo": "HK", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4290", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4290-03.jpg", + "image_is_video": "1", + "product_name": "M5Stick-C Pico Mini IoT Development Board", + "product_model": "", + "product_mpn": "ADA4290", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "33.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4290", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4321", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4321-07.jpg", + "image_is_video": "1", + "product_name": "M5StickV AI Camera - Kendryte K210 Chipset (no Wi-Fi)", + "product_model": "", + "product_mpn": "ADA4321", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "81.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4321", + "product_stock": "0", + "products_hts": "8525.80.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4335", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4335-07.jpg", + "image_is_video": "0", + "product_name": "TinyPICO - ESP32 Development Board", + "product_model": "V2", + "product_mpn": "ADA4335", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "20.00", + "product_shipping_weight": "12.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4335", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "AU", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4497", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4497-01.jpg", + "image_is_video": "0", + "product_name": "M5Stack ATOM Matrix ESP32 Development Kit", + "product_model": "", + "product_mpn": "ADA4497", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "16.50", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4497", + "product_stock": "in stock", + "products_hts": "8471.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4959", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4959-01.jpg", + "image_is_video": "0", + "product_name": "M5Stack ESP32 Timer Camera X with 8 MB PSRAM", + "product_model": "", + "product_mpn": "ADA4959", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "37.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4959", + "product_stock": "43", + "products_hts": "8525.80.5050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5028", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5028-01.jpg", + "image_is_video": "0", + "product_name": "TinyPICO ESP32 Development Board with USB-C", + "product_model": "", + "product_mpn": "ADA5028", + "product_master_category": "924", + "product_manufacturer": null, + "product_price": "21.95", + "product_shipping_weight": "11.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5028", + "product_stock": "in stock", + "products_hts": "8471.50.0150", + "products_coo": "AU", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3067", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3067-00.jpeg", + "image_is_video": "0", + "product_name": "AdaBox Subscription", + "product_model": "", + "product_mpn": "ADA3067", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "60.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3067", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3193", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3193-03.jpg", + "image_is_video": "0", + "product_name": "AdaBox001 - Welcome to the Feather Ecosystem", + "product_model": "", + "product_mpn": "ADA3193", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "70.00", + "product_shipping_weight": "452.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3193", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "70.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "63.00", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "56.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3235", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3235-04.jpg", + "image_is_video": "0", + "product_name": "AdaBox002 \u2013 Making Things Move", + "product_model": "Feather Bluetooth LE Mini Robot ", + "product_mpn": "ADA3235", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "884.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3235", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3268", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3268-00.jpg", + "image_is_video": "0", + "product_name": "AdaBox003 \u2013 The World of IoT \u2013 Curated by Digi-Key", + "product_model": "", + "product_mpn": "ADA3268", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "338.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3268", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3370", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3370-01.jpg", + "image_is_video": "0", + "product_name": "AdaBox004 \u2013 Making Things Dance", + "product_model": "", + "product_mpn": "ADA3370", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "428.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3370", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3644", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3644-01.jpg", + "image_is_video": "0", + "product_name": "AdaBox005 \u2013 Break for Pi", + "product_model": "", + "product_mpn": "ADA3644", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "456.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3644", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3697", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3697-01.jpg", + "image_is_video": "0", + "product_name": "AdaBox006 \u2013 CircuitPython", + "product_model": "", + "product_mpn": "ADA3697", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "675.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3697", + "product_stock": "-3", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3778", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3778-05.jpg", + "image_is_video": "0", + "product_name": "AdaBox007 - SPY", + "product_model": "", + "product_mpn": "ADA3778", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "722.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3778", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3906", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3906-01.jpg", + "image_is_video": "0", + "product_name": "AdaBox008 - Octo Crickit #MakeRobotFriend", + "product_model": "", + "product_mpn": "ADA3906", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "770.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3906", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3956", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3956-01.jpg", + "image_is_video": "0", + "product_name": "AdaBox009 - HalloWing", + "product_model": "", + "product_mpn": "ADA3956", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "814.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3956", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4018", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4018-00.jpg", + "image_is_video": "0", + "product_name": "AdaBox010 - Rainbow Trellis", + "product_model": "", + "product_mpn": "ADA4018", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "554.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4018", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "63.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4061", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4061-09.jpg", + "image_is_video": "0", + "product_name": "AdaBox011 - PyPortal", + "product_model": "", + "product_mpn": "ADA4061", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "323.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4061", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4185", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4185-01.jpg", + "image_is_video": "0", + "product_name": "AdaBox012 - PyGamer", + "product_model": "", + "product_mpn": "ADA4185", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "74.95", + "product_shipping_weight": "533.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4185", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "74.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "67.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4281", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4281-00.jpg", + "image_is_video": "0", + "product_name": "AdaBox013 - THE MONSTER M4SK", + "product_model": "", + "product_mpn": "ADA4281", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "421.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4281", + "product_stock": "-3", + "products_hts": "9504.90.9080", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "79.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "71.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4371", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4371-00.jpg", + "image_is_video": "0", + "product_name": "AdaBox014 - Circuit Playground Bluefruit - Merry ADABOXmas!", + "product_model": "", + "product_mpn": "ADA4371", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "1,262.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4371", + "product_stock": "-3", + "products_hts": "9504.90.9080", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4491", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4491-04.jpg", + "image_is_video": "0", + "product_name": "AdaBox015 - COME TO YOUR SENSORS", + "product_model": "", + "product_mpn": "ADA4491", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "69.95", + "product_shipping_weight": "722.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4491", + "product_stock": "8", + "products_hts": "9504.90.9080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "69.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "62.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "55.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5069", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5069-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit FunHouse Starter Kit - IoT Home Automation Exploration", + "product_model": "ADABOX018 Essentials", + "product_mpn": "ADA5069", + "product_master_category": "926", + "product_manufacturer": "Adafruit", + "product_price": "49.95", + "product_shipping_weight": "116.7", + "product_url": "https:\/\/www.adafruit.com\/product\/5069", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "44.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "39.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3301", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3301-01.jpg", + "image_is_video": "0", + "product_name": "Sparky the Blue Smoke Monster Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3301", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3301", + "product_stock": "0", + "products_hts": "7117.19.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3336", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3336-02.jpg", + "image_is_video": "0", + "product_name": "Feather - Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3336", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3336", + "product_stock": "0", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3371", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3371-02.jpg", + "image_is_video": "0", + "product_name": "AdaBot - Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3371", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "10.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3371", + "product_stock": "0", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3389", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3389-01.jpg", + "image_is_video": "0", + "product_name": "Nimbus the Friendly Cloud Entity - Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3389", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "11.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3389", + "product_stock": "0", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3493", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3493-02.jpg", + "image_is_video": "0", + "product_name": "Gus the Green LED Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3493", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3493", + "product_stock": "0", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3494", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3494-01.jpg", + "image_is_video": "0", + "product_name": "Billie the Blue LED Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3494", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3494", + "product_stock": "0", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3495", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3495-02.jpg", + "image_is_video": "0", + "product_name": "Ruby the Red LED Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3495", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3495", + "product_stock": "0", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3513", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3513-01.jpg", + "image_is_video": "0", + "product_name": "Boomy the BoomBox - Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3513", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "12.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3513", + "product_stock": "-3", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3543", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3543-01.jpg", + "image_is_video": "0", + "product_name": "Joy - Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3543", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3543", + "product_stock": "0", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3637", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3637-01.jpg", + "image_is_video": "0", + "product_name": "Blinka Ouroboros - Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3637", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.95", + "product_shipping_weight": "8.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3637", + "product_stock": "0", + "products_hts": "7117.19.9000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3680", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3680-04.jpg", + "image_is_video": "0", + "product_name": "Blinka the CircuitPython Limited Edition Enamel Pin", + "product_model": "", + "product_mpn": "ADA3680", + "product_master_category": "928", + "product_manufacturer": "Adafruit", + "product_price": "3.50", + "product_shipping_weight": "10.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3680", + "product_stock": "-3", + "products_hts": "7117.19.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4752", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4752-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi Enamel Pin", + "product_model": "", + "product_mpn": "ADA4752", + "product_master_category": "928", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4752", + "product_stock": "in stock", + "products_hts": "7117.90.5500", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3203", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3203-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit Perma Proto Bonnet Mini Kit", + "product_model": "", + "product_mpn": "ADA3203", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "4.50", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3203", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.05", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3211", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3211-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit RGB Matrix Bonnet for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3211", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3211", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3346", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3346-13.jpg", + "image_is_video": "0", + "product_name": "Adafruit I2S 3W Stereo Speaker Bonnet for Raspberry Pi", + "product_model": "Mini Kit", + "product_mpn": "ADA3346", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "14.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3346", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3356", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3356-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit Animated Eyes Bonnet for Raspberry Pi Mini Kit", + "product_model": "Without Displays", + "product_mpn": "ADA3356", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3356", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3416", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3416-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit 16-Channel PWM \/ Servo Bonnet for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3416", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3416", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3422", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3422-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Arcade Bonnet for Raspberry Pi with JST Connectors", + "product_model": "Mini Kit", + "product_mpn": "ADA3422", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "15.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3422", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3464", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3464-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit Joy Bonnet for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3464", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "12.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3464", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3467", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3467-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit CharliePlex LED Matrix Bonnet - 8x16 Blue LEDs", + "product_model": "", + "product_mpn": "ADA3467", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3467", + "product_stock": "91", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4127", + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3531", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3531-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit 128x64 OLED Bonnet for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3531", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "15.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3531", + "product_stock": "94", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4037", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4037-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit I2S Audio Bonnet for Raspberry Pi", + "product_model": "UDA1334A", + "product_mpn": "ADA4037", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "11.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4037", + "product_stock": "80", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4072", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4072-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit RFM69HCW Transceiver Radio Bonnet - 868 or 915 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA4072", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4072", + "product_stock": "33", + "products_hts": "8525.50.7050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4087", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4073", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4073-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit RFM69HCW Transceiver Radio Bonnet - 433 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA4073", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4073", + "product_stock": "36", + "products_hts": "8525.50.7050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4087", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4074", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4074-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit LoRa Radio Bonnet with OLED - RFM95W @ 915MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA4074", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "32.50", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4074", + "product_stock": "in stock", + "products_hts": "8525.50.7050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4087", + "discount_pricing": [ + { + "discounted_price": "32.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4075", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4075-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit LoRa Radio Bonnet RFM96W @ 433MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA4075", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "32.50", + "product_shipping_weight": "12.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4075", + "product_stock": "59", + "products_hts": "8525.50.7050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4087", + "discount_pricing": [ + { + "discounted_price": "32.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4114", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4114-04.jpg", + "image_is_video": "0", + "product_name": "Zero2Go Omini \u2013 Multi-Channel Power Supply for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4114", + "product_master_category": "929", + "product_manufacturer": "UUGear", + "product_price": "19.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4114", + "product_stock": "-3", + "products_hts": "8537.10.9170", + "products_coo": "CZ", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4119", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4119-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit CharliePlex LED Matrix Bonnet - 8x16 Yellow LEDs", + "product_model": "", + "product_mpn": "ADA4119", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4119", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4127", + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4120", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4120-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit CharliePlex LED Matrix Bonnet - 8x16 Green LEDs", + "product_model": "", + "product_mpn": "ADA4120", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4120", + "product_stock": "55", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4127", + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4121", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4121-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit CharliePlex LED Matrix Bonnet - 8x16 Cool White LEDs", + "product_model": "", + "product_mpn": "ADA4121", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4121", + "product_stock": "98", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4127", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4122", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4122-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit CharliePlex LED Matrix Bonnet - 8x16 Warm White LEDs", + "product_model": "", + "product_mpn": "ADA4122", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4122", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4127", + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4132", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4132-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit GPIO Expander Bonnet - 16 Additional I\/O over I2C", + "product_model": "", + "product_mpn": "ADA4132", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "14.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4132", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4506", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4506-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit 1.3\" Color TFT Bonnet for Raspberry Pi", + "product_model": "240x240 TFT + Joystick Add-on", + "product_mpn": "ADA4506", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "17.50", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4506", + "product_stock": "93", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "17.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4567", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4567-13.jpg", + "image_is_video": "0", + "product_name": "Adafruit 2.23\" Monochrome OLED Bonnet for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4567", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "22.50", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4567", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4757", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4757-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Voice Bonnet for Raspberry Pi -Two Speakers + Two Mics", + "product_model": "", + "product_mpn": "ADA4757", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4757", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4862", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4862-15.jpg", + "image_is_video": "0", + "product_name": "Adafruit CYBERDECK Bonnet for Raspberry Pi 400", + "product_model": "", + "product_mpn": "ADA4862", + "product_master_category": "929", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4862", + "product_stock": "74", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5038", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5038-00.jpg", + "image_is_video": "0", + "product_name": "Witty Pi 3 Mini - RTC & Power Management for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA5038", + "product_master_category": "929", + "product_manufacturer": "UUGear", + "product_price": "19.95", + "product_shipping_weight": "11.1", + "product_url": "https:\/\/www.adafruit.com\/product\/5038", + "product_stock": "6", + "products_hts": "8537.10.9120", + "products_coo": "CZ", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5142", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5142-04.jpg", + "image_is_video": "0", + "product_name": "SparkFun Qwiic pHAT v2.0 for Raspberry Pi - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA5142", + "product_master_category": "929", + "product_manufacturer": "Sparkfun Electronics", + "product_price": "7.95", + "product_shipping_weight": "15.6", + "product_url": "https:\/\/www.adafruit.com\/product\/5142", + "product_stock": "4", + "products_hts": "8473.30.5100", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3227", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3227-01.jpg", + "image_is_video": "0", + "product_name": "Project Kit for Android Things\u2122", + "product_model": "", + "product_mpn": "ADA3227", + "product_master_category": "930", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "286.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3227", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3292", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3292-00.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 3 Board Pack for Android Things\u2122", + "product_model": "", + "product_mpn": "ADA3292", + "product_master_category": "930", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "202.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3292", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3342", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3342-00.jpg", + "image_is_video": "0", + "product_name": "2x40 Right Angle Edge Connector for micro:bit", + "product_model": "", + "product_mpn": "ADA3342", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "11.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3342", + "product_stock": "12", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3362", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3362-06.jpg", + "image_is_video": "1", + "product_name": "BBC micro:bit Go Bundle", + "product_model": "", + "product_mpn": "ADA3362", + "product_master_category": "932", + "product_manufacturer": "Micro:bit Foundation", + "product_price": "17.50", + "product_shipping_weight": "139.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3362", + "product_stock": "-10", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3485", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3485-00.jpg", + "image_is_video": "0", + "product_name": "micro:bit V1 Club 10-Pack", + "product_model": "", + "product_mpn": "ADA3485", + "product_master_category": "932", + "product_manufacturer": "Micro:bit Foundation", + "product_price": "174.95", + "product_shipping_weight": "741.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3485", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3530", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3530-15.jpg", + "image_is_video": "0", + "product_name": "BBC micro:bit", + "product_model": "", + "product_mpn": "ADA3530", + "product_master_category": "932", + "product_manufacturer": "Micro:bit Foundation", + "product_price": "14.95", + "product_shipping_weight": "31.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3530", + "product_stock": "-3", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3695", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3695-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit DragonTail for micro:bit - Fully Assembled", + "product_model": "", + "product_mpn": "ADA3695", + "product_master_category": "932", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "20.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3695", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3770", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3770-01.jpg", + "image_is_video": "0", + "product_name": "KittenBot Silicone Sleeve for micro:bit", + "product_model": "Sky Blue", + "product_mpn": "ADA3770", + "product_master_category": "932", + "product_manufacturer": "KittenBot", + "product_price": "6.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3770", + "product_stock": "0", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3818", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3771", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3771-01.jpg", + "image_is_video": "0", + "product_name": "KittenBot Silicone Sleeve for micro:bit", + "product_model": "Orange", + "product_mpn": "ADA3771", + "product_master_category": "932", + "product_manufacturer": "KittenBot", + "product_price": "6.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3771", + "product_stock": "20", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3818", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3772", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3772-01.jpg", + "image_is_video": "0", + "product_name": "KittenBot Silicone Sleeve for micro:bit", + "product_model": "Yellow", + "product_mpn": "ADA3772", + "product_master_category": "932", + "product_manufacturer": "KittenBot", + "product_price": "6.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3772", + "product_stock": "18", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3818", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3773", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3773-01.jpg", + "image_is_video": "0", + "product_name": "KittenBot Silicone Sleeve for micro:bit", + "product_model": "Red", + "product_mpn": "ADA3773", + "product_master_category": "932", + "product_manufacturer": "KittenBot", + "product_price": "6.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3773", + "product_stock": "7", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "3818", + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3829", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3829-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni noise:bit for micro:bit", + "product_model": "", + "product_mpn": "ADA3829", + "product_master_category": "932", + "product_manufacturer": "Pimoroni", + "product_price": "16.50", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3829", + "product_stock": "7", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3830", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3830-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni enviro:bit for micro:bit", + "product_model": "", + "product_mpn": "ADA3830", + "product_master_category": "932", + "product_manufacturer": "Pimoroni", + "product_price": "27.50", + "product_shipping_weight": "14.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3830", + "product_stock": "21", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3832", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3832-03.jpg", + "image_is_video": "1", + "product_name": "Pimoroni scroll:bit for micro:bit", + "product_model": "", + "product_mpn": "ADA3832", + "product_master_category": "932", + "product_manufacturer": "Pimoroni", + "product_price": "17.50", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3832", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3833", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3833-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni pin:bit for micro:bit", + "product_model": "", + "product_mpn": "ADA3833", + "product_master_category": "932", + "product_manufacturer": "Pimoroni", + "product_price": "5.95", + "product_shipping_weight": "13.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3833", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3887", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3887-01.jpg", + "image_is_video": "0", + "product_name": "SMT Right-Angle Connector for micro:bit", + "product_model": "", + "product_mpn": "ADA3887", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3887", + "product_stock": "14", + "products_hts": "8535.90.8020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3888", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3888-00.jpg", + "image_is_video": "0", + "product_name": "SMT Straight Connector for micro:bit", + "product_model": "", + "product_mpn": "ADA3888", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3888", + "product_stock": "-3", + "products_hts": "8535.90.8020", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3936", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3936-05.jpg", + "image_is_video": "0", + "product_name": "Pimoroni automation:bit for micro:bit", + "product_model": "", + "product_mpn": "ADA3936", + "product_master_category": "932", + "product_manufacturer": "Pimoroni", + "product_price": "14.95", + "product_shipping_weight": "17.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3936", + "product_stock": "12", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4291", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4291-01.jpg", + "image_is_video": "0", + "product_name": "micro:bit 300-Pack - Bulk Pack of micro:bit at $14.25 each", + "product_model": "", + "product_mpn": "ADA4291", + "product_master_category": "932", + "product_manufacturer": "Micro:bit Foundation", + "product_price": "4,275.00", + "product_shipping_weight": "8,618.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4291", + "product_stock": "-1", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4324", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4324-06.jpg", + "image_is_video": "1", + "product_name": "KittenBot Meowbit - Codable Console for MakeCode Arcade", + "product_model": "", + "product_mpn": "ADA4324", + "product_master_category": "932", + "product_manufacturer": "KittenBot", + "product_price": "39.95", + "product_shipping_weight": "72.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4324", + "product_stock": "59", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4325", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4325-04.jpg", + "image_is_video": "0", + "product_name": "KittenBot IO:bit for micro:bit", + "product_model": "Version 2.0", + "product_mpn": "ADA4325", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "20.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4325", + "product_stock": "-1", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4486", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4486-05.jpg", + "image_is_video": "1", + "product_name": "Translucent Snap-on Case for micro:bit", + "product_model": "", + "product_mpn": "ADA4486", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4486", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4487", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4487-05.jpg", + "image_is_video": "1", + "product_name": "Smoke Snap-on Case for micro:bit", + "product_model": "", + "product_mpn": "ADA4487", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4487", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4670", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4670-03.jpg", + "image_is_video": "1", + "product_name": "Kitronik Inventor's Kit for the BBC micro:bit", + "product_model": "micro:bit Not Included", + "product_mpn": "ADA4670", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "348.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4670", + "product_stock": "1", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4675", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4675-04.jpg", + "image_is_video": "0", + "product_name": "Clear Acrylic Enclosure + Hardware Kit for Adafruit CLUE", + "product_model": "", + "product_mpn": "ADA4675", + "product_master_category": "932", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4675", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4746", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4746-03.jpg", + "image_is_video": "0", + "product_name": "Plant Care Kit for micro:bit or CLUE", + "product_model": "", + "product_mpn": "ADA4746", + "product_master_category": "932", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "201.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4746", + "product_stock": "0", + "products_hts": "9504.90.9080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4765", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4765-03.jpg", + "image_is_video": "0", + "product_name": "Launchpad Breakout Board for micro:bit and Adafruit CLUE", + "product_model": "by Mission Control Lab", + "product_mpn": "ADA4765", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4765", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4781", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4781-04.jpg", + "image_is_video": "0", + "product_name": "BBC micro:bit v2", + "product_model": "", + "product_mpn": "ADA4781", + "product_master_category": "932", + "product_manufacturer": "Micro:bit Foundation", + "product_price": "17.95", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4781", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4834", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4834-05.jpg", + "image_is_video": "0", + "product_name": "micro:bit v2 Go Bundle - Batteries and USB Cable Included", + "product_model": "", + "product_mpn": "ADA4834", + "product_master_category": "932", + "product_manufacturer": "Micro:bit Foundation", + "product_price": "19.95", + "product_shipping_weight": "86.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4834", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4852", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4852-00.jpg", + "image_is_video": "1", + "product_name": "Smoke Snap-on Case for micro:bit V2", + "product_model": "", + "product_mpn": "ADA4852", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4852", + "product_stock": "81", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4853", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4853-00.jpg", + "image_is_video": "1", + "product_name": "Translucent Snap-on Case for micro:bit V2", + "product_model": "", + "product_mpn": "ADA4853", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4853", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4902", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4902-03.jpg", + "image_is_video": "0", + "product_name": "Kitronik Breadboard Breakout for BBC micro:bit", + "product_model": "micro:bit Not Included", + "product_mpn": "ADA4902", + "product_master_category": "932", + "product_manufacturer": null, + "product_price": "5.50", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4902", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3780", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3780-03.jpg", + "image_is_video": "0", + "product_name": "Google AIY Vision Full Kit - Includes Pi Zero WH", + "product_model": "v1.1", + "product_mpn": "ADA3780", + "product_master_category": "933", + "product_manufacturer": "Google", + "product_price": "99.95", + "product_shipping_weight": "354.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3780", + "product_stock": "2", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3973", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3973-01.jpg", + "image_is_video": "0", + "product_name": "Mini Monochrome PiOLED Ad Blocking Pi-Hole Kit", + "product_model": "No Soldering!", + "product_mpn": "ADA3973", + "product_master_category": "933", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "46.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3973", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4427", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4427-05.jpg", + "image_is_video": "0", + "product_name": "Google AIY Voice Kit - Black Girls CODE", + "product_model": "", + "product_mpn": "ADA4427", + "product_master_category": "933", + "product_manufacturer": "Google", + "product_price": "59.95", + "product_shipping_weight": "428.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4427", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4475", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4475-00.jpg", + "image_is_video": "1", + "product_name": "Mini Color PiTFT Ad Blocking Pi-Hole Kit", + "product_model": "No Soldering!", + "product_mpn": "ADA4475", + "product_master_category": "933", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "47.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4475", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2895", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2895-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Non-Latching Mini Relay FeatherWing", + "product_model": "", + "product_mpn": "ADA2895", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "9.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2895", + "product_stock": "in stock", + "products_hts": "8473.30.0002", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2900", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2900-10.jpg", + "image_is_video": "0", + "product_name": "Adafruit FeatherWing OLED - 128x32 OLED Add-on For Feather", + "product_model": "", + "product_mpn": "ADA2900", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2900", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4091", + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2923", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2923-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Latching Mini Relay FeatherWing", + "product_model": "", + "product_mpn": "ADA2923", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2923", + "product_stock": "50", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2926", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2926-08.jpg", + "image_is_video": "0", + "product_name": "Assembled Terminal Block Breakout FeatherWing for all Feathers", + "product_model": "", + "product_mpn": "ADA2926", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "28.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2926", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2927", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2927-06.jpg", + "image_is_video": "1", + "product_name": "DC Motor + Stepper FeatherWing Add-on For All Feather Boards", + "product_model": "", + "product_mpn": "ADA2927", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "12.4", + "product_url": "https:\/\/www.adafruit.com\/product\/2927", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2928", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2928-14.jpg", + "image_is_video": "1", + "product_name": "8-Channel PWM or Servo FeatherWing Add-on For All Feather Boards", + "product_model": "", + "product_mpn": "ADA2928", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2928", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2945", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2945-05.jpg", + "image_is_video": "1", + "product_name": "NeoPixel FeatherWing - 4x8 RGB LED Add-on For All Feather Boards", + "product_model": "", + "product_mpn": "ADA2945", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2945", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3028", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3028-00.jpg", + "image_is_video": "0", + "product_name": "DS3231 Precision RTC FeatherWing - RTC Add-on For Feather Boards", + "product_model": "", + "product_mpn": "ADA3028", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3028", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3036", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3036-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit RGB Matrix Featherwing Kit", + "product_model": "For RP2040, M0 and M4 Feathers", + "product_mpn": "ADA3036", + "product_master_category": "945", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3036", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3045", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3045-00.jpg", + "image_is_video": "0", + "product_name": "Assembled Adafruit FeatherWing OLED", + "product_model": "128x32 OLED Add-on For Feather", + "product_mpn": "ADA3045", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "15.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3045", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4091", + "discount_pricing": [ + { + "discounted_price": "15.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "14.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3088", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3088-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 4-Digit 7-Segment LED Matrix Display FeatherWing", + "product_model": "", + "product_mpn": "ADA3088", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3088", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3089", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3089-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 14-Segment Alphanumeric LED FeatherWing", + "product_model": "", + "product_mpn": "ADA3089", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "8.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3089", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3090", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3090-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 8x16 LED Matrix FeatherWing w\/o Matrices", + "product_model": "", + "product_mpn": "ADA3090", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "9.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3090", + "product_stock": "in stock", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3106", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3106-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment FeatherWing Display - Blue", + "product_model": "", + "product_mpn": "ADA3106", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "19.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3106", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3140", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3107", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3107-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment FeatherWing Display - Green", + "product_model": "", + "product_mpn": "ADA3107", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "17.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3107", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3140", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3108", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3108-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment FeatherWing Display - Red", + "product_model": "", + "product_mpn": "ADA3108", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3108", + "product_stock": "83", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3140", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3109", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3109-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment Display w\/ FeatherWing - White", + "product_model": "", + "product_mpn": "ADA3109", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3109", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3140", + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3110", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3110-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.56\" 4-Digit 7-Segment FeatherWing Display - Yellow", + "product_model": "", + "product_mpn": "ADA3110", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "17.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3110", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3140", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3127", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3127-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.54\" Quad Alphanumeric FeatherWing Display - White", + "product_model": "", + "product_mpn": "ADA3127", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3127", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3139", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3128", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3128-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.54\" Quad Alphanumeric FeatherWing Display - Blue", + "product_model": "", + "product_mpn": "ADA3128", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "20.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3128", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3139", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.20", + "discounted_percent": "13", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "12.39", + "discounted_percent": "11", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3129", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3129-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.54\" Quad Alphanumeric FeatherWing Display - Green", + "product_model": "", + "product_mpn": "ADA3129", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "13.95", + "product_shipping_weight": "20.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3129", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3139", + "discount_pricing": [ + { + "discounted_price": "13.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3130", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3130-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.54\" Quad Alphanumeric FeatherWing Display - Red", + "product_model": "", + "product_mpn": "ADA3130", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "17.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3130", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3139", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3131", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3131-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.54\" Quad Alphanumeric FeatherWing Display - Yellow", + "product_model": "", + "product_mpn": "ADA3131", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "10.50", + "product_shipping_weight": "18.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3131", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3139", + "discount_pricing": [ + { + "discounted_price": "10.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.45", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.40", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3132", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3132-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.54\" Quad Alphanumeric FeatherWing - Yellow\/Green", + "product_model": "", + "product_mpn": "ADA3132", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3132", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3139", + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3133", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3133-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Ultimate GPS FeatherWing", + "product_model": "", + "product_mpn": "ADA3133", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "12.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3133", + "product_stock": "49", + "products_hts": "8526.91.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3134", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3134-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing - Red", + "product_model": "", + "product_mpn": "ADA3134", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3134", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2965", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3135", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3135-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing Yellow", + "product_model": "", + "product_mpn": "ADA3135", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3135", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2965", + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3136", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3136-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing - Green", + "product_model": "", + "product_mpn": "ADA3136", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3136", + "product_stock": "27", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2965", + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3137", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3137-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit 15x7 CharliePlex LED Matrix Display FeatherWing - Blue", + "product_model": "", + "product_mpn": "ADA3137", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3137", + "product_stock": "24", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2965", + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.87", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.99", + "discounted_percent": "9", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3138", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3138-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit 15x7 CharliePlex LED Matrix FeatherWing - Cool White", + "product_model": "", + "product_mpn": "ADA3138", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3138", + "product_stock": "0", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2965", + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3149", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3149-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.8\" 8x16 LED Matrix FeatherWing Display Kit - White", + "product_model": "", + "product_mpn": "ADA3149", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "21.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3149", + "product_stock": "37", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3155", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3150", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3150-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.8\" 8x16 LED Matrix FeatherWing Display Kit - Blue", + "product_model": "", + "product_mpn": "ADA3150", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "21.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3150", + "product_stock": "62", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3155", + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3151", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3151-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.8\" 8x16 LED Matrix FeatherWing Display Kit - Green", + "product_model": "", + "product_mpn": "ADA3151", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3151", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3155", + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3152", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3152-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.8\" 8x16 LED Matrix FeatherWing Display - Red", + "product_model": "", + "product_mpn": "ADA3152", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "18.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3152", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3155", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3153", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3153-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.8\" 8x16 LED Matrix FeatherWing Display Kit - Yellow", + "product_model": "", + "product_mpn": "ADA3153", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "18.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3153", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3155", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3154", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3154-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 0.8\" 8x16 LED Matrix FeatherWing Display - Yellow-Green", + "product_model": "", + "product_mpn": "ADA3154", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "17.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3154", + "product_stock": "in stock", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3155", + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3163", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3163-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit 15x7 CharliePlex LED Matrix FeatherWing - Warm White", + "product_model": "", + "product_mpn": "ADA3163", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "7.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3163", + "product_stock": "47", + "products_hts": "8541.40.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "2965", + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3191", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3191-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Power Relay FeatherWing", + "product_model": "", + "product_mpn": "ADA3191", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3191", + "product_stock": "93", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3201", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3201-09.jpg", + "image_is_video": "0", + "product_name": "Adafruit Ethernet FeatherWing", + "product_model": "", + "product_mpn": "ADA3201", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "13.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3201", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3229", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3229-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Radio FeatherWing - RFM69HCW 900MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3229", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3229", + "product_stock": "62", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3230", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3230-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Radio FeatherWing - RFM69HCW 433MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3230", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3230", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3231", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3231-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit LoRa Radio FeatherWing - RFM95W 900 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3231", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3231", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3232", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3232-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit LoRa Radio FeatherWing - RFM95W 433 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3232", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3232", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3243", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3243-00.jpg", + "image_is_video": "0", + "product_name": "Assembled DC Motor + Stepper FeatherWing Add-on", + "product_model": "", + "product_mpn": "ADA3243", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "21.50", + "product_shipping_weight": "14.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3243", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "21.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3249", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3249-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPXL8 FeatherWing for Feather M0 - 8 x DMA NeoPixels!", + "product_model": "", + "product_mpn": "ADA3249", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3249", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3315", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3315-03.jpg", + "image_is_video": "0", + "product_name": "TFT FeatherWing - 2.4\" 320x240 Touchscreen For All Feathers", + "product_model": "", + "product_mpn": "ADA3315", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "33.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3315", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3321", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3321-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit Mini Color TFT with Joystick FeatherWing", + "product_model": "", + "product_mpn": "ADA3321", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3321", + "product_stock": "-3", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3357", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3357-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Music Maker FeatherWing - MP3 OGG WAV MIDI Synth Player", + "product_model": "", + "product_mpn": "ADA3357", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3357", + "product_stock": "81", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3436", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3436-00.jpg", + "image_is_video": "0", + "product_name": "Music Maker FeatherWing w\/ Amp - MP3 OGG WAV MIDI Synth Player", + "product_model": "Stereo 3W Amplifier", + "product_mpn": "ADA3436", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "9.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3436", + "product_stock": "5", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3449", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3449-03.jpg", + "image_is_video": "1", + "product_name": "Adafruit DotStar FeatherWing - 6 x 12 RGB LEDs", + "product_model": "", + "product_mpn": "ADA3449", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "8.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3449", + "product_stock": "96", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3470", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3470-00.jpg", + "image_is_video": "0", + "product_name": "Assembled Music Maker FeatherWing w\/ Stereo 3W Amplifier", + "product_model": "MP3 OGG WAV MIDI Synth Player", + "product_mpn": "ADA3470", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "27.50", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3470", + "product_stock": "7", + "products_hts": "8535.90.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3632", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3632-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit Joy FeatherWing for all Feathers", + "product_model": "", + "product_mpn": "ADA3632", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "10.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3632", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3651", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3651-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit TFT FeatherWing - 3.5\" 480x320 Touchscreen for Feathers", + "product_model": "", + "product_mpn": "ADA3651", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "53.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3651", + "product_stock": "in stock", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3988", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3988-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Prop-Maker FeatherWing", + "product_model": "", + "product_mpn": "ADA3988", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3988", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4265", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4145", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4145-03.jpg", + "image_is_video": "0", + "product_name": "Assembled Adafruit Prop-Maker FeatherWing", + "product_model": "", + "product_mpn": "ADA4145", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "10.95", + "product_shipping_weight": "9.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4145", + "product_stock": "90", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4265", + "discount_pricing": [ + { + "discounted_price": "10.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "9.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "8.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4147", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4147-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit ADXL343 + ADT7410 Sensor FeatherWing", + "product_model": "", + "product_mpn": "ADA4147", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "7.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4147", + "product_stock": "in stock", + "products_hts": "8535.90.8060", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4253", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4253-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit Quad 2x2 FeatherWing Kit with Headers", + "product_model": "", + "product_mpn": "ADA4253", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "26.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4253", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4254", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4254-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit Quad Side-By-Side FeatherWing Kit with Headers", + "product_model": "", + "product_mpn": "ADA4254", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "25.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4254", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4264", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4264-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit AirLift FeatherWing \u2013 ESP32 WiFi Co-Processor", + "product_model": "", + "product_mpn": "ADA4264", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "12.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4264", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4309", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4309-00.jpg", + "image_is_video": "0", + "product_name": "Grove Shield FeatherWing for Particle Mesh and all Feathers", + "product_model": "", + "product_mpn": "ADA4309", + "product_master_category": "945", + "product_manufacturer": "SeeedStudio", + "product_price": "5.95", + "product_shipping_weight": "22.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4309", + "product_stock": "97", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4357", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4357-00.jpg", + "image_is_video": "0", + "product_name": "Grove Shield FeatherWing", + "product_model": "Wio Lite", + "product_mpn": "ADA4357", + "product_master_category": "945", + "product_manufacturer": "SeeedStudio", + "product_price": "5.95", + "product_shipping_weight": "23.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4357", + "product_stock": "-3", + "products_hts": "8542.31.0001", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4537", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4537-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit NeoPXL8 FeatherWing for Feather M4 - 8 x DMA NeoPixels!", + "product_model": "", + "product_mpn": "ADA4537", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "14.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4537", + "product_stock": "58", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4650", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4650-08.jpg", + "image_is_video": "1", + "product_name": "Adafruit FeatherWing OLED - 128x64 OLED Add-on For Feather", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4650", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4650", + "product_stock": "25", + "products_hts": "8473.30.0002", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4702", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4702-09.jpg", + "image_is_video": "1", + "product_name": "Adafruit RGB Matrix FeatherWing Kit - For nRF52840 Feathers", + "product_model": "", + "product_mpn": "ADA4702", + "product_master_category": "945", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4702", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4740", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4740-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit MIDI FeatherWing Kit", + "product_model": "", + "product_mpn": "ADA4740", + "product_master_category": "945", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "17.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4740", + "product_stock": "34", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2598", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2598-00.jpg", + "image_is_video": "0", + "product_name": "Assembled Adafruit Feather M0 WiFi - ATSAMD21 + ATWINC1500", + "product_model": "", + "product_mpn": "ADA2598", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "36.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2598", + "product_stock": "0", + "products_hts": "8541.40.9500", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4083", + "discount_pricing": [ + { + "discounted_price": "36.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "33.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "29.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2796", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2796-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 Adalogger", + "product_model": "", + "product_mpn": "ADA2796", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2796", + "product_stock": "38", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2821", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2821-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather HUZZAH with ESP8266 - Loose Headers", + "product_model": "", + "product_mpn": "ADA2821", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "16.95", + "product_shipping_weight": "9.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2821", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3404", + "discount_pricing": [ + { + "discounted_price": "16.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "15.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "13.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2829", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2829-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 Bluefruit LE", + "product_model": "", + "product_mpn": "ADA2829", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2829", + "product_stock": "in stock", + "products_hts": "8525.20.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3503", + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2995", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2995-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 Bluefruit LE", + "product_model": "", + "product_mpn": "ADA2995", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "9.1", + "product_url": "https:\/\/www.adafruit.com\/product\/2995", + "product_stock": "in stock", + "products_hts": "8525.20.3080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3010", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3010-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 WiFi - ATSAMD21 + ATWINC1500", + "product_model": "", + "product_mpn": "ADA3010", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3010", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4083", + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3027", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3027-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 FONA", + "product_model": "", + "product_mpn": "ADA3027", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "11.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3027", + "product_stock": "0", + "products_hts": "8471.90.0000", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3044", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3044-00.jpg", + "image_is_video": "0", + "product_name": "Assembled Adafruit Feather M0 WiFi with Stacking Headers", + "product_model": "", + "product_mpn": "ADA3044", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "37.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3044", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4083", + "discount_pricing": [ + { + "discounted_price": "37.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "34.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3046", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3046-05.jpg", + "image_is_video": "0", + "product_name": "Assembled Adafruit Feather HUZZAH with ESP8266 With Headers", + "product_model": "", + "product_mpn": "ADA3046", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "18.95", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3046", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3404", + "discount_pricing": [ + { + "discounted_price": "18.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3056", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3056-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit WICED WiFi Feather - STM32F205 with Cypress WICED WiFi", + "product_model": "", + "product_mpn": "ADA3056", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "8.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3056", + "product_stock": "-10", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3061", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3061-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 WiFi with uFL - ATSAMD21 + ATWINC1500", + "product_model": "", + "product_mpn": "ADA3061", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3061", + "product_stock": "48", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4083", + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3076", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3076-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 RFM69HCW Packet Radio - 868 or 915 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3076", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3076", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3077", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3077-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 with RFM69HCW Packet Radio - 433MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3077", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "8.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3077", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3078", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3078-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 RFM95 LoRa Radio- 868 or 915 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3078", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3078", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3079", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3079-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 RFM96 LoRa Radio - 433MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3079", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "8.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3079", + "product_stock": "29", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3176", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3176-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 RFM69HCW Packet Radio - 868 or 915 MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3176", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3176", + "product_stock": "95", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3177", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3177-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 RFM69HCW Packet Radio - 433MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3177", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3177", + "product_stock": "81", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3178", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3178-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 with RFM95 LoRa Radio - 900MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3178", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3178", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3179", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3179-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M0 RFM96 LoRa Radio - 433MHz", + "product_model": "RadioFruit", + "product_mpn": "ADA3179", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "9.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3179", + "product_stock": "in stock", + "products_hts": "8525.20.3025", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3200", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3200-06.jpg", + "image_is_video": "0", + "product_name": "Teensy 3.x Feather Adapter", + "product_model": "", + "product_mpn": "ADA3200", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3200", + "product_stock": "in stock", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3213", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3213-04.jpg", + "image_is_video": "0", + "product_name": "Assembled Feather HUZZAH w\/ ESP8266 WiFi With Stacking Headers", + "product_model": "", + "product_mpn": "ADA3213", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "11.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3213", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "3404", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3242", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3242-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 Bluefruit LE with Stacking Headers", + "product_model": "Assembled", + "product_mpn": "ADA3242", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "32.95", + "product_shipping_weight": "9.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3242", + "product_stock": "in stock", + "products_hts": "8525.20.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3503", + "discount_pricing": [ + { + "discounted_price": "32.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3379", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3379-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 32u4 Bluefruit LE with Headers - Assembled", + "product_model": "", + "product_mpn": "ADA3379", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "31.95", + "product_shipping_weight": "11.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3379", + "product_stock": "in stock", + "products_hts": "8525.20.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3503", + "discount_pricing": [ + { + "discounted_price": "31.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "28.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "25.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3405", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3405-06.jpg", + "image_is_video": "0", + "product_name": "Adafruit HUZZAH32 \u2013 ESP32 Feather Board", + "product_model": "", + "product_mpn": "ADA3405", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3405", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3707", + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3406", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3406-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit Feather nRF52 Bluefruit LE", + "product_model": "nRF52832", + "product_mpn": "ADA3406", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "8.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3406", + "product_stock": "in stock", + "products_hts": "8525.20.3080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3458", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3458-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather 328P - Atmega328P 3.3V @ 8 MHz", + "product_model": "", + "product_mpn": "ADA3458", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "7.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3458", + "product_stock": "in stock", + "products_hts": "8542.31.00.01", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3574", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3574-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather nRF52 Pro with myNewt Bootloader", + "product_model": "nRF52832", + "product_mpn": "ADA3574", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "27.50", + "product_shipping_weight": "8.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3574", + "product_stock": "73", + "products_hts": "8525.20.3080", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3591", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3591-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit HUZZAH32 \u2013 ESP32 Feather Board (pre-soldered)", + "product_model": "", + "product_mpn": "ADA3591", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "20.95", + "product_shipping_weight": "12.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3591", + "product_stock": "in stock", + "products_hts": "8542.31.00.01", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3707", + "discount_pricing": [ + { + "discounted_price": "20.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "18.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "16.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3619", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3619-00.jpg", + "image_is_video": "0", + "product_name": "Assembled Adafruit HUZZAH32 \u2013 ESP32 Feather Board", + "product_model": "with Stacking Headers", + "product_mpn": "ADA3619", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "21.95", + "product_shipping_weight": "13.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3619", + "product_stock": "in stock", + "products_hts": "8542.31.00.01", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "3707", + "discount_pricing": [ + { + "discounted_price": "21.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "19.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "17.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3900", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3900-07.jpg", + "image_is_video": "1", + "product_name": "Adafruit HalloWing M0 Express", + "product_model": "", + "product_mpn": "ADA3900", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3900", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4062", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4062-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather nRF52840 Express", + "product_model": "", + "product_mpn": "ADA4062", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4062", + "product_stock": "in stock", + "products_hts": "8517.62.0090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4317", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4317-02.jpg", + "image_is_video": "0", + "product_name": "TensorFlow Lite for Microcontrollers Kit", + "product_model": "", + "product_mpn": "ADA4317", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "52.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4317", + "product_stock": "22", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "1010-99", + "min_qty": 10 + } + ] + }, + { + "product_id": "4382", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4382-09.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather STM32F405 Express", + "product_model": "", + "product_mpn": "ADA4382", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "9.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4382", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4461", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4461-03.jpg", + "image_is_video": "0", + "product_name": "Binho Feather \/ Stemma QT Interface Board", + "product_model": "", + "product_mpn": "ADA4461", + "product_master_category": "946", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4461", + "product_stock": "33", + "products_hts": "8543.90.6800", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4516", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4516-08.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather nRF52840 Sense", + "product_model": "", + "product_mpn": "ADA4516", + "product_master_category": "946", + "product_manufacturer": "Adafruit", + "product_price": "32.50", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4516", + "product_stock": "in stock", + "products_hts": "8517.62.0090", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "32.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4769", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4769-00.jpg", + "image_is_video": "0", + "product_name": "FeatherS2 - ESP32-S2 Feather Development Board", + "product_model": "", + "product_mpn": "ADA4769", + "product_master_category": "946", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "11.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4769", + "product_stock": "-9", + "products_hts": "8542.39.00.00", + "products_coo": "AU", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2940", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2940-01.jpg", + "image_is_video": "0", + "product_name": "Short Headers Kit for Feather - 12-pin + 16-pin Female Headers", + "product_model": "", + "product_mpn": "ADA2940", + "product_master_category": "947", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/2940", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3366", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3366-01.jpg", + "image_is_video": "0", + "product_name": "36-pin Stacking header - pack of 5!", + "product_model": "", + "product_mpn": "ADA3366", + "product_master_category": "947", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "20.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3366", + "product_stock": "in stock", + "products_hts": "8535.90.80.20", + "products_coo": "TW", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4496", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4496-04.jpg", + "image_is_video": "0", + "product_name": "Feather Click Shield by MikroElektronika", + "product_model": "", + "product_mpn": "ADA4496", + "product_master_category": "947", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "45.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4496", + "product_stock": "5", + "products_hts": "8542.31.0001", + "products_coo": "RS", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4743", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4743-00.jpg", + "image_is_video": "0", + "product_name": "SMT Socket Header Kit for FeatherWings", + "product_model": "", + "product_mpn": "ADA4743", + "product_master_category": "947", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4743", + "product_stock": "in stock", + "products_hts": "8536.69.4040", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3792", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3792-00.png", + "image_is_video": "0", + "product_name": "Adafruit IO+ Subscription Pass \u2013 One Year", + "product_model": "", + "product_mpn": "ADA3792", + "product_master_category": "951", + "product_manufacturer": "Adafruit", + "product_price": "99.00", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3792", + "product_stock": "0", + "products_hts": "8523.80.20", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3382", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3382-13.jpg", + "image_is_video": "0", + "product_name": "Adafruit Metro M4 feat. Microchip ATSAMD51", + "product_model": "", + "product_mpn": "ADA3382", + "product_master_category": "952", + "product_manufacturer": "Adafruit", + "product_price": "27.50", + "product_shipping_weight": "24.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3382", + "product_stock": "0", + "products_hts": "8542.31.99", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "27.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "24.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "22.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3800", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3800-04.jpg", + "image_is_video": "1", + "product_name": "Adafruit ItsyBitsy M4 Express featuring ATSAMD51", + "product_model": "", + "product_mpn": "ADA3800", + "product_master_category": "952", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3800", + "product_stock": "in stock", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3857", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3857-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit Feather M4 Express - Featuring ATSAMD51", + "product_model": "ATSAMD51 Cortex M4", + "product_mpn": "ADA3857", + "product_master_category": "952", + "product_manufacturer": "Adafruit", + "product_price": "22.95", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3857", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "22.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "20.66", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "18.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3938", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3938-05.jpg", + "image_is_video": "0", + "product_name": "Adafruit NeoTrellis M4 Mainboard - featuring SAMD51", + "product_model": "", + "product_mpn": "ADA3938", + "product_master_category": "952", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "31.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3938", + "product_stock": "in stock", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4064", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4064-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit Grand Central M4 Express featuring the SAMD51", + "product_model": "", + "product_mpn": "ADA4064", + "product_master_category": "952", + "product_manufacturer": "Adafruit", + "product_price": "37.50", + "product_shipping_weight": "36.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4064", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "37.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "33.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "30.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4084", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4084-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Grand Central M4 Express featuring SAMD51", + "product_model": "Without Headers", + "product_mpn": "ADA4084", + "product_master_category": "952", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "27.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4084", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4707", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4707-00.jpg", + "image_is_video": "0", + "product_name": "Seeed Wio Terminal", + "product_model": "", + "product_mpn": "ADA4707", + "product_master_category": "952", + "product_manufacturer": "SeeedStudio", + "product_price": "42.50", + "product_shipping_weight": "106.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4707", + "product_stock": "43", + "products_hts": "8471.80.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4759", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4759-08.jpg", + "image_is_video": "1", + "product_name": "Adafruit Feather M4 CAN Express with ATSAME51", + "product_model": "", + "product_mpn": "ADA4759", + "product_master_category": "952", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4759", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2708", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2708-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Picade Controller PCB", + "product_model": "PIM110", + "product_mpn": "ADA2708", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "27.95", + "product_shipping_weight": "30.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2708", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "GB", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3743", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3743-05.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Inky pHAT for Raspberry Pi - 3 Color eInk Display", + "product_model": "", + "product_mpn": "ADA3743", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "26.50", + "product_shipping_weight": "17.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3743", + "product_stock": "in stock", + "products_hts": "8542.90.00 00", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3933", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3933-02.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Inky pHAT - 3 Color eInk Display", + "product_model": "Yellow\/Black\/White", + "product_mpn": "ADA3933", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "26.50", + "product_shipping_weight": "18.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3933", + "product_stock": "80", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3934", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3934-03.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Inky pHAT - eInk Display - Black\/White", + "product_model": "", + "product_mpn": "ADA3934", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "24.95", + "product_shipping_weight": "17.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3934", + "product_stock": "15", + "products_hts": "8542.90.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4144", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4144-01.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Keybow Mini Mechanical Keyboard Kit with Raspberry Pi", + "product_model": "Linear (Soft) Switches", + "product_mpn": "ADA4144", + "product_master_category": "953", + "product_manufacturer": null, + "product_price": "74.95", + "product_shipping_weight": "196.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4144", + "product_stock": "9", + "products_hts": "8471.60.2000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4316", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4316-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Fan SHIM for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4316", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "11.95", + "product_shipping_weight": "16.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4316", + "product_stock": "in stock", + "products_hts": "8473.30.5100", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4334", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4334-09.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Picade Cabinet Kit - 10\" Display", + "product_model": "PIM469", + "product_mpn": "ADA4334", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "249.00", + "product_shipping_weight": "2,587.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4334", + "product_stock": "14", + "products_hts": "8542.39.0001", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4337", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4337-06.jpg", + "image_is_video": "0", + "product_name": "Pimoroni HDMI 10\" IPS LCD Screen Kit - 1024x768", + "product_model": "", + "product_mpn": "ADA4337", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "139.95", + "product_shipping_weight": "388.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4337", + "product_stock": "0", + "products_hts": "8528.52.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4338", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4338-05.jpg", + "image_is_video": "0", + "product_name": "Pimoroni HDMI 8\" IPS LCD Screen Kit - 1024x768", + "product_model": "", + "product_mpn": "ADA4338", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "74.95", + "product_shipping_weight": "221.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4338", + "product_stock": "33", + "products_hts": "8528.52.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4451", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4451-05.jpg", + "image_is_video": "0", + "product_name": "Pirate Audio: Speaker for Raspberry Pi - Built-in 1W Speaker", + "product_model": "", + "product_mpn": "ADA4451", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "24.95", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4451", + "product_stock": "17", + "products_hts": "8519.81.4050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4452", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4452-05.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Pirate Audio: 3.5mm Line-out for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4452", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "24.95", + "product_shipping_weight": "14.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4452", + "product_stock": "32", + "products_hts": "8519.81.4050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4453", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4453-06.jpg", + "image_is_video": "0", + "product_name": "Pirate Audio: 3W Stereo Speaker Amp for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA4453", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "24.95", + "product_shipping_weight": "15.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4453", + "product_stock": "27", + "products_hts": "8519.81.4050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4454", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4454-04.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Pirate Audio: Headphone Amp for Raspberry Pi", + "product_model": "PIM482", + "product_mpn": "ADA4454", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "24.95", + "product_shipping_weight": "21.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4454", + "product_stock": "11", + "products_hts": "8519.81.4050", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4455", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4455-03.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Enviro \u2013 Indoor Environmental Monitor for RaspPi", + "product_model": "PIM486", + "product_mpn": "ADA4455", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "34.95", + "product_shipping_weight": "19.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4455", + "product_stock": "0", + "products_hts": "8473.30.2000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4498", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4498-04.jpg", + "image_is_video": "0", + "product_name": "Pimoroni HyperPixel 4.0 Square - Hi-Res Display for Raspberry Pi", + "product_model": "Non-Touch - PIM475", + "product_mpn": "ADA4498", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "67.50", + "product_shipping_weight": "100.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4498", + "product_stock": "0", + "products_hts": "8531.20.0020", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4518", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4518-00.jpg", + "image_is_video": "0", + "product_name": "Pimoroni Player X USB Games Controller PCB", + "product_model": "PIM444", + "product_mpn": "ADA4518", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "12.50", + "product_shipping_weight": "10.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4518", + "product_stock": "51", + "products_hts": "8473.29.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4674", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4674-05.jpg", + "image_is_video": "1", + "product_name": "Pimoroni Enviro + FeatherWing", + "product_model": "PIM502", + "product_mpn": "ADA4674", + "product_master_category": "953", + "product_manufacturer": "Pimoroni", + "product_price": "49.95", + "product_shipping_weight": "10.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4674", + "product_stock": "14", + "products_hts": "8473.30.2000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3583", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3583-00.jpg", + "image_is_video": "0", + "product_name": "Great Scott Gadgets HackRF One - Software Defined Radio", + "product_model": "", + "product_mpn": "ADA3583", + "product_master_category": "954", + "product_manufacturer": "Great Scott Gadgets", + "product_price": "339.95", + "product_shipping_weight": "192.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3583", + "product_stock": "37", + "products_hts": "8526.92.5000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "339.95", + "discounted_percent": 0, + "show_qty": "11-1", + "min_qty": 1 + } + ] + }, + { + "product_id": "3586", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3586-00.jpg", + "image_is_video": "0", + "product_name": "YARD Stick One - Sub-1 GHz Wireless Test Tool", + "product_model": "", + "product_mpn": "ADA3586", + "product_master_category": "954", + "product_manufacturer": "Great Scott Gadgets", + "product_price": "99.95", + "product_shipping_weight": "10.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3586", + "product_stock": "15", + "products_hts": "8471.60.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1497", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1497-04.jpg", + "image_is_video": "0", + "product_name": "Software Defined Radio Receiver USB Stick - RTL2832 w\/R820T", + "product_model": "", + "product_mpn": "ADA1497", + "product_master_category": "954", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "86.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1497", + "product_stock": "in stock", + "products_hts": "8527.39.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4024", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4024-03.jpg", + "image_is_video": "0", + "product_name": "CircuitPython Book for Beginners 1 (Japanese)", + "product_model": "STEAM Tokyo", + "product_mpn": "ADA4024", + "product_master_category": "956", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "279.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4024", + "product_stock": "21", + "products_hts": "4901.99.0050", + "products_coo": "JP", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4220", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4220-00.jpg", + "image_is_video": "0", + "product_name": "Learn CircuitPython with 1 Month Subscription to Codecademy Pro", + "product_model": "", + "product_mpn": "ADA4220", + "product_master_category": "956", + "product_manufacturer": "Adafruit", + "product_price": "19.99", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4220", + "product_stock": "0", + "products_hts": "8523.80.2000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3364", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3364-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit pIRkey - a Python Programmable InfraRed USB Adapter", + "product_model": "", + "product_mpn": "ADA3364", + "product_master_category": "957", + "product_manufacturer": "Adafruit", + "product_price": "8.95", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3364", + "product_stock": "-3", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3939", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3939-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyBadge LC - MakeCode Arcade, CircuitPython, or Arduino", + "product_model": "Low Cost Version", + "product_mpn": "ADA3939", + "product_master_category": "957", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "28.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3939", + "product_stock": "0", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4000", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4000-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Metro M4 Express AirLift (WiFi) - Lite", + "product_model": "", + "product_mpn": "ADA4000", + "product_master_category": "957", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "26.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4000", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4028", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4028-01.jpg", + "image_is_video": "0", + "product_name": "CircuitPython Starter Kit with Adafruit Itsy Bitsy M4", + "product_model": "", + "product_mpn": "ADA4028", + "product_master_category": "957", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "114.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4028", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4200", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4200-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyBadge for MakeCode Arcade, CircuitPython, or Arduino", + "product_model": "", + "product_mpn": "ADA4200", + "product_master_category": "957", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "32.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4200", + "product_stock": "22", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4242", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4242-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit PyGamer for MakeCode Arcade, CircuitPython or Arduino", + "product_model": "", + "product_mpn": "ADA4242", + "product_master_category": "957", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "39.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4242", + "product_stock": "0", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4319", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4319-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit PyRuler - Engineer Reference Ruler with CircuitPython", + "product_model": "", + "product_mpn": "ADA4319", + "product_master_category": "957", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4319", + "product_stock": "in stock", + "products_hts": "8534.00.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4513", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4513-01.jpg", + "image_is_video": "0", + "product_name": "Serpente - Tiny CircuitPython Prototyping Board - USB C Socket", + "product_model": "", + "product_mpn": "ADA4513", + "product_master_category": "957", + "product_manufacturer": null, + "product_price": "15.00", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4513", + "product_stock": "0", + "products_hts": "8473.30.1140", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4514", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4514-01.jpg", + "image_is_video": "0", + "product_name": "Serpente - Tiny CircuitPython Prototyping Board - USB C Plug", + "product_model": "", + "product_mpn": "ADA4514", + "product_master_category": "957", + "product_manufacturer": null, + "product_price": "15.00", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4514", + "product_stock": "7", + "products_hts": "8473.30.1140", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4802", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4802-00.jpg", + "image_is_video": "0", + "product_name": "CircuitBrains Deluxe - CircuitPython-compatible SAMD51 Module", + "product_model": "by Null Byte Labs", + "product_mpn": "ADA4802", + "product_master_category": "957", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "4.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4802", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4950", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4950-01.png", + "image_is_video": "0", + "product_name": "Adafruit Metro M7 with AirLift - Featuring NXP iMX RT1011", + "product_model": "", + "product_mpn": "ADA4950", + "product_master_category": "957", + "product_manufacturer": "Adafruit", + "product_price": "0.00", + "product_shipping_weight": "19.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4950", + "product_stock": "-3", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4985", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4985-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit FunHouse - WiFi Home Automation Development Board", + "product_model": "", + "product_mpn": "ADA4985", + "product_master_category": "957", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "29.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4985", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5029", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5029-01.jpg", + "image_is_video": "0", + "product_name": "TinyS2 - ESP32-S2 Development Board", + "product_model": "", + "product_mpn": "ADA5029", + "product_master_category": "957", + "product_manufacturer": null, + "product_price": "18.50", + "product_shipping_weight": "9.4", + "product_url": "https:\/\/www.adafruit.com\/product\/5029", + "product_stock": "in stock", + "products_hts": "8473.30.0002", + "products_coo": "AU", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "18.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "16.65", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "14.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4226", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4226-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit INA260 High or Low Side Voltage, Current, Power Sensor", + "product_model": "", + "product_mpn": "ADA4226", + "product_master_category": "959", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4226", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2599", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2599-05.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Express - Black Girls CODE", + "product_model": "", + "product_mpn": "ADA2599", + "product_master_category": "966", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/2599", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "1", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3333", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3333-05.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Express", + "product_model": "", + "product_mpn": "ADA3333", + "product_master_category": "966", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "15.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3333", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3517", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3517-03.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Express - Base Kit", + "product_model": "", + "product_mpn": "ADA3517", + "product_master_category": "966", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "152.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3517", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3977", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3977-01.jpg", + "image_is_video": "0", + "product_name": "Getting Started with Circuit Playground Express Book Bundle", + "product_model": "", + "product_mpn": "ADA3977", + "product_master_category": "966", + "product_manufacturer": "Adafruit", + "product_price": "54.95", + "product_shipping_weight": "534.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3977", + "product_stock": "0", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3000", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3000-06.jpg", + "image_is_video": "1", + "product_name": "Circuit Playground Classic", + "product_model": "", + "product_mpn": "ADA3000", + "product_master_category": "967", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3000", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3816", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3816-04.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Bolt-On Kit", + "product_model": "", + "product_mpn": "ADA3816", + "product_master_category": "968", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "15.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3816", + "product_stock": "in stock", + "products_hts": "7326.90.8688", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3915", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3915-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit Circuit Playground Express or Bluefruit Enclosure", + "product_model": "", + "product_mpn": "ADA3915", + "product_master_category": "968", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "16.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3915", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4103", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4103-06.jpg", + "image_is_video": "0", + "product_name": "Bolt-On Kit for Circuit Playground, micro:bit, Flora or Gemma", + "product_model": "", + "product_mpn": "ADA4103", + "product_master_category": "968", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "5.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4103", + "product_stock": "in stock", + "products_hts": "7326.90.8688", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4320", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4320-08.jpg", + "image_is_video": "0", + "product_name": "Circuit Playground Proto Gizmo - Bolt-on Perma-Proto", + "product_model": "", + "product_mpn": "ADA4320", + "product_master_category": "968", + "product_manufacturer": "Adafruit", + "product_price": "7.95", + "product_shipping_weight": "25.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4320", + "product_stock": "70", + "products_hts": "8534.00.0040", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3710", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3710-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit PCB Coaster - Minerva + Adabot", + "product_model": "", + "product_mpn": "ADA3710", + "product_master_category": "969", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "50.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3710", + "product_stock": "38", + "products_hts": "8534.00.00.95", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3711", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3711-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit PCB Coaster - Cappy + Adabot", + "product_model": "", + "product_mpn": "ADA3711", + "product_master_category": "969", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "50.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3711", + "product_stock": "74", + "products_hts": "8534.00.00.95", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3712", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3712-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit PCB Coaster - LEDs + Adabot", + "product_model": "", + "product_mpn": "ADA3712", + "product_master_category": "969", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "50.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3712", + "product_stock": "49", + "products_hts": "8534.00.00.95", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3713", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3713-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit PCB Coaster - Hans + Adabot", + "product_model": "", + "product_mpn": "ADA3713", + "product_master_category": "969", + "product_manufacturer": "Adafruit", + "product_price": "6.95", + "product_shipping_weight": "50.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3713", + "product_stock": "61", + "products_hts": "8534.00.00.95", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "324", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/324-03.jpg", + "image_is_video": "0", + "product_name": "Stepper motor - NEMA-17 size - 200 steps\/rev, 12V 350mA", + "product_model": "", + "product_mpn": "ADA324", + "product_master_category": "970", + "product_manufacturer": null, + "product_price": "14.00", + "product_shipping_weight": "195.6", + "product_url": "https:\/\/www.adafruit.com\/product\/324", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.60", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4411", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4411-06.jpg", + "image_is_video": "1", + "product_name": "Mini Stepper Motor - 200 Steps - 20x30mm NEMA-8 Size", + "product_model": "", + "product_mpn": "ADA4411", + "product_master_category": "970", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "58.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4411", + "product_stock": "in stock", + "products_hts": "8501.31.6000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5117", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5117-00.jpg", + "image_is_video": "0", + "product_name": "Stepper Motor - NEMA-23 Size with 9mm GT2 Pulley", + "product_model": "140 oz\/in 2.8A", + "product_mpn": "ADA5117", + "product_master_category": "970", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "814.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5117", + "product_stock": "0", + "products_hts": "3926.90.9996", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2424", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/2424-05.jpg", + "image_is_video": "1", + "product_name": "Automotive Gauge Stepper Motor", + "product_model": "x27.168", + "product_mpn": "ADA2424", + "product_master_category": "970", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "17.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2424", + "product_stock": "0", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "918", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/918-03.jpg", + "image_is_video": "0", + "product_name": "Small Reduction Stepper Motor - 12VDC 32-Step 1\/64 Gearing", + "product_model": "", + "product_mpn": "ADA918", + "product_master_category": "970", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "37.6", + "product_url": "https:\/\/www.adafruit.com\/product\/918", + "product_stock": "-3", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "858", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/858-04.jpg", + "image_is_video": "0", + "product_name": "Small Reduction Stepper Motor - 5VDC 32-Step 1\/64 Gearing", + "product_model": "", + "product_mpn": "ADA858", + "product_master_category": "970", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "35.9", + "product_url": "https:\/\/www.adafruit.com\/product\/858", + "product_stock": "-10", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3882", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3882-05.jpg", + "image_is_video": "1", + "product_name": "CD DVD Spindle Motor", + "product_model": "", + "product_mpn": "ADA3882", + "product_master_category": "973", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "23.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3882", + "product_stock": "in stock", + "products_hts": "8501.10.2000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3993", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3993-01.jpg", + "image_is_video": "0", + "product_name": "Particle Argon Kit - nRF52840 with BLE and WiFi", + "product_model": "", + "product_mpn": "ADA3993", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "35.95", + "product_shipping_weight": "123.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3993", + "product_stock": "0", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3994", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3994-01.jpg", + "image_is_video": "0", + "product_name": "Particle Boron LTE Kit - nRF52840 with LTE Cellular Modem", + "product_model": "", + "product_mpn": "ADA3994", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "89.95", + "product_shipping_weight": "123.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3994", + "product_stock": "0", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3995", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3995-01.jpg", + "image_is_video": "0", + "product_name": "Particle Xenon Kit - nRF52840 with BLE and Mesh", + "product_model": "", + "product_mpn": "ADA3995", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "25.00", + "product_shipping_weight": "117.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3995", + "product_stock": "-3", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3996", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3996-00.jpg", + "image_is_video": "0", + "product_name": "Particle Boron 2G\/3G Kit - nRF52840 with Mesh and Cellular", + "product_model": "", + "product_mpn": "ADA3996", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "89.95", + "product_shipping_weight": "161.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3996", + "product_stock": "-5", + "products_hts": "8471.80.1000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3997", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3997-01.jpg", + "image_is_video": "0", + "product_name": "Particle Argon - nRF52840 with Mesh and WiFi", + "product_model": "", + "product_mpn": "ADA3997", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "27.50", + "product_shipping_weight": "48.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3997", + "product_stock": "0", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3998", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3998-00.jpg", + "image_is_video": "0", + "product_name": "Particle Boron LTE - nRF52840 with Mesh and LTE Cellular Modem", + "product_model": "", + "product_mpn": "ADA3998", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "89.95", + "product_shipping_weight": "52.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3998", + "product_stock": "0", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3999", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3999-00.jpg", + "image_is_video": "0", + "product_name": "Particle Xenon - nRF52840 with BLE and Mesh", + "product_model": "", + "product_mpn": "ADA3999", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "19.95", + "product_shipping_weight": "44.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3999", + "product_stock": "-3", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4001", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4001-04.jpg", + "image_is_video": "0", + "product_name": "Particle Debugger", + "product_model": "", + "product_mpn": "ADA4001", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "30.00", + "product_shipping_weight": "13.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4001", + "product_stock": "0", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4003", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4003-01.jpg", + "image_is_video": "0", + "product_name": "Particle Ethernet FeatherWing", + "product_model": "", + "product_mpn": "ADA4003", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "20.00", + "product_shipping_weight": "30.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4003", + "product_stock": "10", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4004", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4004-00.jpg", + "image_is_video": "0", + "product_name": "Particle Mesh WiFi Bundle - Full Starter Kit", + "product_model": "", + "product_mpn": "ADA4004", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "90.00", + "product_shipping_weight": "497.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4004", + "product_stock": "1", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4005", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4005-00.jpg", + "image_is_video": "0", + "product_name": "Particle Mesh LTE Bundle - Full Starter Kit", + "product_model": "", + "product_mpn": "ADA4005", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "129.95", + "product_shipping_weight": "497.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4005", + "product_stock": "-3", + "products_hts": "8517.62.0090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4006", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4006-00.jpg", + "image_is_video": "0", + "product_name": "Particle Mesh 2G\/3G Bundle - Full Starter Kit", + "product_model": "", + "product_mpn": "ADA4006", + "product_master_category": "979", + "product_manufacturer": "Particle", + "product_price": "139.95", + "product_shipping_weight": "532.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4006", + "product_stock": "5", + "products_hts": "8542.39.0001", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2999", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2999-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit ATWINC1500 WiFi Breakout", + "product_model": "", + "product_mpn": "ADA2999", + "product_master_category": "980", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "6.8", + "product_url": "https:\/\/www.adafruit.com\/product\/2999", + "product_stock": "in stock", + "products_hts": "8471.80.1000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4095", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4095-07.jpg", + "image_is_video": "0", + "product_name": "ESP-EYE Development Board V2.1", + "product_model": "", + "product_mpn": "ADA4095", + "product_master_category": "980", + "product_manufacturer": "Espressif", + "product_price": "24.95", + "product_shipping_weight": "35.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4095", + "product_stock": "34", + "products_hts": "8525.80.4000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4172", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4172-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit HUZZAH32 \u2013 ESP32 Breakout Board", + "product_model": "", + "product_mpn": "ADA4172", + "product_master_category": "980", + "product_manufacturer": "Adafruit", + "product_price": "13.50", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4172", + "product_stock": "91", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "13.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "12.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4201", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4201-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit AirLift \u2013 ESP32 WiFi Co-Processor Breakout Board", + "product_model": "", + "product_mpn": "ADA4201", + "product_master_category": "980", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "7.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4201", + "product_stock": "in stock", + "products_hts": "8542.31.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4745", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4745-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit Matrix Portal - CircuitPython Powered Internet Display", + "product_model": "", + "product_mpn": "ADA4745", + "product_master_category": "980", + "product_manufacturer": "Adafruit", + "product_price": "24.95", + "product_shipping_weight": "20.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4745", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2971", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2971-00.jpg", + "image_is_video": "0", + "product_name": "Ethernet Shield for Arduino - W5500 Chipset", + "product_model": "", + "product_mpn": "ADA2971", + "product_master_category": "982", + "product_manufacturer": "SeeedStudio", + "product_price": "32.50", + "product_shipping_weight": "43.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2971", + "product_stock": "66", + "products_hts": "8473.30.0002", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "32.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "29.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "26.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3093", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3093-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit CRICKIT for Circuit Playground Express", + "product_model": "", + "product_mpn": "ADA3093", + "product_master_category": "996", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "50.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3093", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3343", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3343-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit CRICKIT FeatherWing for any Feather", + "product_model": "", + "product_mpn": "ADA3343", + "product_master_category": "996", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "50.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3343", + "product_stock": "92", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3928", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3928-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit CRICKIT for micro:bit", + "product_model": "", + "product_mpn": "ADA3928", + "product_master_category": "996", + "product_manufacturer": "Adafruit", + "product_price": "29.95", + "product_shipping_weight": "50.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3928", + "product_stock": "4", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "29.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "26.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "23.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3957", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3957-06.jpg", + "image_is_video": "1", + "product_name": "Adafruit CRICKIT HAT for Raspberry Pi", + "product_model": "", + "product_mpn": "ADA3957", + "product_master_category": "996", + "product_manufacturer": "Adafruit", + "product_price": "34.95", + "product_shipping_weight": "33.4", + "product_url": "https:\/\/www.adafruit.com\/product\/3957", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "34.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "31.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "27.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4104", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4104-01.jpg", + "image_is_video": "0", + "product_name": "DIY USB Cable Parts - Right Angle Micro B Plug Up", + "product_model": "", + "product_mpn": "ADA4104", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4104", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4105", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4105-01.jpg", + "image_is_video": "0", + "product_name": "DIY USB Cable Parts - Right Angle Micro B Plug Down", + "product_model": "", + "product_mpn": "ADA4105", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4105", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4107", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4107-01.jpg", + "image_is_video": "0", + "product_name": "DIY USB Cable Parts - Straight Micro B Jack", + "product_model": "", + "product_mpn": "ADA4107", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "1.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4107", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4108", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4108-01.jpg", + "image_is_video": "0", + "product_name": "DIY USB Cable Parts - Straight Type C Plug", + "product_model": "", + "product_mpn": "ADA4108", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4108", + "product_stock": "34", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4109", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4109-01.jpg", + "image_is_video": "0", + "product_name": "DIY USB Cable Parts - Straight Type A Plug", + "product_model": "", + "product_mpn": "ADA4109", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "3.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4109", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4110", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4110-01.jpg", + "image_is_video": "0", + "product_name": "DIY USB Cable Parts - Straight Type A Jack", + "product_model": "", + "product_mpn": "ADA4110", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4110", + "product_stock": "in stock", + "products_hts": "8473.30.9100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1828", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1828-02.jpg", + "image_is_video": "0", + "product_name": "USB DIY Slim Connector Shell - USB Type A Socket\/Female", + "product_model": "", + "product_mpn": "ADA1828", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "0.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1828", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1825", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1825-00.jpg", + "image_is_video": "0", + "product_name": "USB DIY Slim Connector Shell - Mini-B Plug", + "product_model": "", + "product_mpn": "ADA1825", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1825", + "product_stock": "-3", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1829", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1829-00.jpg", + "image_is_video": "0", + "product_name": "USB DIY Connector - MicroB Female Plug", + "product_model": "", + "product_mpn": "ADA1829", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1829", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1827", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1827-00.jpg", + "image_is_video": "0", + "product_name": "USB DIY Slim Connector Shell - A-M Plug", + "product_model": "", + "product_mpn": "ADA1827", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.5", + "product_url": "https:\/\/www.adafruit.com\/product\/1827", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1826", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1826-01.jpg", + "image_is_video": "0", + "product_name": "USB DIY Slim Connector Shell - MicroB Plug", + "product_model": "", + "product_mpn": "ADA1826", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/1826", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1388", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1388-04.jpg", + "image_is_video": "0", + "product_name": "USB DIY Connector Shell - Type A Socket", + "product_model": "", + "product_mpn": "ADA1388", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.6", + "product_url": "https:\/\/www.adafruit.com\/product\/1388", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1389", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1389-04.jpg", + "image_is_video": "0", + "product_name": "USB DIY Connector Shell - Type Mini-B Plug", + "product_model": "", + "product_mpn": "ADA1389", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1389", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "1387", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1387-04.jpg", + "image_is_video": "0", + "product_name": "USB DIY Connector Shell - Type A Male Plug", + "product_model": "", + "product_mpn": "ADA1387", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1387", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1390", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1390-04.jpg", + "image_is_video": "0", + "product_name": "USB DIY Connector Shell - Type Micro-B Plug", + "product_model": "", + "product_mpn": "ADA1390", + "product_master_category": "997", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1390", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "907", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/907-02.jpg", + "image_is_video": "0", + "product_name": "Panel Mount USB Cable - B Male to B Female", + "product_model": "", + "product_mpn": "ADA907", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "31.7", + "product_url": "https:\/\/www.adafruit.com\/product\/907", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "937", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/937-04.jpg", + "image_is_video": "0", + "product_name": "Panel Mount USB Cable - B Female to Micro-B Male", + "product_model": "", + "product_mpn": "ADA937", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "27.3", + "product_url": "https:\/\/www.adafruit.com\/product\/937", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3258", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3258-02.jpg", + "image_is_video": "0", + "product_name": "Panel Mount Extension USB Cable - Micro B Male to Micro B Female", + "product_model": "", + "product_mpn": "ADA3258", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "19.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3258", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3318", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3318-02.jpg", + "image_is_video": "0", + "product_name": "Panel Mount Extension USB Cable - Mini B Male to Mini B Female", + "product_model": "", + "product_mpn": "ADA3318", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "20.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3318", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4052", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4052-02.jpg", + "image_is_video": "0", + "product_name": "Snap-In Panel Mount Cable - USB C Socket to USB A Plug", + "product_model": "", + "product_mpn": "ADA4052", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "24.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4052", + "product_stock": "in stock", + "products_hts": "8544.49.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4053", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4053-02.jpg", + "image_is_video": "0", + "product_name": "Panel Mount Cable USB C to Type A - 30cm", + "product_model": "", + "product_mpn": "ADA4053", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "25.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4053", + "product_stock": "in stock", + "products_hts": "8544.49.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4055", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4055-04.jpg", + "image_is_video": "0", + "product_name": "Snap-In Panel Mount Cable - USB A Extension Cable", + "product_model": "", + "product_mpn": "ADA4055", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4055", + "product_stock": "in stock", + "products_hts": "8544.49.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4056", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4056-02.jpg", + "image_is_video": "0", + "product_name": "Panel Mount Cable USB C to Micro B Male - 30cm", + "product_model": "", + "product_mpn": "ADA4056", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "20.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4056", + "product_stock": "in stock", + "products_hts": "8544.49.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4261", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4261-01.jpg", + "image_is_video": "0", + "product_name": "USB C Jack to USB C Jack Round Panel Mount Adapter", + "product_model": "", + "product_mpn": "ADA4261", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "20.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4261", + "product_stock": "91", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "936", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/936-02.jpg", + "image_is_video": "0", + "product_name": "Panel Mount USB Cable - B Female to Mini-B Male", + "product_model": "", + "product_mpn": "ADA936", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "28.1", + "product_url": "https:\/\/www.adafruit.com\/product\/936", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "908", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/908-04.jpg", + "image_is_video": "0", + "product_name": "Panel Mount USB Cable - A Male to A Female", + "product_model": "", + "product_mpn": "ADA908", + "product_master_category": "998", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "28.9", + "product_url": "https:\/\/www.adafruit.com\/product\/908", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "789", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/789-02.jpg", + "image_is_video": "0", + "product_name": "Adafruit PN532 NFC\/RFID Controller Shield for Arduino + Extras", + "product_model": "", + "product_mpn": "ADA789", + "product_master_category": "999", + "product_manufacturer": "Adafruit", + "product_price": "39.95", + "product_shipping_weight": "24.2", + "product_url": "https:\/\/www.adafruit.com\/product\/789", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "39.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "35.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "31.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2024", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2024-03.jpg", + "image_is_video": "0", + "product_name": "Adafruit 12 x Capacitive Touch Shield for Arduino - MPR121", + "product_model": "", + "product_mpn": "ADA2024", + "product_master_category": "999", + "product_manufacturer": "Adafruit", + "product_price": "12.50", + "product_shipping_weight": "15.7", + "product_url": "https:\/\/www.adafruit.com\/product\/2024", + "product_stock": "93", + "products_hts": "8542.90.00 00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4301", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4301-03.jpg", + "image_is_video": "0", + "product_name": "Official Raspberry Pi Foundation Raspberry Pi 4 Case - Red White", + "product_model": "", + "product_mpn": "ADA4301", + "product_master_category": "1001", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "6.00", + "product_shipping_weight": "48.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4301", + "product_stock": "in stock", + "products_hts": "8538.10.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "3", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.00", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.40", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4318", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4318-01.jpg", + "image_is_video": "0", + "product_name": "Rainbow Pibow Coup\u00e9 4 for Raspberry Pi 4", + "product_model": "", + "product_mpn": "ADA4318", + "product_master_category": "1001", + "product_manufacturer": "Pimoroni", + "product_price": "9.95", + "product_shipping_weight": "56.2", + "product_url": "https:\/\/www.adafruit.com\/product\/4318", + "product_stock": "83", + "products_hts": "4202.19.0000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4340", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4340-08.jpg", + "image_is_video": "1", + "product_name": "Aluminum Metal Heatsink Raspberry Pi 4 Case with Dual Fans", + "product_model": "", + "product_mpn": "ADA4340", + "product_master_category": "1001", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "123.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4340", + "product_stock": "in stock", + "products_hts": "7612.90.1090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4341", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4341-00.jpg", + "image_is_video": "0", + "product_name": "Aluminum Metal Heatsink Raspberry Pi 4 Case", + "product_model": "Without Fans", + "product_mpn": "ADA4341", + "product_master_category": "1001", + "product_manufacturer": null, + "product_price": "24.95", + "product_shipping_weight": "123.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4341", + "product_stock": "in stock", + "products_hts": "7612.90.1090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "24.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "22.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "19.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4553", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4553-00.jpg", + "image_is_video": "0", + "product_name": "Flirc Aluminum Case for Raspberry Pi 4", + "product_model": "", + "product_mpn": "ADA4553", + "product_master_category": "1001", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "117.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4553", + "product_stock": "in stock", + "products_hts": "3923.10.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4961", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4961-00.jpg", + "image_is_video": "0", + "product_name": "Lincoln Binns Black Pi-Box Pro 4 Enclosure for Raspberry Pi 4", + "product_model": "", + "product_mpn": "ADA4961", + "product_master_category": "1001", + "product_manufacturer": null, + "product_price": "29.95", + "product_shipping_weight": "192.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4961", + "product_stock": "in stock", + "products_hts": "3923.10.9000", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5040", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5040-01.jpg", + "image_is_video": "0", + "product_name": "anidees Black Extra High Raspberry Pi 4 Case", + "product_model": "", + "product_mpn": "ADA5040", + "product_master_category": "1001", + "product_manufacturer": "anidees", + "product_price": "49.95", + "product_shipping_weight": "216.7", + "product_url": "https:\/\/www.adafruit.com\/product\/5040", + "product_stock": "57", + "products_hts": "7612.90.1090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4298", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4298-04.jpg", + "image_is_video": "0", + "product_name": "Official Raspberry Pi Power Supply 5.1V 3A with USB C", + "product_model": "1.5 meter long", + "product_mpn": "ADA4298", + "product_master_category": "1002", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "7.95", + "product_shipping_weight": "113.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4298", + "product_stock": "in stock", + "products_hts": "8504.40.7001", + "products_coo": "KH", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4299", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4299-02.jpg", + "image_is_video": "0", + "product_name": "Micro B USB to USB C Adapter", + "product_model": "", + "product_mpn": "ADA4299", + "product_master_category": "1002", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "1.25", + "product_shipping_weight": "2.4", + "product_url": "https:\/\/www.adafruit.com\/product\/4299", + "product_stock": "in stock", + "products_hts": "8536.69.8000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4794", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4794-04.jpg", + "image_is_video": "0", + "product_name": "Official Raspberry Pi 4 Case Fan and Heatsink", + "product_model": "", + "product_mpn": "ADA4794", + "product_master_category": "1002", + "product_manufacturer": "Raspberry Pi Foundation", + "product_price": "5.00", + "product_shipping_weight": "17.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4794", + "product_stock": "in stock", + "products_hts": "8414.59.1500", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "5026", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5026-02.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 4 Pro Mounting Plate for HQ Camera", + "product_model": "", + "product_mpn": "ADA5026", + "product_master_category": "1002", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "26.3", + "product_url": "https:\/\/www.adafruit.com\/product\/5026", + "product_stock": "0", + "products_hts": "8473.30.9100", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4795", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4795-06.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 400 Desktop - Computer Only", + "product_model": "", + "product_mpn": "ADA4795", + "product_master_category": "1003", + "product_manufacturer": null, + "product_price": "70.00", + "product_shipping_weight": "455.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4795", + "product_stock": "in stock", + "products_hts": "8471.30.0100", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4796", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4796-12.jpg", + "image_is_video": "0", + "product_name": "Raspberry Pi 400 Desktop - Full Computer Kit", + "product_model": "", + "product_mpn": "ADA4796", + "product_master_category": "1003", + "product_manufacturer": null, + "product_price": "100.00", + "product_shipping_weight": "1,327.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4796", + "product_stock": "in stock", + "products_hts": "8471.30.0100", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "2775", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2775-00.jpg", + "image_is_video": "0", + "product_name": "Mini HDMI to HDMI Cable - 5 feet", + "product_model": "", + "product_mpn": "ADA2775", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "66.9", + "product_url": "https:\/\/www.adafruit.com\/product\/2775", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3548", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3548-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Straight HDMI Plug Adapter", + "product_model": "", + "product_mpn": "ADA3548", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3548", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3549", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3549-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Right Angle (R bend) HDMI Plug Adapter", + "product_model": "", + "product_mpn": "ADA3549", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3549", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3550", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3550-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Right Angle (L Bend) HDMI Plug Adapter", + "product_model": "", + "product_mpn": "ADA3550", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3550", + "product_stock": "23", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3551", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3551-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Straight HDMI Socket Adapter", + "product_model": "", + "product_mpn": "ADA3551", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3551", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3552", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3552-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Straight Mini HDMI Plug Adapter", + "product_model": "", + "product_mpn": "ADA3552", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3552", + "product_stock": "68", + "products_hts": "8544.42.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3553", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3553-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Right Angle (R bend) Mini HDMI Plug", + "product_model": "", + "product_mpn": "ADA3553", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3553", + "product_stock": "48", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3554", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3554-01.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Right Angle (L Bend) Mini HDMI Plug", + "product_model": "", + "product_mpn": "ADA3554", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "2.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3554", + "product_stock": "53", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3555", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3555-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Straight Mini HDMI Socket Adapter", + "product_model": "", + "product_mpn": "ADA3555", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "2.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3555", + "product_stock": "47", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3556", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3556-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Straight Micro HDMI Plug Adapter", + "product_model": "", + "product_mpn": "ADA3556", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "1.8", + "product_url": "https:\/\/www.adafruit.com\/product\/3556", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3557", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3557-01.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Right Angle (R Bend) Micro HDMI Plug", + "product_model": "", + "product_mpn": "ADA3557", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3557", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3558", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3558-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Right Angle (L Bend) Micro HDMI Plug", + "product_model": "", + "product_mpn": "ADA3558", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3558", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3559", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3559-00.jpg", + "image_is_video": "0", + "product_name": "DIY HDMI Cable Parts - Straight Micro HDMI Socket Adapter", + "product_model": "", + "product_mpn": "ADA3559", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.50", + "product_shipping_weight": "2.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3559", + "product_stock": "78", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3560", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3560-00.jpg", + "image_is_video": "0", + "product_name": "DIY USB or HDMI Cable Parts - 10 cm Ribbon Cable", + "product_model": "", + "product_mpn": "ADA3560", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "1.6", + "product_url": "https:\/\/www.adafruit.com\/product\/3560", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3561", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3561-00.jpg", + "image_is_video": "0", + "product_name": "DIY USB or HDMI Cable Parts - 20 cm Ribbon Cable", + "product_model": "", + "product_mpn": "ADA3561", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "2.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3561", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4585", + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3562", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3562-00.jpg", + "image_is_video": "0", + "product_name": "DIY USB or HDMI Cable Parts - 30 cm Ribbon Cable", + "product_model": "", + "product_mpn": "ADA3562", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "2.75", + "product_shipping_weight": "2.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3562", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4585", + "discount_pricing": [ + { + "discounted_price": "2.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.48", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3563", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3563-00.jpg", + "image_is_video": "0", + "product_name": "DIY USB or HDMI Cable Parts - 50 cm Ribbon Cable", + "product_model": "", + "product_mpn": "ADA3563", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "3.9", + "product_url": "https:\/\/www.adafruit.com\/product\/3563", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4585", + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3564", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3564-00.jpg", + "image_is_video": "0", + "product_name": "DIY USB or HDMI Cable Parts - 100 cm Ribbon Cable", + "product_model": "", + "product_mpn": "ADA3564", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "6.7", + "product_url": "https:\/\/www.adafruit.com\/product\/3564", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4585", + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4054", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4054-02.jpg", + "image_is_video": "0", + "product_name": "Snap-In Panel Mount HDMI Cable - 30cm", + "product_model": "", + "product_mpn": "ADA4054", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "7.95", + "product_shipping_weight": "38.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4054", + "product_stock": "in stock", + "products_hts": "8544.49.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "7.16", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.36", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4669", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4669-10.jpg", + "image_is_video": "0", + "product_name": "HDMI Input to USB 2.0 Video Capture Adapter", + "product_model": "", + "product_mpn": "ADA4669", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "48.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4669", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2422", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2422-01.jpg", + "image_is_video": "0", + "product_name": "Slim HDMI Cable - 1820mm \/ 6 feet long", + "product_model": "", + "product_mpn": "ADA2422", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "14.95", + "product_shipping_weight": "53.6", + "product_url": "https:\/\/www.adafruit.com\/product\/2422", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2421", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2421-01.jpg", + "image_is_video": "0", + "product_name": "Slim HDMI Cable - 900mm \/ 3 feet long", + "product_model": "", + "product_mpn": "ADA2421", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "34.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2421", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "10.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2420", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2420-01.jpg", + "image_is_video": "0", + "product_name": "Slim HDMI Cable - 450mm \/ 1.5 feet long", + "product_model": "", + "product_mpn": "ADA2420", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/2420", + "product_stock": "31", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "2197", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/2197-00.jpg", + "image_is_video": "0", + "product_name": "HDMI Flat Cable - 1 foot \/ 30cm long", + "product_model": "", + "product_mpn": "ADA2197", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "29.5", + "product_url": "https:\/\/www.adafruit.com\/product\/2197", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1358", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1358-01.jpg", + "image_is_video": "0", + "product_name": "Micro-HDMI to HDMI Socket Adapter Cable", + "product_model": "", + "product_mpn": "ADA1358", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "6.95", + "product_shipping_weight": "49.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1358", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.26", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "978", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/978-01.jpg", + "image_is_video": "0", + "product_name": "Panel mount HDMI Cable - 40 cm", + "product_model": "", + "product_mpn": "ADA978", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "41.7", + "product_url": "https:\/\/www.adafruit.com\/product\/978", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1322", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1322-05.jpg", + "image_is_video": "0", + "product_name": "Micro HDMI to HDMI Cable - 2 meter", + "product_model": "", + "product_mpn": "ADA1322", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "86.0", + "product_url": "https:\/\/www.adafruit.com\/product\/1322", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "8.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.06", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "608", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/608-03.jpg", + "image_is_video": "0", + "product_name": "HDMI Cable - 1 meter", + "product_model": "Official Raspberry Pi", + "product_mpn": "ADA608", + "product_master_category": "1004", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "139.6", + "product_url": "https:\/\/www.adafruit.com\/product\/608", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4374", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4374-00.jpg", + "image_is_video": "1", + "product_name": "Adafruit BrainCraft HAT - Machine Learning for Raspberry Pi 4", + "product_model": "", + "product_mpn": "ADA4374", + "product_master_category": "1006", + "product_manufacturer": "Adafruit", + "product_price": "44.95", + "product_shipping_weight": "32.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4374", + "product_stock": "9", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "44.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "40.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "35.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4400", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4400-15.jpg", + "image_is_video": "0", + "product_name": "Adafruit EdgeBadge - TensorFlow Lite for Microcontrollers", + "product_model": "", + "product_mpn": "ADA4400", + "product_master_category": "1006", + "product_manufacturer": "Adafruit", + "product_price": "35.95", + "product_shipping_weight": "32.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4400", + "product_stock": "61", + "products_hts": "8531.20.0020", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "35.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "32.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "28.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4526", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4526-02.jpg", + "image_is_video": "0", + "product_name": "TinyML: Machine Learning with TensorFlow Lite", + "product_model": "Pete Warden & Daniel Situnayake", + "product_mpn": "ADA4526", + "product_master_category": "1006", + "product_manufacturer": null, + "product_price": "44.95", + "product_shipping_weight": "785.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4526", + "product_stock": "16", + "products_hts": "4901.99.0050", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4949", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4949-11.jpg", + "image_is_video": "0", + "product_name": "Microsoft Machine Learning Kit for Lobe - Pi 4 Not Included", + "product_model": "", + "product_mpn": "ADA4949", + "product_master_category": "1006", + "product_manufacturer": "Adafruit", + "product_price": "79.95", + "product_shipping_weight": "188.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4949", + "product_stock": "71", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "4989", + "discount_pricing": [] + }, + { + "product_id": "4963", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4963-08.jpg", + "image_is_video": "0", + "product_name": "Microsoft Machine Learning Kit for Lobe with Raspberry Pi 4 4GB", + "product_model": "", + "product_mpn": "ADA4963", + "product_master_category": "1006", + "product_manufacturer": "Adafruit", + "product_price": "134.95", + "product_shipping_weight": "254.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4963", + "product_stock": "71", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "4989", + "discount_pricing": [] + }, + { + "product_id": "5017", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5017-03.jpg", + "image_is_video": "0", + "product_name": "Microsoft Machine Learning Kit for Lobe with Raspberry Pi 4 2GB", + "product_model": "", + "product_mpn": "ADA5017", + "product_master_category": "1006", + "product_manufacturer": "Adafruit", + "product_price": "114.95", + "product_shipping_weight": "254.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5017", + "product_stock": "0", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "4989", + "discount_pricing": [] + }, + { + "product_id": "5024", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5024-03.jpg", + "image_is_video": "0", + "product_name": "Microsoft Machine Learning Kit for Lobe with Raspberry Pi 4 8GB", + "product_model": "", + "product_mpn": "ADA5024", + "product_master_category": "1006", + "product_manufacturer": "Adafruit", + "product_price": "154.95", + "product_shipping_weight": "254.0", + "product_url": "https:\/\/www.adafruit.com\/product\/5024", + "product_stock": "71", + "products_hts": "8542.39.00.00", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": "4989", + "discount_pricing": [] + }, + { + "product_id": "3677", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3677-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit ItsyBitsy 32u4 - 5V 16MHz", + "product_model": "", + "product_mpn": "ADA3677", + "product_master_category": "1008", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "6.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3677", + "product_stock": "in stock", + "products_hts": "9030.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3727", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3727-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit ItsyBitsy M0 Express - for CircuitPython & Arduino IDE", + "product_model": "", + "product_mpn": "ADA3727", + "product_master_category": "1008", + "product_manufacturer": "Adafruit", + "product_price": "11.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/3727", + "product_stock": "1", + "products_hts": "8473.30.0002", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "10.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "9.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4481", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4481-00.jpg", + "image_is_video": "0", + "product_name": "Adafruit ItsyBitsy nRF52840 Express - Bluetooth LE", + "product_model": "", + "product_mpn": "ADA4481", + "product_master_category": "1008", + "product_manufacturer": "Adafruit", + "product_price": "19.95", + "product_shipping_weight": "6.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4481", + "product_stock": "in stock", + "products_hts": "8473.30.1140", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "19.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "17.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "15.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4534", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4534-04.jpg", + "image_is_video": "0", + "product_name": "Adafruit Bonsai Buckaroo - micro:bit & CLUE Plant Care Helper", + "product_model": "", + "product_mpn": "ADA4534", + "product_master_category": "1009", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "13.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4534", + "product_stock": "in stock", + "products_hts": "8542.90.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4792", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4792-06.jpg", + "image_is_video": "0", + "product_name": "micro:bit or CLUE Connector - Sunken Right Angle Type", + "product_model": "", + "product_mpn": "ADA4792", + "product_master_category": "1009", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "12.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4792", + "product_stock": "in stock", + "products_hts": "8535.90.8020", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.95", + "discounted_percent": 0, + "show_qty": "11-5", + "min_qty": 1 + } + ] + }, + { + "product_id": "4833", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4833-05.jpg", + "image_is_video": "0", + "product_name": "micro:bit v2 Go Club 10-Pack - Batteries and USB Cables Included", + "product_model": "", + "product_mpn": "ADA4833", + "product_master_category": "1009", + "product_manufacturer": "Micro:bit Foundation", + "product_price": "199.95", + "product_shipping_weight": "710.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4833", + "product_stock": "0", + "products_hts": "8471.50.0150", + "products_coo": "GB", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4887", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4887-07.jpg", + "image_is_video": "0", + "product_name": "Crazy Circuits Bit Board Kit - Makes micro:bit LEGO\u00ae compatible", + "product_model": "", + "product_mpn": "ADA4887", + "product_master_category": "1009", + "product_manufacturer": "Brown Dog Gadgets", + "product_price": "99.95", + "product_shipping_weight": "400.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4887", + "product_stock": "22", + "products_hts": "8471.50.0150", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "99.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "89.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "79.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "935", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/935-03.jpg", + "image_is_video": "0", + "product_name": "MCP4725 Breakout Board - 12-Bit DAC w\/I2C Interface", + "product_model": "", + "product_mpn": "ADA935", + "product_master_category": "1013", + "product_manufacturer": "Adafruit", + "product_price": "4.95", + "product_shipping_weight": "2.8", + "product_url": "https:\/\/www.adafruit.com\/product\/935", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "4.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "4.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1083", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1083-00.jpg", + "image_is_video": "0", + "product_name": "ADS1015 12-Bit ADC - 4 Channel with Programmable Gain Amplifier", + "product_model": "", + "product_mpn": "ADA1083", + "product_master_category": "1013", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/1083", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "8.96", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "7.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "1085", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/1085-02.jpg", + "image_is_video": "0", + "product_name": "ADS1115 16-Bit ADC - 4 Channel with Programmable Gain Amplifier", + "product_model": "", + "product_mpn": "ADA1085", + "product_master_category": "1013", + "product_manufacturer": "Adafruit", + "product_price": "14.95", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/1085", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "14.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "13.46", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "11.96", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4470", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4470-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit MCP4728 Quad DAC with EEPROM", + "product_model": "STEMMA QT \/ Qwiic", + "product_mpn": "ADA4470", + "product_master_category": "1013", + "product_manufacturer": "Adafruit", + "product_price": "7.50", + "product_shipping_weight": "3.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4470", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4648", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4648-01.jpg", + "image_is_video": "0", + "product_name": "Adafruit PCF8591 Quad 8-bit ADC + 8-bit DAC - STEMMA QT \/ Qwiic", + "product_model": "", + "product_mpn": "ADA4648", + "product_master_category": "1013", + "product_manufacturer": "Adafruit", + "product_price": "6.50", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4648", + "product_stock": "in stock", + "products_hts": "8542.39.0001", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "6.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.85", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "5.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4712", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4712-07.jpg", + "image_is_video": "0", + "product_name": "Adafruit LC709203F LiPoly \/ LiIon Fuel Gauge and Battery Monitor", + "product_model": "STEMMA JST PH & QT \/ Qwiic", + "product_mpn": "ADA4712", + "product_master_category": "1013", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4712", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4571", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4571-04.jpg", + "image_is_video": "0", + "product_name": "Protective Face Shields - Pack of 4", + "product_model": "", + "product_mpn": "ADA4571", + "product_master_category": "1014", + "product_manufacturer": "Adafruit", + "product_price": "9.95", + "product_shipping_weight": "241.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4571", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4574", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4574-01.jpg", + "image_is_video": "0", + "product_name": "Personal Protection Isolation Gown - 4 Pack", + "product_model": "", + "product_mpn": "ADA4574", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "23.95", + "product_shipping_weight": "544.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4574", + "product_stock": "17", + "products_hts": "6210.10.5000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4578", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4578-05.jpg", + "image_is_video": "0", + "product_name": "Thermal Camera Imager for Fever Screening", + "product_model": "UTi165H", + "product_mpn": "ADA4578", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "524.95", + "product_shipping_weight": "793.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4578", + "product_stock": "42", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4579", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4579-01.jpg", + "image_is_video": "0", + "product_name": "Thermal Camera Imager for Fever Screening with USB Video Output", + "product_model": "UTi165K", + "product_mpn": "ADA4579", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "649.95", + "product_shipping_weight": "793.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4579", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4580", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4580-03.jpg", + "image_is_video": "0", + "product_name": "Finger Pulse Oximeter", + "product_model": "BM1000", + "product_mpn": "ADA4580", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "34.95", + "product_shipping_weight": "50.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4580", + "product_stock": "in stock", + "products_hts": "9018.19.9000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4581", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4581-06.jpg", + "image_is_video": "0", + "product_name": "Child-Size Small Disposable Masks - Blue Surgical-Style - 20 pk", + "product_model": "", + "product_mpn": "ADA4581", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "17.50", + "product_shipping_weight": "88.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4581", + "product_stock": "63", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4582", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4582-02.jpg", + "image_is_video": "0", + "product_name": "Finger Pulse Oximeter with Bluetooth LE", + "product_model": "BM1000", + "product_mpn": "ADA4582", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "67.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4582", + "product_stock": "53", + "products_hts": "9018.19.9550", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "49.95", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "4583", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4583-03.jpg", + "image_is_video": "0", + "product_name": "Urban Commuter Hat with Vinyl Face Shield", + "product_model": "", + "product_mpn": "ADA4583", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "13.50", + "product_shipping_weight": "141.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4583", + "product_stock": "66", + "products_hts": "3926.20.1010", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4584", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4584-07.jpg", + "image_is_video": "0", + "product_name": "Contact-less Infrared Digital Thermometer - Fever Scanner", + "product_model": "Generic", + "product_mpn": "ADA4584", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "242.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4584", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "Pending", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4586", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4586-07.jpg", + "image_is_video": "0", + "product_name": "Standard Adult Disposable Masks - Blue Surgical-Style - 50 pk", + "product_model": "", + "product_mpn": "ADA4586", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "39.95", + "product_shipping_weight": "190.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4586", + "product_stock": "in stock", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4587", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4587-03.jpg", + "image_is_video": "0", + "product_name": "Disposable Face Shields with Anti-Fog Coating", + "product_model": "", + "product_mpn": "ADA4587", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "2.75", + "product_shipping_weight": "34.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4587", + "product_stock": "in stock", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4588", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4588-04.jpg", + "image_is_video": "0", + "product_name": "KN95 Filtering Face Mask (1 Piece)", + "product_model": "", + "product_mpn": "ADA4588", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4588", + "product_stock": "in stock", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4589", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4589-04.jpg", + "image_is_video": "0", + "product_name": "Small Nitrile Disposable Gloves - 100 Piece Glove Box", + "product_model": "Blue", + "product_mpn": "ADA4589", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "701.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4589", + "product_stock": "31", + "products_hts": "4015.11.0150", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4597", + "discount_pricing": [] + }, + { + "product_id": "4590", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4590-04.jpg", + "image_is_video": "0", + "product_name": "Medium Nitrile Disposable Gloves - 100 Piece Glove Box", + "product_model": "Blue", + "product_mpn": "ADA4590", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "729.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4590", + "product_stock": "-2", + "products_hts": "4015.11.0150", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4597", + "discount_pricing": [] + }, + { + "product_id": "4591", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4591-03.jpg", + "image_is_video": "0", + "product_name": "Large Nitrile Disposable Gloves - 100 Piece Glove Box", + "product_model": "Blue", + "product_mpn": "ADA4591", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "816.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4591", + "product_stock": "-3", + "products_hts": "4015.11.0150", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4597", + "discount_pricing": [] + }, + { + "product_id": "4592", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4592-01.jpg", + "image_is_video": "0", + "product_name": "Simple 3-Layer Cotton Masks - Child Size - 20 pack", + "product_model": "", + "product_mpn": "ADA4592", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "200.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4592", + "product_stock": "-3", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "0", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4593", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4593-04.jpg", + "image_is_video": "0", + "product_name": "Simple 3-Layer Cotton Masks - Adult Size - 10 pack", + "product_model": "", + "product_mpn": "ADA4593", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "99.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4593", + "product_stock": "in stock", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "9.95", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "4595", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4595-09.jpg", + "image_is_video": "0", + "product_name": "Adjustable Fabric Face Mask in Adafruit Black", + "product_model": "", + "product_mpn": "ADA4595", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4595", + "product_stock": "in stock", + "products_hts": "6307.90.6090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4596", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4596-01.jpg", + "image_is_video": "0", + "product_name": "Basic Digital Body Thermometer in Celsius", + "product_model": "", + "product_mpn": "ADA4596", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "33.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4596", + "product_stock": "22", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4598", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4598-08.jpg", + "image_is_video": "0", + "product_name": "No-Touchy Stick Pointer in Pink", + "product_model": "", + "product_mpn": "ADA4598", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "40.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4598", + "product_stock": "30", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4599", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4599-06.jpg", + "image_is_video": "0", + "product_name": "Adjustable Fabric Face Mask in Blue", + "product_model": "", + "product_mpn": "ADA4599", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "4.95", + "product_shipping_weight": "10.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4599", + "product_stock": "in stock", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4601", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4601-03.jpg", + "image_is_video": "0", + "product_name": "Basic Digital Body Thermometer in Fahrenheit", + "product_model": "", + "product_mpn": "ADA4601", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "34.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4601", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4602", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4602-04.jpg", + "image_is_video": "0", + "product_name": "Face Shield with Glasses Frame", + "product_model": "", + "product_mpn": "ADA4602", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "31.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4602", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4603", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4603-00.jpg", + "image_is_video": "0", + "product_name": "Anti-Fog Protective Glasses", + "product_model": "Honeywell S200A", + "product_mpn": "ADA4603", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "35.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4603", + "product_stock": "57", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4604", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4604-03.jpg", + "image_is_video": "0", + "product_name": "Anti-Fog Spray Bottle for Face Shields, Glasses or Goggles", + "product_model": "18mL", + "product_mpn": "ADA4604", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "40.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4604", + "product_stock": "32", + "products_hts": "340.29.099", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4606", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4606-10.jpg", + "image_is_video": "0", + "product_name": "Ear Saver for Surgical Mask With Earloops - Flexible PETG", + "product_model": "Pack of 5", + "product_mpn": "ADA4606", + "product_master_category": "1014", + "product_manufacturer": "Adafruit", + "product_price": "2.50", + "product_shipping_weight": "8.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4606", + "product_stock": "8", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4608", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4608-04.jpg", + "image_is_video": "0", + "product_name": "No-Touchy Stick Pointer in Blue - 1 Per Order", + "product_model": "", + "product_mpn": "ADA4608", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "4.50", + "product_shipping_weight": "40.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4608", + "product_stock": "23", + "products_hts": "3926.90.9990", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4609", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4609-01.jpg", + "image_is_video": "0", + "product_name": "Simple Flip-Top Face Shield", + "product_model": "", + "product_mpn": "ADA4609", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "116.9", + "product_url": "https:\/\/www.adafruit.com\/product\/4609", + "product_stock": "-3", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4610", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4610-09.jpg", + "image_is_video": "0", + "product_name": "Round Covered Flip-Top Plexiglass Face Shield", + "product_model": "", + "product_mpn": "ADA4610", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "285.6", + "product_url": "https:\/\/www.adafruit.com\/product\/4610", + "product_stock": "39", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4614", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4614-00.jpg", + "image_is_video": "0", + "product_name": "10-pack Latex Elastic Ribbon Strips - 14\" long x 1\" wide", + "product_model": "", + "product_mpn": "ADA4614", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "42.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4614", + "product_stock": "42", + "products_hts": "5806.39.3080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4625", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4625-08.jpg", + "image_is_video": "0", + "product_name": "No-Touch Digital Forehead Thermometer", + "product_model": "iHealth", + "product_mpn": "ADA4625", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "49.00", + "product_shipping_weight": "130.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4625", + "product_stock": "in stock", + "products_hts": "9025.19.8080", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4628", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4628-05.jpg", + "image_is_video": "0", + "product_name": "Adult PM2.5 Filtering Face Mask With 4 Filter Inserts - Black", + "product_model": "", + "product_mpn": "ADA4628", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "9.95", + "product_shipping_weight": "49.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4628", + "product_stock": "-3", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "1", + "discontinue_status": "Discontinued", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4655", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4655-00.jpg", + "image_is_video": "0", + "product_name": "Simple Black 3-Layer Cotton Mask - Adult Size", + "product_model": "", + "product_mpn": "ADA4655", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "15.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4655", + "product_stock": "in stock", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4656", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4656-00.jpg", + "image_is_video": "0", + "product_name": "Simple Black 3-Layer Cotton Mask - Child Size", + "product_model": "", + "product_mpn": "ADA4656", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4656", + "product_stock": "in stock", + "products_hts": "6307.90.9845", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4657", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4657-06.jpg", + "image_is_video": "0", + "product_name": "Adult PM2.5 Filtering Face Mask With 2 Filter Inserts", + "product_model": "Black", + "product_mpn": "ADA4657", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "8.95", + "product_shipping_weight": "24.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4657", + "product_stock": "in stock", + "products_hts": "6307.90.6090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "4658", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4658-04.jpg", + "image_is_video": "0", + "product_name": "Filtering Mask with Math Pattern", + "product_model": "", + "product_mpn": "ADA4658", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "27.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4658", + "product_stock": "in stock", + "products_hts": "6307.90.1100", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "11.25", + "discounted_percent": "10", + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "4668", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4668-00.jpg", + "image_is_video": "0", + "product_name": "Black Silicone Rubber Ear Saver - 1 Piece", + "product_model": "", + "product_mpn": "ADA4668", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4668", + "product_stock": "in stock", + "products_hts": "4016.99.6050", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "4771", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4771-00.jpg", + "image_is_video": "0", + "product_name": "PPE \"Basics\" Pack - Protective Equipment Kit", + "product_model": "", + "product_mpn": "ADA4771", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "19.95", + "product_shipping_weight": "90.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4771", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4770", + "discount_pricing": [] + }, + { + "product_id": "4772", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4772-00.jpg", + "image_is_video": "0", + "product_name": "PPE \"Introductory\" Pack - Protective Equipment Kit", + "product_model": "", + "product_mpn": "ADA4772", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "49.95", + "product_shipping_weight": "346.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4772", + "product_stock": "30", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4770", + "discount_pricing": [] + }, + { + "product_id": "4773", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4773-00.jpg", + "image_is_video": "0", + "product_name": "PPE \"The Works\" Pack - All In One Protective Equipment Kit", + "product_model": "", + "product_mpn": "ADA4773", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "124.95", + "product_shipping_weight": "590.1", + "product_url": "https:\/\/www.adafruit.com\/product\/4773", + "product_stock": "in stock", + "products_hts": "8542.31.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": "4770", + "discount_pricing": [] + }, + { + "product_id": "4824", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4824-03.jpg", + "image_is_video": "0", + "product_name": "Standard Adult Disposable Masks - Black Surgical-Style - 50 pk", + "product_model": "", + "product_mpn": "ADA4824", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "12.50", + "product_shipping_weight": "260.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4824", + "product_stock": "17", + "products_hts": "6307.90.9889", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "12.50", + "discounted_percent": 0, + "show_qty": "11-10", + "min_qty": 1 + } + ] + }, + { + "product_id": "4857", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4857-00.jpg", + "image_is_video": "0", + "product_name": "Silver Sequined Fashion Mask", + "product_model": "", + "product_mpn": "ADA4857", + "product_master_category": "1014", + "product_manufacturer": null, + "product_price": "2.95", + "product_shipping_weight": "18.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4857", + "product_stock": "43", + "products_hts": "6307.90.9891", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [] + }, + { + "product_id": "3568", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3568-05.jpg", + "image_is_video": "0", + "product_name": "STEMMA Cable - 150mm\/6\" Long 4 Pin JST-PH Cable\u2013Female\/Female", + "product_model": "", + "product_mpn": "ADA3568", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3568", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3885", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/3885-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit STEMMA Speaker - Plug and Play Audio Amplifier", + "product_model": "", + "product_mpn": "ADA3885", + "product_master_category": "1019", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/3885", + "product_stock": "in stock", + "products_hts": "8473.30.1180", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3893", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3893-03.jpg", + "image_is_video": "0", + "product_name": "STEMMA JST PH 3-Pin to Male Header Cable - 200mm", + "product_model": "", + "product_mpn": "ADA3893", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "4.2", + "product_url": "https:\/\/www.adafruit.com\/product\/3893", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3894", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3894-03.jpg", + "image_is_video": "0", + "product_name": "STEMMA JST PH 3-Pin to Female Socket Cable - 200mm", + "product_model": "", + "product_mpn": "ADA3894", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "1.25", + "product_shipping_weight": "4.1", + "product_url": "https:\/\/www.adafruit.com\/product\/3894", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.25", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.13", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3950", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3950-02.jpg", + "image_is_video": "0", + "product_name": "JST PH 4-Pin to Female Socket Cable - I2C STEMMA Cable - 200mm", + "product_model": "", + "product_mpn": "ADA3950", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3950", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "3955", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/3955-02.jpg", + "image_is_video": "0", + "product_name": "JST PH 4-Pin to Male Header Cable - I2C STEMMA Cable - 200mm", + "product_model": "", + "product_mpn": "ADA3955", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "1.50", + "product_shipping_weight": "5.3", + "product_url": "https:\/\/www.adafruit.com\/product\/3955", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.35", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.20", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4029", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4029-02.jpg", + "image_is_video": "0", + "product_name": "JST PH 4-pin Plug to Color Coded Alligator Clips Cable", + "product_model": "", + "product_mpn": "ADA4029", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "2.50", + "product_shipping_weight": "10.8", + "product_url": "https:\/\/www.adafruit.com\/product\/4029", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "2.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "2.25", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4030", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4030-04.jpg", + "image_is_video": "0", + "product_name": "JST PH 3-pin Plug to Color Coded Alligator Clips Cable", + "product_model": "", + "product_mpn": "ADA4030", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "1.95", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4030", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "1.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "1.76", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "1.56", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4045", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4045-02.jpg", + "image_is_video": "0", + "product_name": "JST PH 4-Pin Socket to Color Coded Cable - 200mm", + "product_model": "", + "product_mpn": "ADA4045", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4045", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4046", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4046-02.jpg", + "image_is_video": "0", + "product_name": "JST PH 3-Pin Socket to Color Coded Cable - 200mm", + "product_model": "", + "product_mpn": "ADA4046", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "3.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4046", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4326", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4326-00.jpg", + "image_is_video": "0", + "product_name": "Micro Servo with 3-pin JST Cable - STEMMA Connector Compatible", + "product_model": "", + "product_mpn": "ADA4326", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "5.95", + "product_shipping_weight": "14.3", + "product_url": "https:\/\/www.adafruit.com\/product\/4326", + "product_stock": "in stock", + "products_hts": "8501.10.4060", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4336", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4336-01.jpg", + "image_is_video": "0", + "product_name": "JST PH 3-pin Plug-Plug Cable - 100mm long", + "product_model": "", + "product_mpn": "ADA4336", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "0.75", + "product_shipping_weight": "3.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4336", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "0.75", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.68", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.60", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4389", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4389-00.jpg", + "image_is_video": "0", + "product_name": "JST PH 3-pin Vertical Connector (10-pack)", + "product_model": "STEMMA", + "product_mpn": "ADA4389", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4389", + "product_stock": "18", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4390", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4390-00.jpg", + "image_is_video": "0", + "product_name": "JST PH 4-pin Vertical Connector (10-pack) - STEMMA", + "product_model": "", + "product_mpn": "ADA4390", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "8.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4390", + "product_stock": "97", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4391", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4391-01.jpg", + "image_is_video": "0", + "product_name": "JST PH 3-pin Horizontal Connector (10-pack)", + "product_model": "STEMMA", + "product_mpn": "ADA4391", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4391", + "product_stock": "56", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4392", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4392-00.jpg", + "image_is_video": "0", + "product_name": "JST PH 4-pin Horizontal Connector (10-pack)", + "product_model": "STEMMA", + "product_mpn": "ADA4392", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "3.50", + "product_shipping_weight": "7.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4392", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.15", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "2.80", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4409", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4409-05.jpg", + "image_is_video": "1", + "product_name": "Adafruit STEMMA Non-Latching Mini Relay", + "product_model": "", + "product_mpn": "ADA4409", + "product_master_category": "1019", + "product_manufacturer": "Adafruit", + "product_price": "5.95", + "product_shipping_weight": "7.0", + "product_url": "https:\/\/www.adafruit.com\/product\/4409", + "product_stock": "21", + "products_hts": "8542.31.0000", + "products_coo": "US", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "5.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "5.36", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "4.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4431", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/4431-03.jpg", + "image_is_video": "0", + "product_name": "STEMMA Wired Tactile Push-Button Pack - 5 Color Pack", + "product_model": "", + "product_mpn": "ADA4431", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "7.50", + "product_shipping_weight": "38.7", + "product_url": "https:\/\/www.adafruit.com\/product\/4431", + "product_stock": "in stock", + "products_hts": "8536.50.9033", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "7.50", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "6.75", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "6.00", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "4493", + "product_image": "https:\/\/cdn-shop.adafruit.com\/product-videos\/640x480\/4493-04.jpg", + "image_is_video": "1", + "product_name": "STEMMA Wired Potentiometer Breakout Board - 10K ohm Linear", + "product_model": "", + "product_mpn": "ADA4493", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "3.95", + "product_shipping_weight": "9.5", + "product_url": "https:\/\/www.adafruit.com\/product\/4493", + "product_stock": "in stock", + "products_hts": "8536.70.0000", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "1", + "parent_pid": 0, + "discount_pricing": [ + { + "discounted_price": "3.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "3.56", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "3.16", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5087", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5087-03.jpg", + "image_is_video": "0", + "product_name": "2.0mm Pitch 3-pin Cable Matching Pair - JST PH Compatible", + "product_model": "", + "product_mpn": "ADA5087", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "4.5", + "product_url": "https:\/\/www.adafruit.com\/product\/5087", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5161", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + }, + { + "product_id": "5088", + "product_image": "https:\/\/cdn-shop.adafruit.com\/640x480\/5088-04.jpg", + "image_is_video": "0", + "product_name": "2.0mm Pitch 4-pin Cable Matching Pair - JST PH Compatible", + "product_model": "", + "product_mpn": "ADA5088", + "product_master_category": "1019", + "product_manufacturer": null, + "product_price": "0.95", + "product_shipping_weight": "5.5", + "product_url": "https:\/\/www.adafruit.com\/product\/5088", + "product_stock": "in stock", + "products_hts": "8544.42.9090", + "products_coo": "CN", + "products_discontinued": "0", + "discontinue_status": "None", + "products_coming_soon": "0", + "products_rohs": "2", + "parent_pid": "5161", + "discount_pricing": [ + { + "discounted_price": "0.95", + "discounted_percent": 0, + "show_qty": "1-9", + "min_qty": 1 + }, + { + "discounted_price": "0.86", + "discounted_percent": "10", + "show_qty": "10-99", + "min_qty": 10 + }, + { + "discounted_price": "0.76", + "discounted_percent": "20", + "show_qty": "100+", + "min_qty": 100 + } + ] + } +] \ No newline at end of file diff --git a/Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj b/Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj new file mode 100644 index 0000000..030175d --- /dev/null +++ b/Props.Shop/Adafruit.Tests/Props.Shop.Adafruit.Tests.csproj @@ -0,0 +1,36 @@ + + + + net8.0 + true + false + + + + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + + + PreserveNewest + + + + \ No newline at end of file diff --git a/Props.Shop/Adafruit/AdafruitShop.cs b/Props.Shop/Adafruit/AdafruitShop.cs new file mode 100644 index 0000000..812eb32 --- /dev/null +++ b/Props.Shop/Adafruit/AdafruitShop.cs @@ -0,0 +1,171 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Net.Http; +using System.Text.Json; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging; +using Props.Shop.Adafruit.Api; +using Props.Shop.Adafruit.Persistence; +using Props.Shop.Framework; + +namespace Props.Shop.Adafruit +{ + public class AdafruitShop : IShop, IDisposable + { + private string workspaceDir; + private ILoggerFactory loggerFactory; + private ILogger logger; + private SearchManager searchManager; + private Configuration configuration; + private HttpClient http; + private bool disposedValue; + + public string ShopName => "Adafruit"; + + public string ShopDescription => "A electronic component online hardware company."; + + public string ShopModuleAuthor => "Reslate"; + + public SupportedFeatures SupportedFeatures => new SupportedFeatures( + false, + false, + false, + false, + true + ); + public async ValueTask Initialize(string workspaceDir, ILoggerFactory loggerFactory) + { + workspaceDir = workspaceDir ?? ""; + this.workspaceDir = workspaceDir; + this.loggerFactory = loggerFactory; + logger = loggerFactory.CreateLogger(); + http = new HttpClient(); + http.BaseAddress = new Uri("http://www.adafruit.com/api/"); + string configPath = Path.Combine(workspaceDir, Configuration.FILE_NAME); + try + { + configuration = JsonSerializer.Deserialize(File.ReadAllText(configPath)); + } + catch (JsonException e) + { + logger.LogWarning("Could not read JSON file \"{0}\": {1}", configPath, e.Message); + } + catch (ArgumentException) + { + logger.LogWarning("No working directory path provided."); + } + catch (DirectoryNotFoundException) + { + logger.LogWarning("Directory \"{0}\" could not be found.", Path.GetDirectoryName(configPath)); + } + catch (FileNotFoundException) + { + logger.LogWarning("File \"{0}\" could not be found.", configPath); + } + finally + { + if (configuration == null) + { + configuration = new Configuration(); + } + } + + ProductListingCacheData listingData = null; + string cachePath = Path.Combine(workspaceDir, ProductListingCacheData.FILE_NAME); + try + { + using (Stream fileStream = File.OpenRead(cachePath)) + { + listingData = await JsonSerializer.DeserializeAsync(fileStream); + } + } + catch (JsonException e) + { + logger.LogWarning("Could not read JSON file \"{0}\": {1}", cachePath, e.Message); + } + catch (ArgumentException) + { + logger.LogWarning("No working directory path provided."); + } + catch (DirectoryNotFoundException) + { + logger.LogWarning("Directory \"{0}\" could not be found.", Path.GetDirectoryName(cachePath)); + } + catch (FileNotFoundException) + { + logger.LogWarning("File \"{0}\" could not be found.", cachePath); + } + finally + { + if (configuration == null) + { + configuration = new Configuration(); + } + } + LiveProductListingManager productListingManager = new LiveProductListingManager(http, loggerFactory.CreateLogger(), listingData, configuration.MinDownloadInterval); + this.searchManager = new SearchManager(productListingManager, configuration.Similarity); + productListingManager.StartUpdateTimer(delay: 0, configuration.CacheLifespan); + } + + public async Task GetProductFromIdentifier(string identifier) + { + return await searchManager.ProductListingManager.GetProductListingFromIdentifier(identifier); + } + + public IAsyncEnumerable Search(string query, Filters filters) + { + return searchManager.Search(query); + } + + public async ValueTask SaveData() + { + if (workspaceDir != null) + { + logger.LogDebug("Saving data in \"{0}\"...", workspaceDir); + string configurationPath = Path.Combine(workspaceDir, Configuration.FILE_NAME); + File.Delete(configurationPath); + await File.WriteAllTextAsync(Path.Combine(workspaceDir, Configuration.FILE_NAME), JsonSerializer.Serialize(configuration)); + + string productListingCachePath = Path.Combine(workspaceDir, ProductListingCacheData.FILE_NAME); + File.Delete(productListingCachePath); + using (Stream fileStream = File.OpenWrite(productListingCachePath)) + { + await JsonSerializer.SerializeAsync(fileStream, new ProductListingCacheData(await searchManager.ProductListingManager.ProductListings)); + } + logger.LogDebug("Completed saving data."); + } + } + + public async ValueTask DisposeAsync() + { + Dispose(true); + await DisposeAsyncCore(); + } + + protected virtual async ValueTask DisposeAsyncCore() + { + await SaveData(); + } + + protected virtual void Dispose(bool disposing) + { + if (!disposedValue) + { + if (disposing) + { + http.Dispose(); + searchManager.Dispose(); + } + + disposedValue = true; + } + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + } +} diff --git a/Props.Shop/Adafruit/Api/IProductListingManager.cs b/Props.Shop/Adafruit/Api/IProductListingManager.cs new file mode 100644 index 0000000..2467994 --- /dev/null +++ b/Props.Shop/Adafruit/Api/IProductListingManager.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Props.Shop.Framework; + +namespace Props.Shop.Adafruit.Api +{ + public interface IProductListingManager : IDisposable + { + public Task>> ProductListings { get; } + public void RefreshProductListings(); + public void StartUpdateTimer(int delay = 1000 * 60 * 5, int period = 1000 * 60 * 5); + public void StopUpdateTimer(); + + public DateTime? LastDownload { get; } + + public Task GetProductListingFromIdentifier(string url); + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit/Api/ListingsParser.cs b/Props.Shop/Adafruit/Api/ListingsParser.cs new file mode 100644 index 0000000..16064ea --- /dev/null +++ b/Props.Shop/Adafruit/Api/ListingsParser.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using System.Net.Http; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using Props.Shop.Framework; + +namespace Props.Shop.Adafruit.Api +{ + public class ProductListingsParser + { + public IEnumerable ProductListings { get; private set; } + public void BuildProductListings(Stream stream) + { + using (StreamReader streamReader = new StreamReader(stream)) + { + DateTime startTime = DateTime.UtcNow; + dynamic data = JArray.Load(new JsonTextReader(streamReader)); + List parsed = new List(); + foreach (dynamic item in data) + { + if (item.products_discontinued == 0) + { + ProductListing res = new ProductListing(); + res.TimeFetchedUtc = startTime; + res.Name = item.product_name; + res.LowerPrice = item.product_price; + res.UpperPrice = res.LowerPrice; + foreach (dynamic discount in item.discount_pricing) + { + if (discount.discounted_price < res.LowerPrice) + { + res.LowerPrice = discount.discounted_price; + } + if (discount.discounted_price > res.UpperPrice) + { + res.UpperPrice = discount.discounted_price; + } + } + res.URL = item.product_url; + res.InStock = item.product_stock > 0; + parsed.Add(res); + res.Identifier = res.URL; + } + } + ProductListings = parsed; + } + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit/Api/LiveProductListingManager.cs b/Props.Shop/Adafruit/Api/LiveProductListingManager.cs new file mode 100644 index 0000000..39fda2a --- /dev/null +++ b/Props.Shop/Adafruit/Api/LiveProductListingManager.cs @@ -0,0 +1,125 @@ +using System; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging; +using Props.Shop.Adafruit.Persistence; +using Props.Shop.Framework; + +namespace Props.Shop.Adafruit.Api +{ + public class LiveProductListingManager : IProductListingManager + { + private ILogger logger; + private bool disposedValue; + private int minDownloadInterval; + public DateTime? LastDownload { get; private set; } + private object refreshLock = new object(); + private volatile Task>> productListingsTask; + + public Task>> ProductListings => productListingsTask; + private readonly ConcurrentDictionary identifierMap = new ConcurrentDictionary(); + + private ProductListingsParser parser = new ProductListingsParser(); + private HttpClient httpClient; + private Timer updateTimer; + + public LiveProductListingManager(HttpClient httpClient, ILogger logger, ProductListingCacheData productListingCacheData = null, int minDownloadInterval = 5 * 60 * 1000) + { + this.logger = logger; + this.minDownloadInterval = minDownloadInterval; + this.httpClient = httpClient; + if (productListingCacheData != null) + { + productListingsTask = Task.FromResult(productListingCacheData.ProductListings); + LastDownload = productListingCacheData.LastUpdatedUtc; + logger.LogInformation("{0} Cached product listings loaded. Listing saved at {1}", productListingCacheData.ProductListings.Count, productListingCacheData.LastUpdatedUtc); + } + } + + public void RefreshProductListings() + { + lock (refreshLock) + { + if (disposedValue) throw new ObjectDisposedException("ProductListingManager"); + if ((LastDownload != null && DateTime.UtcNow - LastDownload <= TimeSpan.FromMilliseconds(minDownloadInterval)) || (productListingsTask != null && !productListingsTask.IsCompleted)) return; + LastDownload = DateTime.UtcNow; + logger.LogDebug("Refreshing listings ({0}).", LastDownload); + productListingsTask = DownloadListings(); + } + } + + public async Task GetProductListingFromIdentifier(string identifier) + { + if (disposedValue) throw new ObjectDisposedException("ProductListingManager"); + await productListingsTask; + return identifierMap[identifier]; + } + + private async Task>> DownloadListings() + { + if (disposedValue) throw new ObjectDisposedException("ProductListingManager"); + logger.LogDebug("Beginning listing database download."); + HttpResponseMessage responseMessage = await httpClient.GetAsync("products"); + parser.BuildProductListings(responseMessage.Content.ReadAsStream()); + logger.LogDebug("Listing database parsed."); + Dictionary> listingNames = new Dictionary>(); + identifierMap.Clear(); + foreach (ProductListing product in parser.ProductListings) + { + identifierMap.TryAdd(product.Identifier, product); + IList sameProducts = listingNames.GetValueOrDefault(product.Name); + if (sameProducts == null) + { + sameProducts = new List(); + listingNames.Add(product.Name, sameProducts); + } + + sameProducts.Add(product); + } + logger.LogDebug("Downloaded listings organized."); + return listingNames; + } + + public void StartUpdateTimer(int delay = 1000 * 60 * 5, int period = 1000 * 60 * 5) + { + if (disposedValue) throw new ObjectDisposedException("ProductListingManager"); + if (updateTimer != null) throw new InvalidOperationException("Update timer already started."); + logger.LogInformation("Starting update timer."); + updateTimer = new Timer((state) => + { + RefreshProductListings(); + }, null, delay, period); + } + + public void StopUpdateTimer() + { + if (disposedValue) throw new ObjectDisposedException("ProductListingManager"); + if (updateTimer != null) throw new InvalidOperationException("Update timer not started."); + logger.LogInformation("Stopping update timer."); + updateTimer.Dispose(); + updateTimer = null; + } + + protected virtual void Dispose(bool disposing) + { + if (!disposedValue) + { + if (disposing) + { + updateTimer?.Dispose(); + updateTimer = null; + } + disposedValue = true; + } + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit/Api/SearchManager.cs b/Props.Shop/Adafruit/Api/SearchManager.cs new file mode 100644 index 0000000..523ca76 --- /dev/null +++ b/Props.Shop/Adafruit/Api/SearchManager.cs @@ -0,0 +1,61 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Threading.Tasks; +using FuzzySharp; +using FuzzySharp.Extractor; +using Props.Shop.Framework; + +namespace Props.Shop.Adafruit.Api +{ + public class SearchManager : IDisposable + { + public float Similarity { get; set; } + public IProductListingManager ProductListingManager { get; private set; } + private bool disposedValue; + + public SearchManager(IProductListingManager productListingManager, float similarity = 0.8f) + { + this.ProductListingManager = productListingManager ?? throw new ArgumentNullException("productListingManager"); + this.Similarity = similarity; + } + + public async IAsyncEnumerable Search(string query) + { + // TODO: Implement indexed search. + if (ProductListingManager.ProductListings == null) { + ProductListingManager.RefreshProductListings(); + } + IReadOnlyDictionary> productListings = await ProductListingManager.ProductListings; + if (productListings == null) throw new InvalidAsynchronousStateException("productListings can't be null"); + foreach (ExtractedResult listingNames in Process.ExtractAll(query, productListings.Keys, cutoff: (int)(Similarity * 100))) + { + foreach (ProductListing same in productListings[listingNames.Value]) + { + yield return same; + } + } + } + + protected virtual void Dispose(bool disposing) + { + if (!disposedValue) + { + if (disposing) + { + ProductListingManager.Dispose(); + } + + disposedValue = true; + } + } + + public void Dispose() + { + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit/Persistence/Configuration.cs b/Props.Shop/Adafruit/Persistence/Configuration.cs new file mode 100644 index 0000000..f88b1e1 --- /dev/null +++ b/Props.Shop/Adafruit/Persistence/Configuration.cs @@ -0,0 +1,17 @@ +namespace Props.Shop.Adafruit.Persistence +{ + public class Configuration + { + public const string FILE_NAME = "config.json"; + public int MinDownloadInterval { get; set; } + public int CacheLifespan { get; set; } + public float Similarity { get; set; } + + public Configuration() + { + MinDownloadInterval = 5 * 60 * 1000; + Similarity = 0.8f; + CacheLifespan = 5 * 60 * 1000; + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit/Persistence/ProductListingCacheData.cs b/Props.Shop/Adafruit/Persistence/ProductListingCacheData.cs new file mode 100644 index 0000000..aa8d246 --- /dev/null +++ b/Props.Shop/Adafruit/Persistence/ProductListingCacheData.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using Props.Shop.Framework; + +namespace Props.Shop.Adafruit.Persistence +{ + public class ProductListingCacheData + { + public const string FILE_NAME = "Product-listing-cache.json"; + public DateTime LastUpdatedUtc { get; set; } + public IReadOnlyDictionary> ProductListings { get; set; } + + public ProductListingCacheData(IReadOnlyDictionary> productListings) + { + this.ProductListings = productListings; + LastUpdatedUtc = DateTime.UtcNow; + } + + public ProductListingCacheData() + { + } + } +} \ No newline at end of file diff --git a/Props.Shop/Adafruit/Props.Shop.Adafruit.csproj b/Props.Shop/Adafruit/Props.Shop.Adafruit.csproj new file mode 100644 index 0000000..d3099a9 --- /dev/null +++ b/Props.Shop/Adafruit/Props.Shop.Adafruit.csproj @@ -0,0 +1,17 @@ + + + + net8.0 + true + + + + + + + + + + + + diff --git a/Props.Shop/Framework/Currency.cs b/Props.Shop/Framework/Currency.cs new file mode 100644 index 0000000..3525fe8 --- /dev/null +++ b/Props.Shop/Framework/Currency.cs @@ -0,0 +1,8 @@ +namespace Props.Shop.Framework +{ + public enum Currency + { + CAD, + USD + } +} \ No newline at end of file diff --git a/Props.Shop/Framework/Filters.cs b/Props.Shop/Framework/Filters.cs new file mode 100644 index 0000000..c9387d7 --- /dev/null +++ b/Props.Shop/Framework/Filters.cs @@ -0,0 +1,108 @@ +using System; + +namespace Props.Shop.Framework +{ + public class Filters + { + public Currency Currency { get; set; } = Currency.CAD; + private float minRatingNormalized = 0.8f; + public int MinRating + { + get + { + return (int)(minRatingNormalized * 100f); + } + set + { + if (value < 0 || value > 100) return; + minRatingNormalized = value / 100f; + } + } + public bool KeepUnrated { get; set; } = true; + public bool EnableUpperPrice { get; set; } = false; + private int upperPrice; + + public int UpperPrice + { + get + { + return upperPrice; + } + set + { + if (EnableUpperPrice) upperPrice = value; + } + } + public int LowerPrice { get; set; } + public int MinPurchases { get; set; } + public bool KeepUnknownPurchaseCount { get; set; } = true; + public int MinReviews { get; set; } + public bool KeepUnknownReviewCount { get; set; } = true; + public bool EnableMaxShipping { get; set; } + private int maxShippingFee; + + public int MaxShippingFee + { + get + { + return maxShippingFee; + } + set + { + if (EnableMaxShipping) maxShippingFee = value; + } + } + public bool KeepUnknownShipping { get; set; } = true; + + public override bool Equals(object obj) + { + if (obj == null || GetType() != obj.GetType()) + { + return false; + } + Filters other = (Filters)obj; + return + Currency == other.Currency && + MinRating == other.MinRating && + KeepUnrated == other.KeepUnrated && + EnableUpperPrice == other.EnableUpperPrice && + UpperPrice == other.UpperPrice && + LowerPrice == other.LowerPrice && + MinPurchases == other.MinPurchases && + KeepUnknownPurchaseCount == other.KeepUnknownPurchaseCount && + MinReviews == other.MinReviews && + KeepUnknownReviewCount == other.KeepUnknownReviewCount && + EnableMaxShipping == other.EnableMaxShipping && + MaxShippingFee == other.MaxShippingFee && + KeepUnknownShipping == other.KeepUnknownShipping; + + } + + public override int GetHashCode() + { + return HashCode.Combine( + Currency, + MinRating, + UpperPrice, + LowerPrice, + MinPurchases, + MinReviews, + MaxShippingFee); + } + public Filters Copy() + { + return (Filters)this.MemberwiseClone(); + } + + public bool Validate(ProductListing listing) + { + if (listing.Shipping == null && !KeepUnknownShipping || (EnableMaxShipping && listing.Shipping > MaxShippingFee)) return false; + float shippingDifference = listing.Shipping != null ? listing.Shipping.Value : 0; + if (!(listing.LowerPrice + shippingDifference >= LowerPrice && (!EnableUpperPrice || listing.UpperPrice + shippingDifference <= UpperPrice))) return false; + if ((listing.Rating == null && !KeepUnrated) && MinRating > (listing.Rating == null ? 0 : listing.Rating)) return false; + if ((listing.PurchaseCount == null && !KeepUnknownPurchaseCount) || MinPurchases > (listing.PurchaseCount == null ? 0 : listing.PurchaseCount)) return false; + if ((listing.ReviewCount == null && !KeepUnknownReviewCount) || MinReviews > (listing.ReviewCount == null ? 0 : listing.ReviewCount)) return false; + return true; + } + } +} \ No newline at end of file diff --git a/Props.Shop/Framework/IOption.cs b/Props.Shop/Framework/IOption.cs new file mode 100644 index 0000000..f8909b4 --- /dev/null +++ b/Props.Shop/Framework/IOption.cs @@ -0,0 +1,14 @@ +using System; + +namespace Props.Shop.Framework +{ + public interface IOption + { + public string Name { get; } + public string Description { get; } + public bool Required { get; } + public string GetValue(); + public bool SetValue(string value); + public Type Type { get; } + } +} \ No newline at end of file diff --git a/Props.Shop/Framework/IShop.cs b/Props.Shop/Framework/IShop.cs new file mode 100644 index 0000000..9e41059 --- /dev/null +++ b/Props.Shop/Framework/IShop.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging; + +namespace Props.Shop.Framework +{ + public interface IShop : IAsyncDisposable + { + string ShopName { get; } + string ShopDescription { get; } + string ShopModuleAuthor { get; } + + public IAsyncEnumerable Search(string query, Filters filters); + + public Task GetProductFromIdentifier(string identifier); + + ValueTask Initialize(string workspaceDir, ILoggerFactory loggerFactory); + public SupportedFeatures SupportedFeatures { get; } + } +} \ No newline at end of file diff --git a/Props.Shop/Framework/ProductListing.cs b/Props.Shop/Framework/ProductListing.cs new file mode 100644 index 0000000..a3d4754 --- /dev/null +++ b/Props.Shop/Framework/ProductListing.cs @@ -0,0 +1,55 @@ +using System; + +namespace Props.Shop.Framework +{ + public class ProductListing + { + public float LowerPrice { get; set; } + public float UpperPrice { get; set; } + public float? Shipping { get; set; } + public string Name { get; set; } + public string URL { get; set; } + public string ImageURL { get; set; } + public float? Rating { get; set; } + public int? PurchaseCount { get; set; } + public int? ReviewCount { get; set; } + public bool ConvertedPrices { get; set; } + public bool? InStock { get; set; } + public string Identifier { get; set; } + public DateTime TimeFetchedUtc { get; set; } + + public override bool Equals(object obj) + { + if (obj == null || GetType() != obj.GetType()) + { + return false; + } + + ProductListing other = obj as ProductListing; + return + this.LowerPrice == other.LowerPrice && + this.UpperPrice == other.UpperPrice && + this.Shipping == other.Shipping && + this.Name == other.Name && + this.URL == other.URL && + this.ImageURL == other.ImageURL && + this.Rating == other.Rating && + this.PurchaseCount == other.PurchaseCount && + this.ReviewCount == other.ReviewCount && + this.ConvertedPrices == other.ConvertedPrices && + this.InStock == other.InStock && + this.Identifier == other.Identifier && + this.TimeFetchedUtc == other.TimeFetchedUtc; + } + + public override int GetHashCode() + { + return (Name, URL, UpperPrice, LowerPrice, ImageURL).GetHashCode(); + } + + public ProductListing Copy() + { + return MemberwiseClone() as ProductListing; + } + } +} \ No newline at end of file diff --git a/Props.Shop/Framework/Props.Shop.Framework.csproj b/Props.Shop/Framework/Props.Shop.Framework.csproj new file mode 100644 index 0000000..03e4aa5 --- /dev/null +++ b/Props.Shop/Framework/Props.Shop.Framework.csproj @@ -0,0 +1,11 @@ + + + + net8.0 + + + + + + + diff --git a/Props.Shop/Framework/SupportedFeatures.cs b/Props.Shop/Framework/SupportedFeatures.cs new file mode 100644 index 0000000..7c6fd64 --- /dev/null +++ b/Props.Shop/Framework/SupportedFeatures.cs @@ -0,0 +1,20 @@ +namespace Props.Shop.Framework +{ + public class SupportedFeatures + { + bool Shipping { get; } + bool Rating { get; } + bool ReviewCount { get; } + bool PurchaseCount { get; } + bool InStock { get; } + + public SupportedFeatures(bool shipping, bool rating, bool reviewCount, bool purchaseCount, bool inStock) + { + this.Shipping = shipping; + this.Rating = rating; + this.ReviewCount = reviewCount; + this.PurchaseCount = purchaseCount; + this.InStock = inStock; + } + } +} \ No newline at end of file diff --git a/Props.Tests/Props.Tests.csproj b/Props.Tests/Props.Tests.csproj new file mode 100644 index 0000000..22434b4 --- /dev/null +++ b/Props.Tests/Props.Tests.csproj @@ -0,0 +1,24 @@ + + + + net8.0 + enable + true + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + diff --git a/Props.Tests/UnitTest1.cs b/Props.Tests/UnitTest1.cs new file mode 100644 index 0000000..4ab1e90 --- /dev/null +++ b/Props.Tests/UnitTest1.cs @@ -0,0 +1,12 @@ +using Xunit; + +namespace Props.Tests; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + + } +} \ No newline at end of file diff --git a/Props/.editorconfig b/Props/.editorconfig new file mode 100644 index 0000000..b68f9af --- /dev/null +++ b/Props/.editorconfig @@ -0,0 +1,6 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true +insert_final_newline = true +quote_type = double \ No newline at end of file diff --git a/Props/.eslintrc.js b/Props/.eslintrc.js new file mode 100644 index 0000000..62f37aa --- /dev/null +++ b/Props/.eslintrc.js @@ -0,0 +1,31 @@ +module.exports = { + "env": { + "browser": true, + "es2021": true, + "node": true, + }, + "extends": "eslint:recommended", + "parser": "@babel/eslint-parser", + "rules": { + "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", + "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", + "indent": [ + "error", + 4 + ], + "quotes": [ + "error", + "double" + ], + "semi": [ + "error", + "always" + ], + "comma-dangle": ["error", "only-multiline"], + "space-before-function-paren": ["error", { + "anonymous": "always", + "named": "never", + "asyncArrow": "always" + }] + } +}; diff --git a/Props/.vscode/launch.json b/Props/.vscode/launch.json new file mode 100644 index 0000000..ad23507 --- /dev/null +++ b/Props/.vscode/launch.json @@ -0,0 +1,36 @@ +{ + "version": "0.2.0", + "configurations": [ + { + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md + "name": ".NET Core Launch (web)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/bin/Debug/net7.0/Props.dll", + "args": [], + "cwd": "${workspaceFolder}", + "stopAtEntry": false, + // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser + "serverReadyAction": { + "action": "openExternally", + "pattern": "\\bNow listening on:\\s+(https?://\\S+)" + }, + "env": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "sourceFileMap": { + "/Views": "${workspaceFolder}/Views" + } + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach", + "processId": "${command:pickProcess}" + } + ] +} \ No newline at end of file diff --git a/Props/.vscode/settings.json b/Props/.vscode/settings.json new file mode 100644 index 0000000..312968f --- /dev/null +++ b/Props/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + "todo-tree.filtering.excludeGlobs": [ + "**/node_modules", + "**/wwwroot" + ], + "todo-tree.regex.regex": "((//|#| + + + + net8.0 + true + true + false + true + true + true + aspnet-Props-20A2A991-EC61-4C06-91D2-953482026A7B + + + + + + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + + + + RemoveIdentityAssets + + + + + + + + + + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Props/ScaffoldingReadMe.txt b/Props/ScaffoldingReadMe.txt new file mode 100644 index 0000000..6e6208d --- /dev/null +++ b/Props/ScaffoldingReadMe.txt @@ -0,0 +1,3 @@ +Support for ASP.NET Core Identity was added to your project. + +For setup and configuration information, see https://go.microsoft.com/fwlink/?linkid=2116645. diff --git a/Props/Services/Modules/IMetricsManager.cs b/Props/Services/Modules/IMetricsManager.cs new file mode 100644 index 0000000..4ed29f1 --- /dev/null +++ b/Props/Services/Modules/IMetricsManager.cs @@ -0,0 +1,18 @@ +using System.Collections.Generic; +using System.Threading.Tasks; +using Props.Models.Search; +using Props.Shop.Framework; + +namespace Props.Services.Modules +{ + public interface IMetricsManager + { + public IEnumerable RetrieveTopListings(int max = 10); + + public IEnumerable RetrieveCommonKeywords(int max = 50); + + public void RegisterSearchQuery(string query); + + public void RegisterProductListing(ProductListing productListing, string shopName); + } +} \ No newline at end of file diff --git a/Props/Services/Modules/ISearchManager.cs b/Props/Services/Modules/ISearchManager.cs new file mode 100644 index 0000000..2784a11 --- /dev/null +++ b/Props/Services/Modules/ISearchManager.cs @@ -0,0 +1,13 @@ +using System.Collections.Generic; +using System.Threading.Tasks; +using Props.Models.Search; +using Props.Shop.Framework; + +namespace Props.Services.Modules +{ + public interface ISearchManager + { + public IShopManager ShopManager { get; } + public Task> Search(string query, SearchOutline searchOutline); + } +} \ No newline at end of file diff --git a/Props/Services/Modules/IShopManager.cs b/Props/Services/Modules/IShopManager.cs new file mode 100644 index 0000000..423fa7c --- /dev/null +++ b/Props/Services/Modules/IShopManager.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Threading.Tasks; +using Props.Models.Search; +using Props.Shop.Framework; + +namespace Props.Services.Modules +{ + public interface IShopManager : IAsyncDisposable + { + public ValueTask> GetAllShopNames(); + public ValueTask GetShop(string name); + public ValueTask> GetAllShops(); + } +} \ No newline at end of file diff --git a/Props/Services/Modules/LiveMetricsManager.cs b/Props/Services/Modules/LiveMetricsManager.cs new file mode 100644 index 0000000..9d85b88 --- /dev/null +++ b/Props/Services/Modules/LiveMetricsManager.cs @@ -0,0 +1,113 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Logging; +using Props.Data; +using Props.Models.Search; +using Props.Options; +using Props.Shop.Framework; + +namespace Props.Services.Modules +{ + public class LiveMetricsManager : IMetricsManager + { + private MetricsOptions metricsOptions; + private ILogger logger; + private ApplicationDbContext dbContext; + private IQueryable leastPopularProductListings; + private IQueryable leastPopularQueryWords; + public LiveMetricsManager(ApplicationDbContext dbContext, ILogger logger, IConfiguration configuration) + { + this.metricsOptions = configuration.GetSection(MetricsOptions.Metrics).Get(); + this.logger = logger; + this.dbContext = dbContext; + leastPopularProductListings = from listing in dbContext.ProductListingInfos orderby listing.Hits ascending select listing; + leastPopularQueryWords = from word in dbContext.QueryWords orderby word.Hits ascending select word; + } + public IEnumerable RetrieveTopListings(int max) + { + if (dbContext.ProductListingInfos == null) return null; + return (from l in dbContext.ProductListingInfos + orderby l.Hits descending + select l).Take(max); + } + + public IEnumerable RetrieveCommonKeywords(int max) + { + if (dbContext.QueryWords == null) return null; + return (from k in dbContext.QueryWords + orderby k.Hits descending + select k.Word).Take(max); + } + + public void RegisterSearchQuery(string query) + { + query = query.ToLower(); + string[] tokens = query.Split(' '); + QueryWordInfo[] wordInfos = new QueryWordInfo[tokens.Length]; + for (int wordIndex = 0; wordIndex < tokens.Length; wordIndex++) + { + QueryWordInfo queryWordInfo = dbContext.QueryWords.Where((k) => k.Word.ToLower().Equals(tokens[wordIndex])).SingleOrDefault() ?? new QueryWordInfo(); + if (queryWordInfo.Hits == 0) + { + queryWordInfo.Word = tokens[wordIndex]; + dbContext.QueryWords.Add(queryWordInfo); + } + queryWordInfo.Hits += 1; + wordInfos[wordIndex] = queryWordInfo; + } + for (int wordIndex = 0; wordIndex < tokens.Length; wordIndex++) + { + for (int beforeIndex = 0; beforeIndex < wordIndex; beforeIndex++) + { + wordInfos[wordIndex].Preceding.Add(wordInfos[beforeIndex]); + } + for (int afterIndex = wordIndex; afterIndex < tokens.Length; afterIndex++) + { + wordInfos[wordIndex].Following.Add(wordInfos[afterIndex]); + } + } + + CullQueryWords(); + dbContext.SaveChanges(); + } + + public void RegisterProductListing(ProductListing productListing, string shopName) + { + ProductListingInfo productListingInfo = + (from info in dbContext.ProductListingInfos + where info.ProductListingIdentifier.Equals(productListing.Identifier) + select info).SingleOrDefault() ?? new ProductListingInfo(); + if (productListingInfo.Hits == 0) + { + dbContext.Add(productListingInfo); + } + productListingInfo.ShopName = shopName; + productListingInfo.ProductListing = productListing; + productListingInfo.ProductListingIdentifier = productListing.Identifier; + productListingInfo.Hits += 1; + + CullProductListings(); + dbContext.SaveChanges(); + } + + private void CullProductListings() + { + int surplus = dbContext.ProductListingInfos.Count() - metricsOptions.MaxProductListings; + if (surplus > 0) + { + dbContext.RemoveRange(leastPopularProductListings.Take(surplus)); + } + } + + private void CullQueryWords() + { + int surplus = dbContext.QueryWords.Count() - metricsOptions.MaxQueryWords; + if (surplus > 0) + { + dbContext.RemoveRange(leastPopularQueryWords.Take(surplus)); + } + } + } +} \ No newline at end of file diff --git a/Props/Services/Modules/LiveSearchManager.cs b/Props/Services/Modules/LiveSearchManager.cs new file mode 100644 index 0000000..1885918 --- /dev/null +++ b/Props/Services/Modules/LiveSearchManager.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Castle.Core.Logging; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Logging; +using Props.Models.Search; +using Props.Options; +using Props.Shop.Framework; + +namespace Props.Services.Modules +{ + public class LiveSearchManager : ISearchManager + { + private ILogger logger; + private SearchOptions searchOptions; + public IShopManager ShopManager { get; private set; } + private IMetricsManager metricsManager; + + public LiveSearchManager(IMetricsManager metricsManager, IShopManager shopManager, IConfiguration configuration, ILogger logger) + { + this.logger = logger; + this.metricsManager = metricsManager; + this.ShopManager = shopManager; + this.searchOptions = configuration.GetSection(SearchOptions.Search).Get(); + } + public async Task> Search(string query, SearchOutline searchOutline) + { + if (string.IsNullOrWhiteSpace(query)) throw new ArgumentException($"Query \"{query}\" is null or whitepsace."); + if (searchOutline == null) throw new ArgumentNullException("searchOutline"); + List results = new List(); + metricsManager.RegisterSearchQuery(query); + logger.LogDebug("Searching for \"{0}\".", query); + + foreach (string shopName in await ShopManager.GetAllShopNames()) + { + if (searchOutline.DisabledShops[shopName]) + { + logger.LogDebug("Checking \"{0}\".", shopName); + int amount = 0; + await foreach (ProductListing product in (await ShopManager.GetShop(shopName)).Search(query, searchOutline.Filters)) + { + if (searchOutline.Filters.Validate(product)) + { + amount += 1; + metricsManager.RegisterProductListing(product, shopName); + results.Add(product); + } + if (amount >= searchOptions.MaxResults) break; + } + logger.LogDebug("Found {0} listings that satisfy the search filters from {1}.", amount, shopName); + } + } + + return results; + } + } +} \ No newline at end of file diff --git a/Props/Services/Modules/ModularShopManager.cs b/Props/Services/Modules/ModularShopManager.cs new file mode 100644 index 0000000..7c7dc92 --- /dev/null +++ b/Props/Services/Modules/ModularShopManager.cs @@ -0,0 +1,129 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; +using Microsoft.CodeAnalysis.CSharp; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Logging; +using Microsoft.VisualStudio.Web.CodeGeneration; +using Props.Data; +using Props.Models.Search; +using Props.Options; +using Props.Shop.Framework; + +namespace Props.Services.Modules +{ + public class ModularShopManager : IShopManager + { + private Task ShopLoadingTask; + private ILoggerFactory loggerFactory; + private ILogger logger; + private Dictionary shops; + private ModulesOptions options; + private IConfiguration configuration; + + public ModularShopManager(IConfiguration configuration, ILogger logger, ILoggerFactory loggerFactory) + { + this.loggerFactory = loggerFactory; + this.logger = logger; + this.configuration = configuration; + options = configuration.GetSection(ModulesOptions.Modules).Get(); + Directory.CreateDirectory(options.ModuleDataDir); + shops = new Dictionary(); + ShopLoadingTask = LoadShops(); + } + + public async ValueTask> GetAllShopNames() + { + await ShopLoadingTask; + return shops.Keys; + } + + + public async ValueTask GetShop(string name) + { + await ShopLoadingTask; + return shops[name]; + } + + public async ValueTask> GetAllShops() + { + await ShopLoadingTask; + return shops.Values; + } + + private async Task LoadShops() + { + string shopsDir = options.ModulesDir; + string shopRegex = options.ShopRegex; + bool recursiveLoad = options.RecursiveLoad; + + Stack directories = new Stack(); + directories.Push(shopsDir); + string currentDirectory = null; + while (directories.TryPop(out currentDirectory)) + { + if (recursiveLoad) + { + foreach (string dir in Directory.EnumerateDirectories(currentDirectory)) + { + directories.Push(dir); + } + } + + foreach (string file in Directory.EnumerateFiles(currentDirectory)) + { + if (Path.GetExtension(file).Equals(".dll") && Regex.IsMatch(file, shopRegex)) + { + ShopAssemblyLoadContext context = new ShopAssemblyLoadContext(file); + Assembly assembly = context.LoadFromAssemblyName(new AssemblyName(Path.GetFileNameWithoutExtension(file))); + int success = 0; + foreach (Type type in assembly.GetTypes()) + { + if (typeof(IShop).IsAssignableFrom(type)) + { + IShop shop = Activator.CreateInstance(type) as IShop; + if (shop != null) + { + DirectoryInfo dataDir = Directory.CreateDirectory(Path.Combine(options.ModuleDataDir, file.Substring(file.IndexOf(Path.DirectorySeparatorChar) + 1))); + logger.LogDebug("Checking data directory for \"{0}\" at \"{1}\"", Path.GetFileName(file), dataDir.FullName); + await shop.Initialize(dataDir.FullName, loggerFactory); + success += 1; + if (!shops.TryAdd(shop.ShopName, shop)) + { + logger.LogWarning("Duplicate shop {0} detected. Ignoring the latter.", shop.ShopName); + } + logger.LogDebug("Loaded \"{0}\".", shop.ShopName); + } + } + } + if (success == 0) + { + logger.LogWarning("There were no shops found within the assembly at path \"{0}\".", file); + } + } + } + } + } + + public async ValueTask DisposeAsync() + { + logger.LogDebug("Disposing..."); + await DisposeAsyncCore(); + } + + protected virtual async ValueTask DisposeAsyncCore() + { + await ShopLoadingTask; + foreach (string shopName in shops.Keys) + { + await shops[shopName].DisposeAsync(); + logger.LogDebug("Completed dispose task for \"{0}\".", shopName); + } + } + } +} \ No newline at end of file diff --git a/Props/Services/Modules/ShopAssemblyLoadContext.cs b/Props/Services/Modules/ShopAssemblyLoadContext.cs new file mode 100644 index 0000000..1cae128 --- /dev/null +++ b/Props/Services/Modules/ShopAssemblyLoadContext.cs @@ -0,0 +1,33 @@ +using System; +using System.Reflection; +using System.Runtime.Loader; +using Microsoft.Extensions.DependencyModel; +using Microsoft.Extensions.Logging; +using Props.Shop.Framework; + +namespace Props.Services.Modules +{ + internal class ShopAssemblyLoadContext : AssemblyLoadContext + { + private AssemblyDependencyResolver resolver; + + public ShopAssemblyLoadContext(string path) + { + resolver = new AssemblyDependencyResolver(path); + } + + protected override Assembly Load(AssemblyName assemblyName) + { + if (assemblyName.FullName.Equals(typeof(IShop).Assembly.FullName)) return null; + if (assemblyName.FullName.Equals(typeof(ILoggerFactory).Assembly.FullName)) return null; + string assemblyPath = resolver.ResolveAssemblyToPath(assemblyName); + return assemblyPath != null ? LoadFromAssemblyPath(assemblyPath) : null; + } + + protected override IntPtr LoadUnmanagedDll(string unmanagedDllName) + { + string libPath = resolver.ResolveUnmanagedDllToPath(unmanagedDllName); + return libPath != null ? LoadUnmanagedDllFromPath(libPath) : IntPtr.Zero; + } + } +} \ No newline at end of file diff --git a/Props/Startup.cs b/Props/Startup.cs new file mode 100644 index 0000000..36f1ef2 --- /dev/null +++ b/Props/Startup.cs @@ -0,0 +1,78 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using Props.Data; +using Props.Models.User; +using Props.Services.Modules; +using System; + +namespace Props +{ + public class Startup + { + public Startup(IConfiguration configuration, IWebHostEnvironment webHostEnvironment) + { + Configuration = configuration; + environment = webHostEnvironment; + } + + public IConfiguration Configuration { get; } + private readonly IWebHostEnvironment environment; + + // This method gets called by the runtime. Use this method to add services to the container. + public void ConfigureServices(IServiceCollection services) + { + if (environment.IsDevelopment()) + { + services.AddDbContext(options => + { + options.UseLazyLoadingProxies(); + options.UseSqlite(Configuration.GetConnectionString("DefaultConnection")); + }); + services.AddDatabaseDeveloperPageExceptionFilter(); + } + else + { + services.AddDbContext(options => + { + options.UseLazyLoadingProxies(); + options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")); + }); + } + services.AddDefaultIdentity(options => options.SignIn.RequireConfirmedAccount = true) + .AddEntityFrameworkStores(); + services.AddRazorPages(); + + services.AddSingleton(); + services.AddScoped(); + services.AddScoped(); + } + + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. + public void Configure(IApplicationBuilder app) + { + if (environment.IsDevelopment()) + { + app.UseDeveloperExceptionPage(); + } + app.UseMigrationsEndPoint(); + + app.UseHttpsRedirection(); + app.UseStaticFiles(); + + app.UseRouting(); + + app.UseAuthentication(); + app.UseAuthorization(); + + app.UseEndpoints(endpoints => + { + endpoints.MapControllers(); + endpoints.MapRazorPages(); + }); + } + } +} diff --git a/Props/TagHelpers/NavLinkTagHelper.cs b/Props/TagHelpers/NavLinkTagHelper.cs new file mode 100644 index 0000000..d328f26 --- /dev/null +++ b/Props/TagHelpers/NavLinkTagHelper.cs @@ -0,0 +1,44 @@ +using System; +using System.Linq; +using System.Text.Encodings.Web; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; +using Microsoft.AspNetCore.Mvc.Rendering; +using Microsoft.AspNetCore.Mvc.Routing; +using Microsoft.AspNetCore.Mvc.TagHelpers; +using Microsoft.AspNetCore.Mvc.ViewFeatures; +using Microsoft.AspNetCore.Razor.TagHelpers; + +namespace Props.TagHelpers +{ + public class NavLinkTagHelper : AnchorTagHelper + { + private IUrlHelperFactory urlHelperFactory; + private IUrlHelper urlHelper; + public NavLinkTagHelper(IHtmlGenerator generator, IUrlHelperFactory urlHelperFactory) : base(generator) + { + this.urlHelperFactory = urlHelperFactory; + } + + public override void Init(TagHelperContext context) + { + this.urlHelper = urlHelperFactory.GetUrlHelper(ViewContext); + base.Init(context); + } + + public string ActiveClass { get; set; } = "active"; + + public override void Process(TagHelperContext context, TagHelperOutput output) + { + base.Process(context, output); + TagHelperAttribute dest; + if (output.Attributes.TryGetAttribute("href", out dest) && urlHelper.RouteUrl(ViewContext.RouteData.Values).Equals(dest.Value)) + { + output.AddClass(ActiveClass, HtmlEncoder.Default); + output.Attributes.Add("aria-current", "page"); + } + output.TagName = "a"; + } + } +} \ No newline at end of file diff --git a/Props/appsettings.Development.json b/Props/appsettings.Development.json new file mode 100644 index 0000000..0d08533 --- /dev/null +++ b/Props/appsettings.Development.json @@ -0,0 +1,10 @@ +{ + "DetailedErrors": true, + "Logging": { + "LogLevel": { + "Default": "Debug", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} \ No newline at end of file diff --git a/Props/appsettings.json b/Props/appsettings.json new file mode 100644 index 0000000..6bac999 --- /dev/null +++ b/Props/appsettings.json @@ -0,0 +1,26 @@ +{ + "ConnectionStrings": { + "DefaultConnection": "DataSource=app.db;Cache=Shared" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "Modules": { + "ModulesDir": "./shops", + "ModuleDataDir": "./shop-data", + "RecursiveLoad": "false", + "ShopRegex": "Props\\.Shop\\.." + }, + "Search": { + "MaxResults": 100 + }, + "Metrics": { + "MaxQueryWords": 4096, + "MaxProductListings": 1024 + }, + "AllowedHosts": "*" +} \ No newline at end of file diff --git a/Props/assets/images/logo-simplified.svg b/Props/assets/images/logo-simplified.svg new file mode 100644 index 0000000..7f91365 --- /dev/null +++ b/Props/assets/images/logo-simplified.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Props/assets/images/logo.png b/Props/assets/images/logo.png new file mode 100644 index 0000000..d97f66d Binary files /dev/null and b/Props/assets/images/logo.png differ diff --git a/Props/assets/images/logo.svg b/Props/assets/images/logo.svg new file mode 100644 index 0000000..85af66f --- /dev/null +++ b/Props/assets/images/logo.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Props/assets/js/dependencies.js b/Props/assets/js/dependencies.js new file mode 100644 index 0000000..f490be1 --- /dev/null +++ b/Props/assets/js/dependencies.js @@ -0,0 +1,2 @@ +import "~/node_modules/bootstrap/js/dist/collapse"; +import "simplebar"; diff --git a/Props/assets/js/services/http.js b/Props/assets/js/services/http.js new file mode 100644 index 0000000..b1898af --- /dev/null +++ b/Props/assets/js/services/http.js @@ -0,0 +1,23 @@ +import axios from "axios"; + +let currentAuthorizationInterceptorID = null; + +const apiHttp = axios.create({ + baseURL: window.location.origin + "/api", + timeout: 3000, +}); + +function addBearerTokenInterceptor(token) { + currentAuthorizationInterceptorID = apiHttp.interceptors.request.use((config) => { + config.headers.Authorization = `Bearer ${token}`; + return config; + }, (err) => { + console.error(err); + }); +} + +function removeBearerTokenInterceptor() { + apiHttp.interceptors.request.eject(currentAuthorizationInterceptorID); +} + +export { apiHttp, addBearerTokenInterceptor, removeBearerTokenInterceptor }; diff --git a/Props/assets/js/services/persistence.js b/Props/assets/js/services/persistence.js new file mode 100644 index 0000000..d2373e9 --- /dev/null +++ b/Props/assets/js/services/persistence.js @@ -0,0 +1,31 @@ +const prefix = "Props"; +function put(key, value) { + if (value == null) return false; + try { + localStorage.setItem(prefix + ":" + key, JSON.stringify(value)); + } catch (error) { + console.error(error); + return false; + } + return true; +} + +function get(key) { + if (!exists(key)) return null; + try { + return JSON.parse(localStorage.getItem(prefix + ":" + key)); + } catch (error) { + console.error(error); + return null; + } +} + +function remove(key) { + localStorage.removeItem(prefix + ":" + key); +} + +function exists(key) { + return localStorage.getItem(prefix + ":" + key) != null; +} + +export { put, get, remove, exists }; diff --git a/Props/assets/js/site.js b/Props/assets/js/site.js new file mode 100644 index 0000000..e69de29 diff --git a/Props/assets/js/specific/search.js b/Props/assets/js/specific/search.js new file mode 100644 index 0000000..42202a0 --- /dev/null +++ b/Props/assets/js/specific/search.js @@ -0,0 +1,299 @@ +import { apiHttp } from "../services/http"; +import Alpine from "alpinejs"; +import clone from "just-clone"; + +const UPLOAD_DELAY = 1500; +const START_SLIDE = "#quick-picks-slide"; + +function initInteractiveElements() { + let configurationToggle = document.getElementById("configuration-toggle"); + let configurationElem = document.getElementById("configuration"); + configurationElem.addEventListener("show.bs.collapse", function () { + configurationToggle.classList.add("active"); + }); + configurationElem.addEventListener("hidden.bs.collapse", function () { + configurationToggle.classList.remove("active"); + }); +} + +function initConfigData() { + document.addEventListener("alpine:init", () => { + Alpine.data("search", () => ({ + loggedIn: false, + query: "", + searchOutline: { + ready: false, + filters: { + "currency": 0, + "minRating": 80, + "keepUnrated": true, + "enableUpperPrice": false, + "upperPrice": 0, + "lowerPrice": 0, + "minPurchases": 0, + "keepUnknownPurchaseCount": true, + "minReviews": 0, + "keepUnknownReviewCount": true, + "enableMaxShipping": false, + "maxShippingFee": 0, + "keepUnknownShipping": true + }, + shopToggles: {}, + }, + deletingSearchOutline: false, + creatingSearchOutline: false, + updatingLastUsed: false, + changingName: false, + updatingFilters: false, + updatingDisabledShops: false, + searchOutlines: [], + selectedSearchOutline: 0, + serverSearchOutlineName: null, + resultsQuery: null, + results: { + bestPrice: null, + }, + searchOutlineChangeTimeout: null, + timeoutInProgress: false, + hasResults() { + return this.resultsQuery !== null; + }, + submitSearch() { + // TODO: implement search Web API call. + this.resultsQuery = this.query; + console.log("Search requested."); + }, + SearchOutlineNameChange() { + if (this.validateSearchOutlineName()) { + this.changeSearchOutlineName(this.serverSearchOutlineName, this.searchOutlines[this.selectedSearchOutline]); + } + }, + validateAllNumericalInputs() { + if (!this.searchOutline.filters.lowerPrice) this.searchOutline.filters.lowerPrice = 0; + if (!this.searchOutline.filters.upperPrice) this.searchOutline.filters.upperPrice = 0; + if (!this.searchOutline.filters.maxShippingFee) this.searchOutline.filters.maxShippingFee = 0; + if (!this.searchOutline.filters.minPurchases) this.searchOutline.filters.minPurchases = 0; + if (!this.searchOutline.filters.minRating) this.searchOutline.filters.minRating = 0; + if (!this.searchOutline.filters.minReviews) this.searchOutline.filters.minReviews = 0; + }, + validateSearchOutlineName() { + let clonedSearchOutlines = this.searchOutlines.slice(); + clonedSearchOutlines.splice(this.selectedSearchOutline, 1); + if (this.searchOutlines[this.selectedSearchOutline].length < 1 || clonedSearchOutlines.includes(this.searchOutlines[this.selectedSearchOutline])) { + this.searchOutlines[this.selectedSearchOutline] = this.serverSearchOutlineName; + return false; + } + return true; + }, + searchOutlineChanged() { + if (!this.loggedIn) return; + if (this.searchOutlineChangeTimeout != null) { + clearTimeout(this.searchOutlineChangeTimeout); + } + this.timeoutInProgress = true; + this.searchOutlineChangeTimeout = setTimeout(() => { + this.uploadAll(); + this.timeoutInProgress = false; + }, UPLOAD_DELAY); + }, + uploadAll() { + let name = this.searchOutlines[this.selectedSearchOutline]; + this.uploadFilters(name, clone(this.searchOutline.filters)); + this.uploadDisabledShops(name, clone(this.searchOutline.shopToggles)); + }, + async uploadFilters(name, filters) { + if (!this.loggedIn) return; + this.validateAllNumericalInputs(); + this.updatingFilters = true; + let uploadFilterResponse = await apiHttp.put(`SearchOutline/${name}/Filters`, filters); + this.updatingFilters = false; + if (uploadFilterResponse.status != 204) { + throw `Error while attempting to upload filters. Response code ${uploadFilterResponse.status} (expected 204).`; + } + }, + async uploadDisabledShops(name, disabledShops) { + if (!this.loggedIn) return; + this.updatingDisabledShops = true; + let disabledShopSet = []; + Object.keys(disabledShops).forEach(key => { + if (!this.searchOutline.shopToggles[key]) { + disabledShopSet.push(key); + } + }); + let uploadDisabledShopsResponse = await apiHttp.put(`SearchOutline/${name}/DisabledShops`, disabledShopSet); + this.updatingDisabledShops = false; + if (uploadDisabledShopsResponse.status != 204) { + throw `Error while attempting to upload disabled shops. Response code ${uploadDisabledShopsResponse.status} (expected 204).`; + } + }, + async createSearchOutline(name) { + if (!this.loggedIn) return; + this.creatingSearchOutline = true; + let createRequest = await apiHttp.post("SearchOutline/" + name); + this.creatingSearchOutline = false; + if (createRequest.status != 204) { + throw `Could not create profile. Response code ${createRequest.status} (expected 204).`; + } + this.searchOutlines.push(name); + }, + async updateLastUsed(name) { + if (!this.loggedIn) return; + this.updatingLastUsed = true; + let lastUsedRequest = await apiHttp.put("SearchOutline/" + name + "/LastUsed"); + this.updatingLastUsed = false; + if (lastUsedRequest.status != 204) { + throw `Could not update last used search outline. Received status code ${lastUsedRequest.status} (expected 204).`; + } + }, + async changeSearchOutlineName(old, current) { + if (!this.loggedIn) return; + this.changingName = true; + let nameChangeRequest = await apiHttp.put(`SearchOutline/${old}/Name/${current}`); + this.changingName = false; + if (nameChangeRequest.status != 204) { + throw `Could not update name on server side. Received ${nameChangeRequest.status} (expected 204).`; + } + this.serverSearchOutlineName = current; + }, + async loadSearchOutline(name) { + this.searchOutline.ready = false; + if (!this.loggedIn) { + let defaultNameRequest = await apiHttp.get("SearchOutline/DefaultName"); + if (defaultNameRequest.status != 200) { + console.error(`Could not load default search outline name. Got response code ${defaultNameRequest.status} (Expected 200).`); + return; + } + this.searchOutlines.push(defaultNameRequest.data); + let disabledShopsResponse = await apiHttp.get("SearchOutline/DefaultDisabledShops"); + let availableShops = (await apiHttp.get("Search/AvailableShops")).data; + if (disabledShopsResponse.status == 200) { + availableShops.forEach(shopName => { + this.searchOutline.shopToggles[shopName] = !disabledShopsResponse.data.includes(shopName); + }); + } else { + console.error(`Could not fetch default disabled shops for "${name}". Status code: ${disabledShopsResponse.status} (Expected 200)`); + return; + } + } else { + if (this.searchOutlineChangeTimeout != null) { + clearTimeout(this.searchOutlineChangeTimeout); + this.uploadAll(); + } + let filterResponse = await apiHttp.get("SearchOutline/" + name + "/Filters"); + if (filterResponse.status == 200) { + this.searchOutline.filters = filterResponse.data; + } else { + console.error(`Could not fetch filter for "${name}". Status code: ${filterResponse.status} (Expected 200)`); + return; + } + + let disabledShopsResponse = await apiHttp.get("SearchOutline/" + name + "/DisabledShops"); + let availableShops = (await apiHttp.get("Search/AvailableShops")).data; + if (disabledShopsResponse.status == 200) { + availableShops.forEach(shopName => { + this.searchOutline.shopToggles[shopName] = !disabledShopsResponse.data.includes(shopName); + }); + } else { + console.error(`Could not fetch disabled shops for "${name}". Status code: ${disabledShopsResponse.status} (Expected 200)`); + return; + } + await this.updateLastUsed(name); + } + this.serverSearchOutlineName = name; + this.searchOutline.ready = true; + }, + createSearchOutlineWithGeneratedName() { + apiHttp.get("SearchOutline/DefaultName/").then((response) => { + if (response.status != 200) { + throw `Could not get a default name. Response code ${response.status} (expected 200).`; + } + this.createSearchOutline(response.data); + }); + }, + deleteSearchOutline(name) { + this.deletingSearchOutline = true; + let beforeDelete = this.searchOutlines[this.selectedSearchOutline]; + if (this.selectedSearchOutline == this.searchOutlines.length - 1 && this.searchOutlines.indexOf(name) <= this.selectedSearchOutline) { + this.selectedSearchOutline -= 1; + } + apiHttp.delete(`SearchOutline/${name}`).then((results) => { + this.deletingSearchOutline = false; + if (results.status != 204) { + throw `Unable to delete ${name}. Received status ${results.status} (expected 204)`; + } + this.searchOutlines.splice(this.searchOutlines.indexOf(name), 1); + if (beforeDelete !== this.searchOutlines[this.selectedSearchOutline]) { + this.loadSearchOutline(this.searchOutlines[this.selectedSearchOutline]).then(() => { + this.deletingSearchOutline = false; + }); + } else { + this.deletingSearchOutline = false; + } + }); + }, + async init() { + // TODO: Test logged in outline sequence and logged out outline sequence. + this.loggedIn = (await apiHttp.get("User/LoggedIn")).data; + if (this.loggedIn) { + this.searchOutlines = (await apiHttp.get("SearchOutline/Names")).data; + if (this.searchOutlines.length == 0) { + let name = (await apiHttp.get("SearchOutline/DefaultName")).data; + try { + await this.createSearchOutline(name); + await this.updateLastUsed(name); + } catch (error) { + console.error(error); + return; + } + } else { + let lastUsedRequest = await apiHttp.get("SearchOutline/LastUsed"); + if (lastUsedRequest.status == 200) { + this.selectedSearchOutline = this.searchOutlines.indexOf(lastUsedRequest.data); + } else { + console.warn(`Could not load name of last used search outline. Got response code ${lastUsedRequest.status} (Expected 200). Using "${this.searchOutlines[0]}".`); + let putlastUsedRequest = await apiHttp.put("SearchOutline/" + this.searchOutlines[this.selectedSearchOutline] + "/LastUsed"); + if (putlastUsedRequest.status != 204) { + console.error(`Could not update last used search outline. Received status code ${putlastUsedRequest.status} (Expected 204).`); + return; + } + } + } + } + this.loadSearchOutline(this.searchOutlines[this.selectedSearchOutline]); + } + })); + }); + + Alpine.start(); +} + +function initSlides() { + document.querySelectorAll("#content-pages > .selectors > .nav-item > button").forEach(tabElem => { + tabElem.addEventListener("click", () => { + const destUrl = new URL(tabElem.getAttribute("data-bs-target"), window.location.href); + if (location.href === destUrl.href) return; + history.pushState({}, document.title, destUrl); + }); + }); + const goTo = () => { + const match = location.href.match("(#[\\w-]+)"); + const idAnchor = match && match[1] ? match[1] : START_SLIDE; + document.querySelector("#content-pages > .selectors > .nav-item > .active")?.classList.remove("active"); + document.querySelector("#content-pages > .multipage-slides > .active.show")?.classList.remove("active", "show"); + document.querySelector(`#content-pages > .selectors > .nav-item > [data-bs-target="${idAnchor}"]`).classList.add("active"); + document.querySelector(`#content-pages > .multipage-slides > ${idAnchor}`).classList.add("active", "show"); + }; + window.addEventListener("popstate", goTo); + goTo(); + + require("bootstrap/js/dist/tab.js"); + document.querySelector("#content-pages").classList.remove("invisible"); +} + +async function main() { + initInteractiveElements(); + initSlides(); + initConfigData(); +} + +main(); diff --git a/Props/assets/styles/_themer.scss b/Props/assets/styles/_themer.scss new file mode 100644 index 0000000..4a22efb --- /dev/null +++ b/Props/assets/styles/_themer.scss @@ -0,0 +1,17 @@ +@use "sass:map"; +@use "variables"; + +// Applied Dmitry Borody's method for theming with modifications. - https://medium.com/@dmitriy.borodiy/easy-color-theming-with-scss-bc38fd5734d1 +@mixin themed($themes: variables.$themes) { + @each $theme, $vars in $themes { + .theme-#{$theme} &, &.theme-#{$theme} { + $theme-values: $vars !global; + @content; + $theme-values: null !global; + } + } +} + +@function color-of($type) { + @return map.get($theme-values, $type); +} \ No newline at end of file diff --git a/Props/assets/styles/_variables.scss b/Props/assets/styles/_variables.scss new file mode 100644 index 0000000..aa14b1c --- /dev/null +++ b/Props/assets/styles/_variables.scss @@ -0,0 +1,14 @@ +$themes: ( + "light": ( + "background": #ebf0ef, + "navbar": #E6F4F1, + "navbar-link": #005780, + "navbar-active": #001f2e, + "main": #B4EEFF, + "footer": #F2F2F2, + "sub": #EEFBFF, + "text": #1A1A1A, + "special": #00A2EF, + "muted": #797a7e, + ), +); diff --git a/Props/assets/styles/dependencies.css b/Props/assets/styles/dependencies.css new file mode 100644 index 0000000..9a1ac23 --- /dev/null +++ b/Props/assets/styles/dependencies.css @@ -0,0 +1,2 @@ +@import "~/node_modules/bootstrap-icons/font/bootstrap-icons.css"; +@import "~/node_modules/simplebar/dist/simplebar.min.css"; \ No newline at end of file diff --git a/Props/assets/styles/site.scss b/Props/assets/styles/site.scss new file mode 100644 index 0000000..520d102 --- /dev/null +++ b/Props/assets/styles/site.scss @@ -0,0 +1,292 @@ +@use "themer"; +@use "sass:color"; +@use "~/node_modules/bootstrap/scss/bootstrap"; + +header > nav { + @extend .navbar-expand-lg; + @extend .navbar; + @extend .border-bottom; + @include themer.themed { + background-color: themer.color-of("navbar"); + } + + .nav-link, .navbar-brand { + @include themer.themed { + color: themer.color-of("navbar-link"); + } + &.active { + @include themer.themed { + color: themer.color-of("navbar-active"); + border-bottom-color: themer.color-of("navbar-active"); + } + padding-bottom: 2px; + border-bottom-style: solid; + border-bottom-width: 2px; + } + } + + .navbar-toggler { + .bi-list { + font-size: 1.5rem; + } + } +} + +main { + flex-grow: 1; + display: flex; + flex-direction: column; + +} + +footer { + @extend .text-center; + @extend .border-top; + @extend .py-2; + @include themer.themed { + background-color: themer.color-of("footer"); + color: themer.color-of("muted"); + } + + a { + @include themer.themed { + color: themer.color-of("muted"); + } + } + + width: 100%; +} + +.jumbotron { + @extend .container-fluid; + @extend .p-4; + @include themer.themed { + background-color: themer.color-of("main"); + } + + &.sub { + @include themer.themed { + background-color: themer.color-of("sub"); + } + } +} + +.center-overlay { + position: absolute; + left: 50%; + right: 50%; + bottom: 50%; + top: 50%; +} + +.concise { + @extend .container; + max-width: 630px; + width: 100%; +} + +.less-concise { + @extend .container; + max-width: 720px; + width: 100%; +} + +hr { + &.concise { + @extend .my-2; + width: 15%; + max-width: 160px; + min-width: 32px; + height: 2px; + } + &.less-concise { + @extend .my-2; + width: 30%; + max-width: 270px; + min-width: 32px; + height: 2px; + } +} + +.tear { + @include themer.themed { + $tear: themer.color-of("background"); + background-color: adjust-color($color: $tear, $lightness: -8%, $alpha: 1.0); + box-shadow: 0px 0px 5px 0px adjust-color($color: $tear, $lightness: -25%, $alpha: 1.0) inset; + } +} + +input[type="text"].title-input { + @include themer.themed { + color: themer.color-of("text"); + } + font-size: 2.5em; + margin-bottom: 1.5rem; + border-style: none; + + border-bottom: 1px solid transparent; + + background-color: transparent; + text-align: center; + transition: border-bottom-color 0.5s; + + &:hover:not(:disabled) { + @include themer.themed { + border-bottom-color: adjust-color($color: themer.color-of("text"), $lightness: 50%); + } + } + + &:focus:not(:disabled) { + outline: none; + @include themer.themed { + border-bottom-color: adjust-color($color: themer.color-of("text")); + } + } + + &:disabled { + border-bottom-color: transparent; + @include themer.themed { + color: themer.color-of("text"); + } + } +} + +.clean-radio { + input[type="radio"] { + display: none; + & + label { + transition: border-color 0.5s; + padding: 0.5rem; + border-left: 3px solid; + @include themer.themed { + border-color: themer.color-of("text"); + } + cursor: pointer; + } + &:hover + label { + @include themer.themed { + border-color: adjust-color($color: themer.color-of("special"), $lightness: 30%); + } + } + &:checked + label { + @include themer.themed { + border-color: adjust-color($color: themer.color-of("special"), $lightness: 0%); + } + } + } + + button.btn { + transition: color 0.5s; + color: transparent; + } + + &:hover { + button.btn { + @include themer.themed { + color: themer.color-of("text"); + } + } + } +} + +.border-right-themed { + border-right: 1px solid; + @include themer.themed { + border-right-color: themer.color-of("text"); + } +} + +.border-left-themed { + border-left: 1px solid; + @include themer.themed { + border-left-color: themer.color-of("text"); + } +} + +.border-top-themed { + border-top: 1px solid; + @include themer.themed { + border-top-color: themer.color-of("text"); + } +} + +.border-bottom-themed { + border-bottom: 1px solid; + @include themer.themed { + border-bottom-color: themer.color-of("text"); + } +} + +html { + min-height: 100%; + display: flex; + flex-direction: column; +} + +body { + display: flex; + flex-direction: column; + flex-grow: 1; + @include themer.themed { + background-color: themer.color-of("background"); + color: themer.color-of("text"); + } +} + +.text-muted { + @include themer.themed { + color: themer.color-of("muted") !important; + } +} + +.multipage { + display: flex; + flex-direction: column; + flex-grow: 1; + + .multipage-slides, .multipage-slides > .multipage-slide.active { + display: flex; + flex-direction: column; + flex-grow: 1; + } + + .multipage-slide { + .multipage-content { + @extend .container; + flex-grow: 1; + display: flex; + flex-direction: column; + } + + .multipage-title { + @extend .less-concise; + text-align: center; + } + } + + .nav-pills.selectors { + display: flex; + justify-content: center; + margin-bottom: 1rem; + button[type="button"] { + margin-right: 5px; + margin-left: 5px; + opacity: 0.4; + border-style: none; + font-size: 1.5rem; + min-width: 30px; + width: auto; + height: auto; + background-color: transparent; + background-clip: border-box; + @include themer.themed { + border-bottom: 2px solid themer.color-of("text"); + } + border-bottom-style: none; + + &.active { + opacity: 1; + } + } + } +} diff --git a/Props/babel.config.js b/Props/babel.config.js new file mode 100644 index 0000000..d489795 --- /dev/null +++ b/Props/babel.config.js @@ -0,0 +1,11 @@ +module.exports = function (api) { + api.cache(true); + + const presets = []; + const plugins = []; + + return { + presets, + plugins + }; +}; diff --git a/Props/package-lock.json b/Props/package-lock.json new file mode 100644 index 0000000..e20af74 --- /dev/null +++ b/Props/package-lock.json @@ -0,0 +1,10038 @@ +{ + "name": "Props", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "hasInstallScript": true, + "license": "ISC", + "dependencies": { + "@babel/runtime": "^7.24.8", + "alpinejs": "^3.14.1", + "axios": "^1.7.2", + "bootstrap": "^5.3.3", + "bootstrap-icons": "^1.11.3", + "just-clone": "^6.2.0", + "on-change": "^5.0.1", + "simplebar": "^6.2.7" + }, + "devDependencies": { + "@babel/core": "^7.24.9", + "@babel/eslint-parser": "^7.24.8", + "@babel/plugin-transform-runtime": "^7.24.7", + "@babel/preset-env": "^7.24.8", + "babel-loader": "^9.1.3", + "copy-webpack-plugin": "^12.0.2", + "css-loader": "^7.1.2", + "eslint": "^9.7.0", + "glob": "^11.0.0", + "sass": "^1.77.8", + "sass-loader": "^14.2.1", + "style-loader": "^4.0.0", + "webpack": "^5.93.0", + "webpack-cli": "^5.1.4", + "webpack-merge": "^6.0.1" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.9.tgz", + "integrity": "sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.9.tgz", + "integrity": "sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.9", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-module-transforms": "^7.24.9", + "@babel/helpers": "^7.24.8", + "@babel/parser": "^7.24.8", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.24.8.tgz", + "integrity": "sha512-nYAikI4XTGokU2QX7Jx+v4rxZKhKivaQaREZjuW3mrJrbdWJ5yUfohnoUULge+zEEaKjPYNxhoRgUKktjXtbwA==", + "dev": true, + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.24.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.10.tgz", + "integrity": "sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.8.tgz", + "integrity": "sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.8.tgz", + "integrity": "sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", + "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", + "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", + "dev": true, + "dependencies": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", + "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.9.tgz", + "integrity": "sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", + "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-wrap-function": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", + "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", + "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.8.tgz", + "integrity": "sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/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, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/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, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/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, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.8.tgz", + "integrity": "sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", + "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", + "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", + "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@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, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz", + "integrity": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", + "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.8.tgz", + "integrity": "sha512-VXy91c47uujj758ud9wx+OMgheXm4qJfyhj1P18YvlrQkNOSrwsteHk+EFS3OMGfhMhpZa0A+81eE7G4QC+3CA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", + "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", + "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", + "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.8.tgz", + "integrity": "sha512-vObvMZB6hNWuDxhSaEPTKCwcqkAIuDtE+bQGn4XMXne1DSLzFVY8Vmj1bm+mUQXYNN8NmaQEO+r8MMbzPr1jBQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.24.8", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@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-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.24.7", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.24.7", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.24.8", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.24.7", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.24.7", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.37.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "node_modules/@babel/runtime": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.8.tgz", + "integrity": "sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", + "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.8.tgz", + "integrity": "sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.8", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/parser": "^7.24.8", + "@babel/types": "^7.24.8", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.9.tgz", + "integrity": "sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz", + "integrity": "sha512-Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.17.0.tgz", + "integrity": "sha512-A68TBu6/1mHHuc5YJL0U0VVeGNiklLAL6rRmhTCP2B5XjWLMnrX+HkO+IAXyHvks5cyyY1jjK5ITPQ1HGS2EVA==", + "dev": true, + "dependencies": { + "@eslint/object-schema": "^2.1.4", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.7.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.7.0.tgz", + "integrity": "sha512-ChuWDQenef8OSFnvuxv0TCVxEwmu3+hPNKvM9B34qpM0rDRbjL8t5QkQeHHeAfsKQjuH9wS82WeCi1J/owatng==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", + "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", + "dev": true, + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@types/eslint": { + "version": "8.56.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", + "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/lodash": { + "version": "4.17.7", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz", + "integrity": "sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/node": { + "version": "20.14.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.11.tgz", + "integrity": "sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", + "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", + "dependencies": { + "@vue/shared": "3.1.5" + } + }, + "node_modules/@vue/shared": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", + "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alpinejs": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.14.1.tgz", + "integrity": "sha512-ICar8UsnRZAYvv/fCNfNeKMXNoXGUfwHrjx7LqXd08zIP95G2d9bAOuaL97re+1mgt/HojqHsfdOLo/A5LuWgQ==", + "dependencies": { + "@vue/reactivity": "~3.1.1" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/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, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/axios": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", + "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-loader": { + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "dev": true, + "dependencies": { + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" + } + }, + "node_modules/babel-loader/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/babel-loader/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/babel-loader/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bootstrap": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.3.tgz", + "integrity": "sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "node_modules/bootstrap-icons": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.11.3.tgz", + "integrity": "sha512-+3lpHrCw/it2/7lBL15VR0HEumaBss0+f/Lb6ZvHISn1mlK83jjFpooTLsMWbIjJMDjDjOExMsTxnXSIT4k4ww==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ] + }, + "node_modules/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, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.23.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz", + "integrity": "sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001640", + "electron-to-chromium": "^1.4.820", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.1.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/can-use-dom": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", + "integrity": "sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo=" + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001642", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001642.tgz", + "integrity": "sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", + "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk/node_modules/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, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/chalk/node_modules/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, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/chalk/node_modules/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 + }, + "node_modules/chalk/node_modules/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, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/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, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/copy-webpack-plugin": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-12.0.2.tgz", + "integrity": "sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==", + "dev": true, + "dependencies": { + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.1", + "globby": "^14.0.0", + "normalize-path": "^3.0.0", + "schema-utils": "^4.2.0", + "serialize-javascript": "^6.0.2" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/copy-webpack-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/core-js-compat": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "dev": true, + "dependencies": { + "browserslist": "^4.23.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/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, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-loader": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz", + "integrity": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.27.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/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, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/electron-to-chromium": { + "version": "1.4.831", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.831.tgz", + "integrity": "sha512-6cKy9msoQGWhBF30n6y5ck80BdunKdwMRugM1lr74DMMXhjDRxSwMvrD1ncPP+n1PjF+KKmZZydvEF29skNZ1Q==", + "dev": true + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/enhanced-resolve": { + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", + "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/envinfo": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", + "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "dev": true + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.7.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.7.0.tgz", + "integrity": "sha512-FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.11.0", + "@eslint/config-array": "^0.17.0", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.7.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.0", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.0.2", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.1.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/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, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.2.tgz", + "integrity": "sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint/node_modules/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, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/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, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/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, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", + "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", + "dev": true, + "dependencies": { + "acorn": "^8.12.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/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, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/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 + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/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 + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", + "dev": true, + "dependencies": { + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "dependencies": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "dependencies": { + "p-locate": "^6.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "dependencies": { + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "dev": true, + "dependencies": { + "find-up": "^6.3.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/yocto-queue": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/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, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/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, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/glob": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/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, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", + "dev": true, + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", + "integrity": "sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/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, + "engines": { + "node": ">=4" + } + }, + "node_modules/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, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/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, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "dev": true, + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/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, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/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, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jackspeak": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", + "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/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 + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/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 + }, + "node_modules/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 + }, + "node_modules/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 + }, + "node_modules/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 + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/just-clone": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/just-clone/-/just-clone-6.2.0.tgz", + "integrity": "sha512-1IynUYEc/HAwxhi3WDpIpxJbZpMCvvrrmZVqvj9EhpvbH8lls7HhdhiByjL7DkAaWlLIzpC0Xc/VPvy/UxLNjA==" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/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, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/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, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/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 + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dev": true, + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.48.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz", + "integrity": "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.31", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz", + "integrity": "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==", + "dependencies": { + "mime-db": "1.48.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/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 + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/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 + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.17.tgz", + "integrity": "sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==", + "dev": true + }, + "node_modules/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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/on-change": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/on-change/-/on-change-5.0.1.tgz", + "integrity": "sha512-n7THCP7RkyReRSLkJb8kUWoNsxUIBxTkIp3JKno+sEz6o/9AJ3w3P9fzQkITEkMwyTKJjZciF3v/pVoouxZZMg==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sindresorhus/on-change?sponsor=1" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "dependencies": { + "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.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/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, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/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, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/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, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/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, + "engines": { + "node": ">=6" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "dev": true + }, + "node_modules/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, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "dev": true, + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.0.tgz", + "integrity": "sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==", + "dev": true, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/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, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss": { + "version": "8.4.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz", + "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/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, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/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, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/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 + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/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, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/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, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/sass": { + "version": "1.77.8", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz", + "integrity": "sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-loader": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.2.1.tgz", + "integrity": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==", + "dev": true, + "dependencies": { + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/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, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/simplebar": { + "version": "6.2.7", + "resolved": "https://registry.npmjs.org/simplebar/-/simplebar-6.2.7.tgz", + "integrity": "sha512-IdD6HwZLz4f83lG0yN5r/3Mts4qR+pKAc9IjVdtJ96Ow6IqSA+jG2PlniQ710XUygal/mOA774IgAvcoirUP4g==", + "dependencies": { + "can-use-dom": "^0.1.0", + "simplebar-core": "^1.2.6" + } + }, + "node_modules/simplebar-core": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/simplebar-core/-/simplebar-core-1.2.6.tgz", + "integrity": "sha512-H5NYU+O+uvqOH5VXw3+lgoc1vTI6jL8LOZJsw4xgRpV7uIPjRpmLPdz0TrouxwKHBhpVLzVIlyKhaRLelIThMw==", + "dependencies": { + "@types/lodash-es": "^4.17.6", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21" + } + }, + "node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/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, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/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 + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-4.0.0.tgz", + "integrity": "sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==", + "dev": true, + "engines": { + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.27.0" + } + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.31.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.3.tgz", + "integrity": "sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/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 + }, + "node_modules/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, + "engines": { + "node": ">=4" + } + }, + "node_modules/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, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/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, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/watchpack": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack": { + "version": "5.93.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.93.0.tgz", + "integrity": "sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", + "dev": true + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/webpack-cli/node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-merge": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", + "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.1" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/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, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/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, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/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 + }, + "node_modules/wrap-ansi-cjs/node_modules/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 + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/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, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@babel/code-frame": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" + } + }, + "@babel/compat-data": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.9.tgz", + "integrity": "sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==", + "dev": true + }, + "@babel/core": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.9.tgz", + "integrity": "sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.9", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-module-transforms": "^7.24.9", + "@babel/helpers": "^7.24.8", + "@babel/parser": "^7.24.8", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/eslint-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.24.8.tgz", + "integrity": "sha512-nYAikI4XTGokU2QX7Jx+v4rxZKhKivaQaREZjuW3mrJrbdWJ5yUfohnoUULge+zEEaKjPYNxhoRgUKktjXtbwA==", + "dev": true, + "requires": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.24.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.10.tgz", + "integrity": "sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==", + "dev": true, + "requires": { + "@babel/types": "^7.24.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^2.5.1" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "requires": { + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", + "dev": true, + "requires": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.8.tgz", + "integrity": "sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.8.tgz", + "integrity": "sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", + "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + } + }, + "@babel/helper-environment-visitor": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", + "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "dev": true, + "requires": { + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-function-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", + "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", + "dev": true, + "requires": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", + "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", + "dev": true, + "requires": { + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", + "dev": true, + "requires": { + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" + } + }, + "@babel/helper-module-imports": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "dev": true, + "requires": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-module-transforms": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.9.tgz", + "integrity": "sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "dev": true, + "requires": { + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", + "dev": true + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", + "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-wrap-function": "^7.24.7" + } + }, + "@babel/helper-replace-supers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", + "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7" + } + }, + "@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dev": true, + "requires": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "dev": true, + "requires": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "dev": true, + "requires": { + "@babel/types": "^7.24.7" + } + }, + "@babel/helper-string-parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", + "dev": true + }, + "@babel/helper-wrap-function": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", + "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/helpers": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.8.tgz", + "integrity": "sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==", + "dev": true, + "requires": { + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.8" + } + }, + "@babel/highlight": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "dependencies": { + "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" + } + }, + "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 + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "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" + } + } + } + }, + "@babel/parser": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.8.tgz", + "integrity": "sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==", + "dev": true + }, + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", + "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", + "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" + } + }, + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", + "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "requires": {} + }, + "@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-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@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-assertions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-syntax-import-attributes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@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-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-async-generator-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz", + "integrity": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", + "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-class-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-class-static-block": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.8.tgz", + "integrity": "sha512-VXy91c47uujj758ud9wx+OMgheXm4qJfyhj1P18YvlrQkNOSrwsteHk+EFS3OMGfhMhpZa0A+81eE7G4QC+3CA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz", + "integrity": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.8" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-dynamic-import": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-export-namespace-from": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", + "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", + "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-json-strings": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", + "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-transform-numeric-separator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-transform-object-rest-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", + "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.7" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" + } + }, + "@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-transform-optional-chaining": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz", + "integrity": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", + "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-private-methods": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-private-property-in-object": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "regenerator-transform": "^0.15.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.7.tgz", + "integrity": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz", + "integrity": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.8" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/plugin-transform-unicode-sets-regex": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" + } + }, + "@babel/preset-env": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.8.tgz", + "integrity": "sha512-vObvMZB6hNWuDxhSaEPTKCwcqkAIuDtE+bQGn4XMXne1DSLzFVY8Vmj1bm+mUQXYNN8NmaQEO+r8MMbzPr1jBQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.24.8", + "@babel/helper-compilation-targets": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-validator-option": "^7.24.8", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@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-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.24.7", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.24.7", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.24.8", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.8", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.24.7", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.8", + "@babel/plugin-transform-modules-systemjs": "^7.24.7", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.8", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.8", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.37.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", + "dev": true + }, + "@babel/runtime": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.8.tgz", + "integrity": "sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@babel/template": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", + "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7" + } + }, + "@babel/traverse": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.8.tgz", + "integrity": "sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.8", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/parser": "^7.24.8", + "@babel/types": "^7.24.8", + "debug": "^4.3.1", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.24.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.9.tgz", + "integrity": "sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", + "to-fast-properties": "^2.0.0" + } + }, + "@discoveryjs/json-ext": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz", + "integrity": "sha512-Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g==", + "dev": true + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + } + } + }, + "@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "dev": true + }, + "@eslint/config-array": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.17.0.tgz", + "integrity": "sha512-A68TBu6/1mHHuc5YJL0U0VVeGNiklLAL6rRmhTCP2B5XjWLMnrX+HkO+IAXyHvks5cyyY1jjK5ITPQ1HGS2EVA==", + "dev": true, + "requires": { + "@eslint/object-schema": "^2.1.4", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + } + }, + "@eslint/eslintrc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true + } + } + }, + "@eslint/js": { + "version": "9.7.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.7.0.tgz", + "integrity": "sha512-ChuWDQenef8OSFnvuxv0TCVxEwmu3+hPNKvM9B34qpM0rDRbjL8t5QkQeHHeAfsKQjuH9wS82WeCi1J/owatng==", + "dev": true + }, + "@eslint/object-schema": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "dev": true + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", + "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", + "dev": true + }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true + }, + "@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "requires": { + "eslint-scope": "5.1.1" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, + "@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "peer": true + }, + "@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true + }, + "@types/eslint": { + "version": "8.56.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", + "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "@types/lodash": { + "version": "4.17.7", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz", + "integrity": "sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==" + }, + "@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "requires": { + "@types/lodash": "*" + } + }, + "@types/node": { + "version": "20.14.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.11.tgz", + "integrity": "sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } + }, + "@vue/reactivity": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.5.tgz", + "integrity": "sha512-1tdfLmNjWG6t/CsPldh+foumYFo3cpyCHgBYQ34ylaMsJ+SNHQ1kApMIa8jN+i593zQuaw3AdWH0nJTARzCFhg==", + "requires": { + "@vue/shared": "3.1.5" + } + }, + "@vue/shared": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz", + "integrity": "sha512-oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA==" + }, + "@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "dev": true, + "requires": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "dev": true + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "dev": true, + "requires": {} + }, + "@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "dev": true, + "requires": {} + }, + "@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "dev": true, + "requires": {} + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "dev": true + }, + "acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "dev": true, + "requires": {} + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "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" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "requires": { + "ajv": "^8.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "alpinejs": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.14.1.tgz", + "integrity": "sha512-ICar8UsnRZAYvv/fCNfNeKMXNoXGUfwHrjx7LqXd08zIP95G2d9bAOuaL97re+1mgt/HojqHsfdOLo/A5LuWgQ==", + "requires": { + "@vue/reactivity": "~3.1.1" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "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.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "axios": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", + "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", + "requires": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "babel-loader": { + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "dev": true, + "requires": { + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" + }, + "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + } + } + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.2", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "dev": true, + "requires": { + "@babel/helper-define-polyfill-provider": "^0.6.2" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bootstrap": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.3.tgz", + "integrity": "sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==", + "requires": {} + }, + "bootstrap-icons": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.11.3.tgz", + "integrity": "sha512-+3lpHrCw/it2/7lBL15VR0HEumaBss0+f/Lb6ZvHISn1mlK83jjFpooTLsMWbIjJMDjDjOExMsTxnXSIT4k4ww==" + }, + "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.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "requires": { + "fill-range": "^7.1.1" + } + }, + "browserslist": { + "version": "4.23.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz", + "integrity": "sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001640", + "electron-to-chromium": "^1.4.820", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.1.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "can-use-dom": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", + "integrity": "sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo=" + }, + "caniuse-lite": { + "version": "1.0.30001642", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001642.tgz", + "integrity": "sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==", + "dev": true + }, + "chalk": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", + "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.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 + }, + "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" + } + } + } + }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.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 + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "copy-webpack-plugin": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-12.0.2.tgz", + "integrity": "sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==", + "dev": true, + "requires": { + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.1", + "globby": "^14.0.0", + "normalize-path": "^3.0.0", + "schema-utils": "^4.2.0", + "serialize-javascript": "^6.0.2" + }, + "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + } + } + }, + "core-js-compat": { + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "dev": true, + "requires": { + "browserslist": "^4.23.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" + } + }, + "css-loader": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz", + "integrity": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + } + }, + "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 + }, + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.831", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.831.tgz", + "integrity": "sha512-6cKy9msoQGWhBF30n6y5ck80BdunKdwMRugM1lr74DMMXhjDRxSwMvrD1ncPP+n1PjF+KKmZZydvEF29skNZ1Q==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "enhanced-resolve": { + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", + "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "envinfo": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.13.0.tgz", + "integrity": "sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==", + "dev": true + }, + "es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "dev": true + }, + "escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint": { + "version": "9.7.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.7.0.tgz", + "integrity": "sha512-FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.11.0", + "@eslint/config-array": "^0.17.0", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.7.0", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.0", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.0.2", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.1.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "dependencies": { + "eslint-scope": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.2.tgz", + "integrity": "sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "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" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "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-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" + } + } + } + }, + "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-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + }, + "espree": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", + "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", + "dev": true, + "requires": { + "acorn": "^8.12.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true + } + } + }, + "esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "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 + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "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-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "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": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fast-uri": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", + "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", + "dev": true + }, + "fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "requires": { + "flat-cache": "^4.0.0" + } + }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", + "dev": true, + "requires": { + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" + }, + "dependencies": { + "find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "requires": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + } + }, + "locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "requires": { + "p-locate": "^6.0.0" + } + }, + "p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "requires": { + "yocto-queue": "^1.0.0" + } + }, + "p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "requires": { + "p-limit": "^4.0.0" + } + }, + "path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true + }, + "pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "dev": true, + "requires": { + "find-up": "^6.3.0" + } + }, + "yocto-queue": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", + "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" + } + }, + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true + }, + "flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "requires": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + } + }, + "flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==" + }, + "foreground-child": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", + "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + } + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "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 + }, + "glob": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz", + "integrity": "sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "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 + }, + "globby": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", + "dev": true, + "requires": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "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 + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "requires": {} + }, + "ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true + }, + "immutable": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", + "integrity": "sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "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 + }, + "interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "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" + } + }, + "is-core-module": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz", + "integrity": "sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==", + "dev": true, + "requires": { + "hasown": "^2.0.2" + } + }, + "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": "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 + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "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-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "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" + } + }, + "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 + }, + "jackspeak": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz", + "integrity": "sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.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": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "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-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 + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, + "just-clone": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/just-clone/-/just-clone-6.2.0.tgz", + "integrity": "sha512-1IynUYEc/HAwxhi3WDpIpxJbZpMCvvrrmZVqvj9EhpvbH8lls7HhdhiByjL7DkAaWlLIzpC0Xc/VPvy/UxLNjA==" + }, + "keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "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 + }, + "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" + } + }, + "loader-runner": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz", + "integrity": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==", + "dev": true + }, + "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.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "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 + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "dev": true, + "requires": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + } + }, + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz", + "integrity": "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==" + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz", + "integrity": "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==", + "requires": { + "mime-db": "1.48.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "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 + }, + "nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true + }, + "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 + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node-releases": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.17.tgz", + "integrity": "sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==", + "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 + }, + "on-change": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/on-change/-/on-change-5.0.1.tgz", + "integrity": "sha512-n7THCP7RkyReRSLkJb8kUWoNsxUIBxTkIp3JKno+sEz6o/9AJ3w3P9fzQkITEkMwyTKJjZciF3v/pVoouxZZMg==" + }, + "optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "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.5" + } + }, + "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": "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" + }, + "dependencies": { + "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-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 + }, + "package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", + "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" + } + }, + "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-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.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "dev": true, + "requires": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "dependencies": { + "lru-cache": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.0.tgz", + "integrity": "sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==", + "dev": true + } + } + }, + "path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true + }, + "picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "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" + } + }, + "postcss": { + "version": "8.4.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz", + "integrity": "sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==", + "dev": true, + "requires": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + } + }, + "postcss-modules-extract-imports": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", + "dev": true, + "requires": {} + }, + "postcss-modules-local-by-default": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-selector-parser": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz", + "integrity": "sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "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 + }, + "proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "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 + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "requires": { + "resolve": "^1.20.0" + } + }, + "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": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dev": true, + "requires": { + "regenerate": "^1.4.2" + } + }, + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dev": true, + "requires": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + } + }, + "regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "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": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true + } + } + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "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 + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "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 + }, + "sass": { + "version": "1.77.8", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz", + "integrity": "sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + } + }, + "sass-loader": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.2.1.tgz", + "integrity": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==", + "dev": true, + "requires": { + "neo-async": "^2.6.2" + } + }, + "schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true + }, + "serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "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 + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, + "simplebar": { + "version": "6.2.7", + "resolved": "https://registry.npmjs.org/simplebar/-/simplebar-6.2.7.tgz", + "integrity": "sha512-IdD6HwZLz4f83lG0yN5r/3Mts4qR+pKAc9IjVdtJ96Ow6IqSA+jG2PlniQ710XUygal/mOA774IgAvcoirUP4g==", + "requires": { + "can-use-dom": "^0.1.0", + "simplebar-core": "^1.2.6" + } + }, + "simplebar-core": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/simplebar-core/-/simplebar-core-1.2.6.tgz", + "integrity": "sha512-H5NYU+O+uvqOH5VXw3+lgoc1vTI6jL8LOZJsw4xgRpV7uIPjRpmLPdz0TrouxwKHBhpVLzVIlyKhaRLelIThMw==", + "requires": { + "@types/lodash-es": "^4.17.6", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21" + } + }, + "slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "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 + }, + "source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + } + } + }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "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 + } + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "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 + }, + "style-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-4.0.0.tgz", + "integrity": "sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==", + "dev": true, + "requires": {} + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true + }, + "terser": { + "version": "5.31.3", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.3.tgz", + "integrity": "sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==", + "dev": true, + "requires": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + } + }, + "terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + } + }, + "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 + }, + "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-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" + } + }, + "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" + } + }, + "undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true + }, + "unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "dev": true, + "requires": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "watchpack": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", + "dev": true, + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "webpack": { + "version": "5.93.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.93.0.tgz", + "integrity": "sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==", + "dev": true, + "requires": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + } + }, + "webpack-cli": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "dev": true, + "requires": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "dependencies": { + "colorette": { + "version": "2.0.16", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz", + "integrity": "sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==", + "dev": true + }, + "commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true + }, + "webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + } + } + } + }, + "webpack-merge": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", + "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.1" + } + }, + "webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true + }, + "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" + } + }, + "wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + } + } + }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "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 + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + } + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "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 + } + } +} diff --git a/Props/package.json b/Props/package.json new file mode 100644 index 0000000..6ac9330 --- /dev/null +++ b/Props/package.json @@ -0,0 +1,39 @@ +{ + "private": true, + "scripts": { + "build": "webpack --config webpack.prod.js", + "build:dev": "webpack --config webpack.dev.js", + "build:prod": "webpack --config webpack.prod.js", + "postinstall": "bash ../scripts/clear_webpack_cache.sh" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "@babel/core": "^7.24.9", + "@babel/eslint-parser": "^7.24.8", + "@babel/plugin-transform-runtime": "^7.24.7", + "@babel/preset-env": "^7.24.8", + "babel-loader": "^9.1.3", + "copy-webpack-plugin": "^12.0.2", + "css-loader": "^7.1.2", + "eslint": "^9.7.0", + "glob": "^11.0.0", + "sass": "^1.77.8", + "sass-loader": "^14.2.1", + "style-loader": "^4.0.0", + "webpack": "^5.93.0", + "webpack-cli": "^5.1.4", + "webpack-merge": "^6.0.1" + }, + "dependencies": { + "@babel/runtime": "^7.24.8", + "alpinejs": "^3.14.1", + "axios": "^1.7.2", + "bootstrap": "^5.3.3", + "bootstrap-icons": "^1.11.3", + "just-clone": "^6.2.0", + "on-change": "^5.0.1", + "simplebar": "^6.2.7" + } +} diff --git a/Props/webpack.common.js b/Props/webpack.common.js new file mode 100644 index 0000000..c5412cc --- /dev/null +++ b/Props/webpack.common.js @@ -0,0 +1,82 @@ +const CopyPlugin = require("copy-webpack-plugin"); +const { glob } = require("glob"); +const path = require("path"); + +let config = { + entry: glob.sync(path.resolve("./assets/js/specific/*.js")).reduce( + (obj, elem) => { + let name = elem.substr(path.resolve("./assets/js/").length); + name = name.substring(0, name.length - path.extname(name).length); + obj[name] = elem; + return obj; + }, + { + site: [ + path.resolve("./assets/js/site.js"), + path.resolve("./assets/js/dependencies.js"), + path.resolve("./assets/styles/site.scss"), + path.resolve("./assets/styles/dependencies.css") + ], + } + ), + output: { + filename: "[name].js", + path: path.resolve("./wwwroot/js"), + clean: true, + }, + module: { + rules: [ + { + test: /\.m?js$/, + exclude: /(node_modules|bower_components)/, + use: { + loader: "babel-loader", + options: { + presets: ["@babel/preset-env"], + plugins: ["@babel/plugin-transform-runtime"] + } + } + }, + { + test: /\.s[ac]ss$/i, + use: [ + "style-loader", + "css-loader", + "sass-loader", + ], + }, + { + test: /\.css$/i, + use: ["style-loader", "css-loader"], + }, + { + test: /\.(png|svg|jpg|jpeg|gif)$/i, + type: "asset/resource", + }, + { + test: /\.(woff|woff2|eot|ttf|otf)$/i, + type: "asset/resource", + }, + ] + }, + resolve: { + alias: { + "~": path.resolve("./"), + }, + }, + plugins: [ + new CopyPlugin({ + patterns: [ + { + from: path.resolve("./assets/images"), to: path.resolve("./wwwroot/images"), + } + ], + }) + ], + performance: { + maxEntrypointSize: 1048576, + maxAssetSize: 1048576 + }, +}; + +module.exports = config; diff --git a/Props/webpack.dev.js b/Props/webpack.dev.js new file mode 100644 index 0000000..388598e --- /dev/null +++ b/Props/webpack.dev.js @@ -0,0 +1,26 @@ +const { merge } = require("webpack-merge"); +const common = require("./webpack.common"); + +let config = { + mode: "development", + devtool: "eval-cheap-module-source-map", + output: { + pathinfo: false, + }, + optimization: { + removeAvailableModules: false, + removeEmptyChunks: false, + mergeDuplicateChunks: false, + providedExports: false, + splitChunks: false, + innerGraph: false, + }, + cache: { + type: "filesystem", + buildDependencies: { + config: [__filename], + } + } +}; + +module.exports = merge(common, config); diff --git a/Props/webpack.prod.js b/Props/webpack.prod.js new file mode 100644 index 0000000..a1c2c71 --- /dev/null +++ b/Props/webpack.prod.js @@ -0,0 +1,14 @@ +const { merge } = require("webpack-merge"); +const common = require("./webpack.common"); + +let config = { + mode: "production", + devtool: "nosources-source-map", + optimization: { + mangleExports: "size", + moduleIds: "size", + chunkIds: "size", + } +}; + +module.exports = merge(common, config); diff --git a/README.md b/README.md index 4e1af21..d94f838 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# Project Online Retail Experience +# Props -A project to help the project component shopping experience. \ No newline at end of file +Props is a community driven website meant to help with organizing your online component shopping experience. Create project component lists, search across multiple commonly used online retail stores and share your projects with rest of the community! diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..9e43cf8 --- /dev/null +++ b/environment.yml @@ -0,0 +1,9 @@ +name: props +channels: + - conda-forge +dependencies: + - dotnet-sdk=8 + - nodejs=20 + - icu + - tar + - zip \ No newline at end of file diff --git a/props.sln b/props.sln new file mode 100644 index 0000000..a5b78d7 --- /dev/null +++ b/props.sln @@ -0,0 +1,53 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Props.Tests", "Props.Tests\Props.Tests.csproj", "{FB728827-A47B-42C1-8DB4-8AD95566E827}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Props", "Props\Props.csproj", "{97CDC447-2FB7-448C-86E9-301BE1F04BE7}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Props.Shop", "Props.Shop", "{0A2915DE-91DD-44AC-855D-059D45CEA9FE}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Props.Shop.Adafruit.Tests", "Props.Shop\Adafruit.Tests\Props.Shop.Adafruit.Tests.csproj", "{334B69F3-3707-4D45-97D8-13D37B19ABEC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Props.Shop.Adafruit", "Props.Shop\Adafruit\Props.Shop.Adafruit.csproj", "{528D0B67-B4D0-4B56-8375-D004E192E712}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Props.Shop.Framework", "Props.Shop\Framework\Props.Shop.Framework.csproj", "{6D976097-07DB-476C-80D4-EA24A407D3E3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FB728827-A47B-42C1-8DB4-8AD95566E827}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FB728827-A47B-42C1-8DB4-8AD95566E827}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FB728827-A47B-42C1-8DB4-8AD95566E827}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FB728827-A47B-42C1-8DB4-8AD95566E827}.Release|Any CPU.Build.0 = Release|Any CPU + {97CDC447-2FB7-448C-86E9-301BE1F04BE7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {97CDC447-2FB7-448C-86E9-301BE1F04BE7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {97CDC447-2FB7-448C-86E9-301BE1F04BE7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {97CDC447-2FB7-448C-86E9-301BE1F04BE7}.Release|Any CPU.Build.0 = Release|Any CPU + {334B69F3-3707-4D45-97D8-13D37B19ABEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {334B69F3-3707-4D45-97D8-13D37B19ABEC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {334B69F3-3707-4D45-97D8-13D37B19ABEC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {334B69F3-3707-4D45-97D8-13D37B19ABEC}.Release|Any CPU.Build.0 = Release|Any CPU + {528D0B67-B4D0-4B56-8375-D004E192E712}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {528D0B67-B4D0-4B56-8375-D004E192E712}.Debug|Any CPU.Build.0 = Debug|Any CPU + {528D0B67-B4D0-4B56-8375-D004E192E712}.Release|Any CPU.ActiveCfg = Release|Any CPU + {528D0B67-B4D0-4B56-8375-D004E192E712}.Release|Any CPU.Build.0 = Release|Any CPU + {6D976097-07DB-476C-80D4-EA24A407D3E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6D976097-07DB-476C-80D4-EA24A407D3E3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6D976097-07DB-476C-80D4-EA24A407D3E3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6D976097-07DB-476C-80D4-EA24A407D3E3}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {334B69F3-3707-4D45-97D8-13D37B19ABEC} = {0A2915DE-91DD-44AC-855D-059D45CEA9FE} + {528D0B67-B4D0-4B56-8375-D004E192E712} = {0A2915DE-91DD-44AC-855D-059D45CEA9FE} + {6D976097-07DB-476C-80D4-EA24A407D3E3} = {0A2915DE-91DD-44AC-855D-059D45CEA9FE} + EndGlobalSection +EndGlobal diff --git a/scripts/clear_webpack_cache.py b/scripts/clear_webpack_cache.py new file mode 100644 index 0000000..0c5f501 --- /dev/null +++ b/scripts/clear_webpack_cache.py @@ -0,0 +1,14 @@ +import os +import shutil + +CACHE_DIR = "./Props/node_modules/.cache/webpack" + + +def clear(): + os.chdir(os.path.dirname(os.path.realpath(__file__))) + os.chdir("..") + shutil.rmtree(CACHE_DIR, ignore_errors=True) + + +if __name__ == "__main__": + clear() diff --git a/scripts/clear_webpack_cache.sh b/scripts/clear_webpack_cache.sh new file mode 100644 index 0000000..86d794b --- /dev/null +++ b/scripts/clear_webpack_cache.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +rm -rf ./Props/node_modules/.cache/webpack \ No newline at end of file diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100644 index 0000000..982666a --- /dev/null +++ b/scripts/install.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +# Installing .NET environment +# According to https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script#examples +# and https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install +curl -L -o- https://dot.net/v1/dotnet-install.sh | bash -s -- --channel 8.0 +echo export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 >> ~/.bashrc +echo 'export DOTNET_ROOT=$HOME/.dotnet' >> ~/.bashrc +echo 'export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools' >> ~/.bashrc +# Installing Node Version Manager +# According to https://github.com/Schniz/fnm +curl -fsSL https://fnm.vercel.app/install | bash +''' +sh '''#!/bin/bash +fnm install 20.15.1 +fnm use default +# Restore all projects +dotnet restore Props/Props.csproj +dotnet restore Props.Tests/Props.Tests.csproj +dotnet restore Props.Shop/Props.Shop.sln +npm install --prefix ./Props \ No newline at end of file diff --git a/scripts/load_shop_modules.py b/scripts/load_shop_modules.py new file mode 100644 index 0000000..7a2877d --- /dev/null +++ b/scripts/load_shop_modules.py @@ -0,0 +1,33 @@ + +from glob import glob +import os +import shutil + + +PROP_SHOP_MODULES_DIR = "./Props.Shop/" +PROPS_SHOP_MODULES_DST = "./Props/shops/." +NET_VER = "net7.0" + +SHOP_MODULE_GLOB = "output/shop-modules/**/*.{ext}" +EXTS = ["deps.json", "dll"] + + +def load(): + os.chdir(os.path.dirname(os.path.realpath(__file__))) + os.chdir("..") + if (os.path.exists(os.path.dirname(PROPS_SHOP_MODULES_DST))): + if (not os.path.isdir(os.path.dirname(PROPS_SHOP_MODULES_DST))): + os.remove(os.path.dirname(PROPS_SHOP_MODULES_DST)) + else: + shutil.rmtree(os.path.dirname(PROPS_SHOP_MODULES_DST)) + + os.makedirs(os.path.dirname(PROPS_SHOP_MODULES_DST)) + for ext in EXTS: + results = glob(os.path.join(PROP_SHOP_MODULES_DIR, + SHOP_MODULE_GLOB.format(net_ver=NET_VER, ext=ext))) + for result in results: + shutil.copy(result, PROPS_SHOP_MODULES_DST) + + +if __name__ == "__main__": + load() diff --git a/scripts/publish_props.sh b/scripts/publish_props.sh new file mode 100644 index 0000000..2dbefbc --- /dev/null +++ b/scripts/publish_props.sh @@ -0,0 +1,3 @@ +#!/bin/bash +dotnet publish --configuration Release --output output/props/props-linux-x64 --runtime linux-x64 --self-contained Props +dotnet publish --configuration Release --output output/props/props-win-x64 --runtime win-x64 --self-contained Props \ No newline at end of file diff --git a/scripts/publish_props_shops.sh b/scripts/publish_props_shops.sh new file mode 100644 index 0000000..80fe099 --- /dev/null +++ b/scripts/publish_props_shops.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +dotnet publish --configuration Release --output output/shop-modules Props.Shop/Props.Shop.sln \ No newline at end of file diff --git a/scripts/reset_db.py b/scripts/reset_db.py new file mode 100644 index 0000000..0654458 --- /dev/null +++ b/scripts/reset_db.py @@ -0,0 +1,28 @@ +import os +import shutil + + +DB_DIR = "./Props" +DATA_DIR = "Data" +DB_MIGRATE_CMD = "dotnet ef migrations add InitialCreate -o {0}" +DB_UPDATE_CMD = "dotnet ef database update" + +os.chdir(os.path.dirname(os.path.realpath(__file__))) +os.chdir("..") +os.chdir(DB_DIR) +print("Working in: " + os.getcwd()) + +migrationsDir = os.path.join(DATA_DIR, "Migrations") + +print("Deleting current migrations directory if it exists.") +shutil.rmtree(migrationsDir, ignore_errors=True) + +print("Deleting old app.db if it exists.") +if os.path.exists("app.db"): + os.remove("app.db") + +print("Creating migration.") +os.system(DB_MIGRATE_CMD.format(migrationsDir)) + +print("Updating database.") +os.system(DB_UPDATE_CMD) diff --git a/scripts/test_props.sh b/scripts/test_props.sh new file mode 100644 index 0000000..5ba79cb --- /dev/null +++ b/scripts/test_props.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +dotnet test --logger xunit --no-restore Props.Tests \ No newline at end of file diff --git a/scripts/test_props_shops.sh b/scripts/test_props_shops.sh new file mode 100644 index 0000000..c24d051 --- /dev/null +++ b/scripts/test_props_shops.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +dotnet test --logger xunit --no-restore Props.Shop/Props.Shop.sln \ No newline at end of file