Web scraping

Using web scraping to get data from websites

Author

Thomas H. Simm

Overview

Photo by Ilya Pavlov on Unsplash

“Web scraping, web harvesting, or web data extraction is data scraping used for extracting data from websites.” from https://en.wikipedia.org/wiki/Web_scraping

There are legal issues around web scraping, so be careful “The legality of web scraping varies across the world. In general, web scraping may be against the terms of use of some websites, but the enforceability of these terms is unclear.”

The first step is to go to a website and add /robots.txt onto the end of the web address to see what they allow. Most will disallow most areas.

I am only doing this for research and learning purposes and the information is all available freely.

Indeed, BeautifulSoup and Pandas

Photo by Clem Onojeghuo on Unsplash

Indeed has a wealth of job information across the UK and beyond for virtually every job. So whether you are looking for work or examining economic activity, it is a good resource. But how do you get the data from the website into a form you can work with?

            By web scraping Indeed 

Examine the website

The first step in web scraping is to examine the website. Here I’ll use Google Chrome, but the same capabilities are in most browsers. Let’s open indeed and do a search for jobs in an area. The output is below

When searching for “electrician mate” in the location Swansea we get the url https://uk.indeed.com/jobs?q=electrician+mate&l=Swansea%2C+Swansea.

Hence, in Python we can specify the url as follows, this allows us to change for job type and location later if we want:

location="Swansea%2C+Swansea"
jobtype="electrician+mate"

URL="https://uk.indeed.com/jobs?q="+jobtype+"&l="+location
URL
'https://uk.indeed.com/jobs?q=electrician+mate&l=Swansea%2C+Swansea'

Next open developer tools on Chrome (Ctrl+Shift+I or More Tools-> developer tools)

Then click on the icon circled in the image below to examine the website. Placing the cursor over the website reveals the html structure. When this is done on one of the job blocks we can see that it is identified as:

<div class="job_seen_beacon">
OR
<a id="..........>

Examining other blocks shows this is repeated for them all. So we can get the job blocks!

We’ll return to this later…

BeautifulSoup

Beautiful soup is a Python library for pulling data out of HTML and XML files. Something similar can be done with pandas, but for this situation I’ll use the soup.

#import the libraries
import requests
import bs4
from bs4 import BeautifulSoup

To use: the libraries are loaded, then get get the page, then pass to Beautiful soup.

Soup can be viewed. But it is still a mess so we’ll now use what we learned about the job tabs and extract these.

#collapse-output
#Using beautiful soup-get page
page = requests.get(URL)
#get soup
soup = BeautifulSoup(page.text, "html.parser")
soup
<!DOCTYPE html>
<html><head><meta content="website" property="og:type"/><meta content="Matmatch" name="apple-mobile-web-app-title"/><meta content="Matmatch" name="application-name"/><link href="/static/images/favicon/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link href="/static/images/favicon/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="/static/images/favicon/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180"/><link href="/static/images/favicon/manifest.json" rel="manifest"/><link color="#526294}" href="/static/images/favicon/safari-pinned-tab.svg" rel="mask-icon"/><link href="/static/images/favicon/favicon.ico?v2=pgrv6keokB" rel="shortcut icon"/><script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script><script>WebFont.load({custom: {families: ["Open Sans"],urls: ["/static/fonts/fonts.css"]}});</script><script type="application/ld+json">{
              "@context": "http://schema.org",
              "@type": "Corporation",
              "name": "Matmatch",
              "url": "https://matmatch.com",
              "logo": "https://matmatch.com/blog/wp-content/uploads/2019/01/matmatch_logo_stacked_large.png",
              "contactPoint": {
              "@type": "ContactPoint",
              "telephone": "+49089262075200",
              "contactType": "customer service",
              "availableLanguage": ["English","Spanish","German"]
            },
              "sameAs": [
              "https://www.facebook.com/MatmatchGmbH/",
              "https://twitter.com/matmatchgmbh",
              "https://www.youtube.com/channel/UCUaSuhkac7eIGDt_oslErqg",
              "https://www.linkedin.com/company/matmatch/"
              ]
            }</script><meta charset="utf-8"/><meta content="initial-scale=1.0, width=device-width" name="viewport"/><meta content="/static/images/og-homepage.png" property="og:image"/><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
          new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
          j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
          'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
        })(window,document,'script','dataLayer','GTM-PV6RPFJ');</script><script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
                (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
                m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
            })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
            ga('create', 'UA-85033665-5', { 'cookieName': '_ga', 'cookieExpires': 0, storeGac: false });
            ga('require', 'GTM-KQK3NFF');
            ga('set', 'anonymizeIp', true);
          </script><title>Advanced Search - Matmatch</title><meta content="6" name="next-head-count"/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script defer="" src="/_next/static/chunks/webpack-7f7ce7d3b611b805.js"></script><script defer="" src="/_next/static/chunks/framework-00d20ba7ea4a049e.js"></script><script defer="" src="/_next/static/chunks/main-e7e93353c7fa0f3d.js"></script><script defer="" src="/_next/static/chunks/pages/_app-d283c11d990f5118.js"></script><script defer="" src="/_next/static/chunks/4287-f7e14c54c16c4711.js"></script><script defer="" src="/_next/static/chunks/8423-5df76c682adf5f31.js"></script><script defer="" src="/_next/static/chunks/5345-398cd87d7cf78279.js"></script><script defer="" src="/_next/static/chunks/3789-912517a4e13b4a43.js"></script><script defer="" src="/_next/static/chunks/pages/advanced-search-2c198b26c959d4ab.js"></script><script defer="" src="/_next/static/d4287122/_buildManifest.js"></script><script defer="" src="/_next/static/d4287122/_ssgManifest.js"></script><script defer="" src="/_next/static/d4287122/_middlewareManifest.js"></script><style data-styled="" data-styled-version="5.3.3">html{line-height:1.15;-webkit-text-size-adjust:100%;}/*!sc*/
body{margin:0;}/*!sc*/
main{display:block;}/*!sc*/
h1{font-size:2em;margin:0.67em 0;}/*!sc*/
hr{box-sizing:content-box;height:0;overflow:visible;}/*!sc*/
pre{font-family:monospace,monospace;font-size:1em;}/*!sc*/
a{background-color:transparent;}/*!sc*/
abbr[title]{border-bottom:none;-webkit-text-decoration:underline;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;}/*!sc*/
b,strong{font-weight:bolder;}/*!sc*/
code,kbd,samp{font-family:monospace,monospace;font-size:1em;}/*!sc*/
small{font-size:80%;}/*!sc*/
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}/*!sc*/
sub{bottom:-0.25em;}/*!sc*/
sup{top:-0.5em;}/*!sc*/
img{border-style:none;}/*!sc*/
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}/*!sc*/
button,input{overflow:visible;}/*!sc*/
button,select{text-transform:none;}/*!sc*/
button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button;}/*!sc*/
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0;}/*!sc*/
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText;}/*!sc*/
fieldset{padding:0.35em 0.75em 0.625em;}/*!sc*/
legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}/*!sc*/
progress{vertical-align:baseline;}/*!sc*/
textarea{overflow:auto;}/*!sc*/
[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0;}/*!sc*/
[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto;}/*!sc*/
[type="search"]{-webkit-appearance:textfield;outline-offset:-2px;}/*!sc*/
[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}/*!sc*/
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}/*!sc*/
details{display:block;}/*!sc*/
summary{display:list-item;}/*!sc*/
template{display:none;}/*!sc*/
[hidden]{display:none;}/*!sc*/
data-styled.g1[id="sc-global-ecVvVt1"]{content:"sc-global-ecVvVt1,"}/*!sc*/
.uluvW{margin:0;overflow:hidden;list-type:none;padding:0;}/*!sc*/
data-styled.g7[id="list__List-sc-7ainlj-0"]{content:"uluvW,"}/*!sc*/
.RbSSA{color :#fff;text-align:left;}/*!sc*/
.bzfZbQ{color :#fff;}/*!sc*/
.bzfZbQ:not(:last-child){margin-bottom:6px;}/*!sc*/
.cJazBI{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color :#fff;}/*!sc*/
.cJazBI:not(:last-child){margin-bottom:6px;}/*!sc*/
.gJZFKn{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color :#fff;}/*!sc*/
data-styled.g8[id="list__ListItem-sc-7ainlj-1"]{content:"RbSSA,bzfZbQ,cJazBI,gJZFKn,"}/*!sc*/
.ghQHoL{max-width:100%;margin:0;font-size :28px;font-weight :600;color:#3a4056;}/*!sc*/
.fEFHaQ{max-width:100%;margin:0;font-size :15px;color:#3a4056;margin-bottom:36px;}/*!sc*/
.fcGhiO{max-width:100%;margin:0;font-size :15px;color :#3880E5;display :inline-block;cursor :pointer;-webkit-text-decoration:underline;text-decoration:underline;margin-left:24px;}/*!sc*/
.hJBnMN{max-width:100%;margin:0;font-size :16px;color :#ffffff;cursor :pointer;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.hJBnMN:hover{color:#e0e0e0;}/*!sc*/
.kFbVgZ{max-width:100%;margin:0;font-size :15px;font-weight :600;color :white;margin:3.5999999999999996px;}/*!sc*/
.wmqFD{max-width:100%;margin:0;font-size :16px;font-weight :600;color :#526193;margin-bottom:12px;}/*!sc*/
.cJojhb{max-width:100%;margin:0;font-size :12px;color:#3a4056;text-align :center;margin-top:6px;}/*!sc*/
.dzDHxo{max-width:100%;margin:0;font-size :15px;color:#3a4056;}/*!sc*/
.dSdjdP{max-width:100%;margin:0;font-size :15px;color :#526193;}/*!sc*/
.ehJUxb{max-width:100%;margin:0;font-size :16px;color :#4f4f4f;white-space:nowrap;margin-right:12px;}/*!sc*/
.jLqxex{max-width:100%;margin:0;font-size :15px;font-weight :600;color :#526193;text-transform:uppercase;}/*!sc*/
.cgTHVD{max-width:100%;margin:0;font-size :13px;color :#333333;}/*!sc*/
.hjLFxX{max-width:100%;margin:0;font-size :13px;color:#3a4056;display :inline-block;margin-left:6px;}/*!sc*/
.ldWNpx{max-width:100%;margin:0;font-size :13px;font-weight :600;color :#3880E5;cursor :pointer;}/*!sc*/
.LLywI{max-width:100%;margin:0;font-size :13px;color :#333333;margin-bottom:6px;}/*!sc*/
.hjtwVq{max-width:100%;margin:0;font-size :16px;color :#333333;}/*!sc*/
.hLVIHw{max-width:100%;margin:0;font-size :15px;font-weight :600;color :#526193;margin-bottom:12px;}/*!sc*/
.KmEHA{max-width:100%;margin:0;font-size :13px;color :#333333;margin-left:6px;}/*!sc*/
.fWynpt{max-width:100%;margin:0;font-size :13px;color :#333333;display :inline-block;}/*!sc*/
.eUTBqM{max-width:100%;margin:0;font-size :16px;color :#ff8200;}/*!sc*/
.hMWWGw{max-width:100%;margin:0;font-size :16px;color :#828282;}/*!sc*/
.iidREl{max-width:100%;margin:0;font-size :13px;color :#828282;}/*!sc*/
.lolWkU{max-width:100%;margin:0;font-size :13px;color:#3a4056;display :inline-block;margin-right:6px;}/*!sc*/
.tenyk{max-width:100%;margin:0;font-size :20px;font-weight :600;color :#526193;}/*!sc*/
.GTisG{max-width:100%;margin:0;font-size :16px;color :#333333;display :inline-block;margin-left:12px;}/*!sc*/
data-styled.g10[id="text__Text-sc-f4nboj-0"]{content:"ghQHoL,fEFHaQ,fcGhiO,hJBnMN,kFbVgZ,wmqFD,cJojhb,dzDHxo,dSdjdP,ehJUxb,jLqxex,cgTHVD,hjLFxX,ldWNpx,LLywI,hjtwVq,hLVIHw,KmEHA,fWynpt,eUTBqM,hMWWGw,iidREl,lolWkU,tenyk,GTisG,"}/*!sc*/
.ipttFt{cursor:pointer;color:#03c7a7;display:block;margin:0 auto;}/*!sc*/
.ipttFt:hover{color:#02a187;-webkit-undefined;-ms-flex-undefined;undefined;}/*!sc*/
.eYFpTR{cursor:pointer;color:#03c7a7;}/*!sc*/
.eYFpTR:hover{-webkit-undefined;-ms-flex-undefined;undefined;}/*!sc*/
.eePTOF{cursor:pointer;color:#03c7a7;display:block;}/*!sc*/
.eePTOF:hover{color:#02a187;-webkit-undefined;-ms-flex-undefined;undefined;}/*!sc*/
.fpFFKD{cursor:pointer;color:#03c7a7;}/*!sc*/
.fpFFKD:hover{color:#02a187;-webkit-undefined;-ms-flex-undefined;undefined;}/*!sc*/
.QbWNQ{cursor:pointer;color:#3880E5;display:block;font-weight:600;}/*!sc*/
.QbWNQ:hover{-webkit-undefined;-ms-flex-undefined;undefined;}/*!sc*/
.dhcylR{cursor:pointer;color:#333333;font-size:13px;font-weight:600;}/*!sc*/
.dhcylR:hover{-webkit-undefined;-ms-flex-undefined;undefined;}/*!sc*/
.kdVFv{cursor:pointer;color:#333333;}/*!sc*/
.kdVFv:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g18[id="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0"]{content:"ipttFt,eYFpTR,eePTOF,fpFFKD,QbWNQ,dhcylR,kdVFv,"}/*!sc*/
.jkkDbK{background-position:center;background-repeat:no-repeat;background-color:transparent;background-image:url('/static/images/inlined/logo_inverted.svg');width:167px;height:37px;}/*!sc*/
.dOZIXC{background-position:center;background-repeat:no-repeat;background-color:transparent;background-image:url('/static/images/inlined/logo_inverted.svg');width:95px;height:22px;}/*!sc*/
data-styled.g20[id="styled-link-styles__ImageLinkStyles-sc-l1ctuc-2"]{content:"jkkDbK,dOZIXC,"}/*!sc*/
.lhTnpm{cursor:pointer;text-align:center;display:inline-block;padding:6px 12px;-webkit-transition:background-color 0.15s;transition:background-color 0.15s;border-radius:4px;padding:14.399999999999999px 18px;font-size:16px;font-weight:600;}/*!sc*/
.MSVaf{cursor:pointer;text-align:center;display:inline-block;padding:6px 12px;-webkit-transition:background-color 0.15s;transition:background-color 0.15s;border-radius:4px;}/*!sc*/
.kPiOHq{cursor:pointer;text-align:center;display:inline-block;padding:6px 12px;-webkit-transition:background-color 0.15s;transition:background-color 0.15s;width:100%;padding:18px 24px;font-size:20px;font-weight:600;}/*!sc*/
.NWGvI{cursor:pointer;text-align:center;display:inline-block;padding:6px 12px;-webkit-transition:background-color 0.15s;transition:background-color 0.15s;border-radius:4px;width:100%;}/*!sc*/
.eGHzTm{cursor:pointer;text-align:center;display:inline-block;padding:6px 12px;-webkit-transition:background-color 0.15s;transition:background-color 0.15s;border-radius:4px;opacity:0.7;pointer-events:none;background-repeat:no-repeat;background-size:12px;background-image:url("/static/images/icons/2.0/white/arrow-back.svg");padding:14.399999999999999px 18px;background-position:center;margin-right:24px;}/*!sc*/
.ljvJNw{cursor:pointer;text-align:center;display:inline-block;padding:6px 12px;-webkit-transition:background-color 0.15s;transition:background-color 0.15s;border-radius:4px;background-repeat:no-repeat;background-size:12px;background-image:url("/static/images/icons/2.0/white/arrow-forward.svg");padding:14.399999999999999px 18px;background-position:center;margin-left:24px;}/*!sc*/
data-styled.g29[id="button__BaseButton-sc-ekfcy0-0"]{content:"lhTnpm,MSVaf,kPiOHq,NWGvI,eGHzTm,ljvJNw,"}/*!sc*/
.nqeas{color:#ffffff;background-color:#3880E5;border:1px solid #4c8de8;}/*!sc*/
data-styled.g30[id="button__ButtonPrimary-sc-ekfcy0-1"]{content:"nqeas,"}/*!sc*/
.kTlrHY{color:#ffffff;border:1px solid #bdbdbd;background-color:#828282;}/*!sc*/
data-styled.g31[id="button__ButtonDefault-sc-ekfcy0-2"]{content:"kTlrHY,"}/*!sc*/
.juQzaQ{color:#ffffff;border:1px solid #ffd8af;background-color:#ff8200;}/*!sc*/
.juQzaQ:hover{background-color:#cc6900;}/*!sc*/
data-styled.g33[id="button__ButtonSpecial-sc-ekfcy0-4"]{content:"juQzaQ,"}/*!sc*/
.gKwwSj{color:#ffffff;border:1px solid #7cd16d;background-color:#67ac5b;}/*!sc*/
.gKwwSj:hover{background-color:#48A43F;}/*!sc*/
data-styled.g34[id="button__ButtonSuccess-sc-ekfcy0-5"]{content:"gKwwSj,"}/*!sc*/
.jUHcrU{display:inline-block;cursor:pointer;}/*!sc*/
.hrfsee{margin-bottom:24px;}/*!sc*/
.hrfsee:after{content:" ";display:block;height:0;clear:both;}/*!sc*/
.cdlmON:after{content:" ";display:block;height:0;clear:both;}/*!sc*/
.zDQjJ{margin-bottom:24px;}/*!sc*/
.kneKJ{text-align:center;}/*!sc*/
.kTmWRN{margin-left:24px;}/*!sc*/
.kqTmue{width :438px;}/*!sc*/
.UxvCa{margin-top:6px;margin-bottom:6px;}/*!sc*/
.bcLXBB{margin-bottom:6px;}/*!sc*/
.bRaHnE{margin-bottom:12px;}/*!sc*/
.dTGKOg{margin-left:12px;}/*!sc*/
.kXMRZj{max-width :1170px;margin :0 auto;}/*!sc*/
.eHEnyb{max-width :1200px;margin :0 auto;}/*!sc*/
data-styled.g38[id="wrappers__Wrapper-sc-14fw43j-0"]{content:"cJNByu,jUHcrU,hrfsee,cdlmON,zDQjJ,kneKJ,kTmWRN,kqTmue,UxvCa,bcLXBB,bRaHnE,dTGKOg,kXMRZj,eHEnyb,"}/*!sc*/
.hFcCJB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.gFqwTB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content :space-between;-ms-flex-pack:justify;justify-content :space-between;}/*!sc*/
.dMXLyl{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.cwHZQB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content :space-between;-ms-flex-pack:justify;justify-content :space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.cdLigN{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content :space-between;-ms-flex-pack:justify;justify-content :space-between;}/*!sc*/
data-styled.g41[id="wrappers__WrapperFlex-sc-14fw43j-3"]{content:"hFcCJB,gFqwTB,dMXLyl,cwHZQB,cdLigN,"}/*!sc*/
.hzZiwD{max-width:1400px;margin:0 auto;padding:36px;}/*!sc*/
@media (max-width:991.98px){.hzZiwD{width:100%;}}/*!sc*/
@media (max-width:767.98px){.hzZiwD{width:100%;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-height:0px;}}/*!sc*/
@media (max-width:575.98px){.hzZiwD{padding:0px;min-height:0px;}}/*!sc*/
data-styled.g42[id="wrappers__WrapperStaticContent-sc-14fw43j-4"]{content:"hzZiwD,"}/*!sc*/
.flfCwz{overflow:hidden;max-width:1400px;margin:0 auto;padding:36px;}/*!sc*/
@media (max-width:991.98px){.flfCwz{width:100%;}}/*!sc*/
@media (max-width:767.98px){.flfCwz{width:100%;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-height:0px;}}/*!sc*/
@media (max-width:575.98px){.flfCwz{padding:0px;min-height:0px;}}/*!sc*/
data-styled.g43[id="wrappers__WrapperStaticContentNoFlex-sc-14fw43j-5"]{content:"flfCwz,"}/*!sc*/
.prlvG{width:calc((100% - 42px) * 0.7);margin-right:0px;margin-left:42px;float:left;}/*!sc*/
@media (max-width:991.98px){.prlvG{margin-top:24px;margin-left:0;margin-right:0;width:100%;}}/*!sc*/
data-styled.g47[id="wrappers__WrapperMainContent-sc-14fw43j-9"]{content:"prlvG,"}/*!sc*/
.fUzxei{width:calc((100% - 42px) * 0.4);float:left;-webkit-transition:width 0.5s;transition:width 0.5s;}/*!sc*/
@media (max-width:991.98px){.fUzxei{width:100%;}}/*!sc*/
data-styled.g48[id="wrappers__WrapperSidebar-sc-14fw43j-10"]{content:"fUzxei,"}/*!sc*/
.ftzCdl{max-height:0px;overflow:hidden;-webkit-transition:max-height .2s;transition:max-height .2s;}/*!sc*/
data-styled.g50[id="wrappers__CollapseContentWrapper-sc-14fw43j-12"]{content:"ftzCdl,"}/*!sc*/
.ejKxFX{color:#ffffff;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;background:#ff8200;width:36px;height:18px;border-radius:12px;-webkit-text-decoration:none;text-decoration:none;font-size:12px;margin-left:3px;}/*!sc*/
data-styled.g52[id="badge__LinkBadge-sc-1kc0y45-0"]{content:"ejKxFX,"}/*!sc*/
.iIAlRS{width:25%;}/*!sc*/
@media (max-width:767.98px){.iIAlRS{float:left;width:50%;margin-top:24px;}}/*!sc*/
data-styled.g53[id="footer-list__FooterListWrapper-sc-17tjnty-0"]{content:"iIAlRS,"}/*!sc*/
.gFyZtw{margin-bottom:12px;}/*!sc*/
data-styled.g54[id="footer-list__FooterListHeading-sc-17tjnty-1"]{content:"gFyZtw,"}/*!sc*/
@media (max-width:767.98px){.jHUSlK{display:block;}}/*!sc*/
data-styled.g69[id="footer-copyright__FooterCopyrightWrapper-sc-p1jkef-0"]{content:"jHUSlK,"}/*!sc*/
.EMFJO{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:24px;width:24px;background-image:url("/static/images/icons/white/search.svg");}/*!sc*/
.gpNPvA{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:24px;width:24px;background-image:url("/static/images/icons/2.0/white/ios-world-outline.svg");}/*!sc*/
.bZBKhy{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:30px;width:30px;background-image:url("/static/images/icons/2.0/default/arrow-up.svg");}/*!sc*/
.cXnjPW{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:24px;width:30px;background-image:url("/static/images/icons/2.0/white/ios-search-strong.svg");}/*!sc*/
.eyhBpa{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:22px;width:22px;background-image:url("/static/images/icons/2.0/white/android-menu.svg");}/*!sc*/
.kbRKml{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:14px;width:14px;background-image:url("/static/images/icons/2.0/primary/ios-arrow-down.svg");margin-left:6px;}/*!sc*/
.iNazJp{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:12px;width:12px;background-image:url("/static/images/icons/2.0/primary/ios-arrow-down.svg");margin-left:6px;}/*!sc*/
.eiXgPa{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:10px;width:10px;background-image:url("/static/images/icons/2.0/white/plus.svg");margin-left:6px;}/*!sc*/
.kXkjMs{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:12px;width:12px;background-image:url("/static/images/icons/2.0/default/close.svg");margin-right:12px;}/*!sc*/
.kTando{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:unset;height:20px;width:20px;margin-right:12px;background-image:url("/static/images/icons/2.0/multicolor/default.svg");}/*!sc*/
.duJtpp{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:30px;width:30px;background-image:url("/static/images/icons/2.0/footer/social-linkedin.svg");}/*!sc*/
.UGQFe{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:30px;width:30px;background-image:url("/static/images/icons/2.0/footer/social-twitter.svg");}/*!sc*/
.bfOfuL{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:pointer;height:30px;width:30px;background-image:url("/static/images/icons/2.0/footer/social-facebook.svg");}/*!sc*/
.cnxXUV{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:default;height:16px;width:16px;background-image:url("/static/images/icons/2.0/footer/ios-telephone.svg");}/*!sc*/
.jLgsnQ{background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block;cursor:default;height:16px;width:16px;background-image:url("/static/images/icons/2.0/footer/ios-location.svg");}/*!sc*/
data-styled.g70[id="icon__Icon-sc-1230ehg-0"]{content:"EMFJO,gpNPvA,bZBKhy,cXnjPW,eyhBpa,kbRKml,iNazJp,eiXgPa,kXkjMs,kTando,duJtpp,UGQFe,bfOfuL,cnxXUV,jLgsnQ,"}/*!sc*/
.caVxgD{width:20px;height:20px;fill:#3880E5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:default;cursor:pointer;}/*!sc*/
.jWARuS{width:20px;height:20px;fill:#526193;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:default;}/*!sc*/
.fXOOJz{width:32px;height:32px;fill:#3880e5;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:default;}/*!sc*/
.haqEoE{width:14px;height:14px;fill:#333333;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:default;cursor:pointer;}/*!sc*/
.hrGMmp{width:12px;height:12px;fill:#4496ec;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:default;cursor:pointer;}/*!sc*/
.enTUov{width:28px;height:22px;fill:#4496ec;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:default;cursor:pointer;margin-left:9px;}/*!sc*/
data-styled.g71[id="icon__Svg-sc-1230ehg-1"]{content:"caVxgD,jWARuS,fXOOJz,haqEoE,hrGMmp,enTUov,"}/*!sc*/
@media (max-width:991.98px){.hwyVjw{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;margin-top:48px;}}/*!sc*/
@media (max-width:767.98px){.hwyVjw{width:100%;display:inline-block;margin-top:24px;}}/*!sc*/
data-styled.g76[id="footer-social-links__SocialLinksList-sc-1hjdthk-0"]{content:"hwyVjw,"}/*!sc*/
.jkNDpJ{display:inline-block;}/*!sc*/
.jkNDpJ:not(:first-child){margin-left:42px;}/*!sc*/
@media{.jkNDpJ:not(:first-child){margin-left:30px;}}/*!sc*/
data-styled.g77[id="footer-social-links__SocialLinksListItem-sc-1hjdthk-1"]{content:"jkNDpJ,"}/*!sc*/
.lcDCgL{width:25%;}/*!sc*/
@media (max-width:767.98px){.lcDCgL{width:100%;}}/*!sc*/
data-styled.g78[id="footer-matmatch-logo-and-gdpr__NameAndDescriptionWrapper-sc-1mbx1ll-0"]{content:"lcDCgL,"}/*!sc*/
.dLmbUA{border:none;height:1px;margin-top:24px;margin-bottom:24px;margin-top:12px;margin-bottom:12px;}/*!sc*/
.cVgbLf{border:none;height:1px;margin-top:24px;margin-bottom:24px;margin-top:12px;margin-left:36px;margin-right:36px;margin-bottom:12px;}/*!sc*/
data-styled.g79[id="separation-line__SeparationLine-sc-1gtqai2-0"]{content:"dLmbUA,cVgbLf,"}/*!sc*/
.kwnPiJ{color:#bdbdbd;background-color:#bdbdbd;}/*!sc*/
data-styled.g80[id="separation-line__SeparationLineDefault-sc-1gtqai2-1"]{content:"kwnPiJ,"}/*!sc*/
.fGzocz{width:100%;padding:0 12px;margin:0;}/*!sc*/
@media (min-width:768px){.fGzocz{padding-left:24px;padding-right:24px;}}/*!sc*/
@media (min-width:1170px){.fGzocz{max-width:1170px;margin-left:auto;margin-right:auto;}}/*!sc*/
data-styled.g84[id="static-page-wrappers__StaticPageContentWrapper-sc-fz58vx-1"]{content:"fGzocz,"}/*!sc*/
.kUuTvA{padding:96px 0;background-color:#fcfcfd;}/*!sc*/
@media (max-width:767.98px){.kUuTvA{padding:36px 0;}}/*!sc*/
data-styled.g89[id="footer-container__FooterContainer-sc-16jfcf3-0"]{content:"kUuTvA,"}/*!sc*/
html{-webkit-tap-highlight-color:transparent;}/*!sc*/
body{background-color:#fcfcfd;color:#3a4056;font-family:'Open Sans',sans-serif;font-size:15px;line-height:1.6;}/*!sc*/
*,:after,:before{box-sizing:border-box;margin:0;}/*!sc*/
img{max-height:100%;max-width:100%;}/*!sc*/
a{color:#3880e5;-webkit-text-decoration:none;text-decoration:none;border:none;background:none;padding:0;}/*!sc*/
body.body-noscroll{overflow:hidden;}/*!sc*/
button{cursor:pointer;-webkit-appearance:button;outline:none;}/*!sc*/
div.DraftEditor-root{padding:12px;border:1px solid #3a4056;color:#3a4056;}/*!sc*/
div.about-google-map{height:100%;}/*!sc*/
.description ul{list-style-type:none;padding-left:24px;}/*!sc*/
@media (max-width:767.98px){.description ul{padding-left:12px;}}/*!sc*/
.description ol{padding-left:40px;}/*!sc*/
@media (max-width:767.98px){.description ol{padding-left:28px;}}/*!sc*/
.description ul li{position:relative;padding-left:16px;}/*!sc*/
.description ul li:before{width:8px;height:8px;border-radius:4px;background-color:#03c7a7;content:'';margin-top:9px;position:absolute;left:0;}/*!sc*/
.write-message div.DraftEditor-root,.render-message div.DraftEditor-root{border:none;height:80%;overflow-y:auto;}/*!sc*/
.write-message div.DraftEditor-editorContainer,.render-message div.DraftEditor-editorContainer{height:100%;}/*!sc*/
.write-message div.public-DraftEditor-content,.render-message div.public-DraftEditor-content{height:100%;}/*!sc*/
.write-message-retargeting div.DraftEditor-root{border:none;height:100%;overflow-y:auto;}/*!sc*/
.write-message-retargeting div.DraftEditor-editorContainer{height:100%;}/*!sc*/
.write-message-retargeting div.public-DraftEditor-content{height:100%;}/*!sc*/
.grecaptcha-badge{visibility:hidden;}/*!sc*/
.hiddenBlockQuote{display:none;}/*!sc*/
.particle-table{width:100%;text-align:left;margin:24px 0;}/*!sc*/
data-styled.g90[id="sc-global-hpWtfi1"]{content:"sc-global-hpWtfi1,"}/*!sc*/
.OhGlj{cursor:pointer;border-radius:2px;vertical-align:top;display:inline-block;background-color:#ffffff;width:18px;height:18px;min-width:18px;border:1px solid #828282;margin-right:6px;}/*!sc*/
.bBVMlc{cursor:pointer;border-radius:2px;vertical-align:top;display:inline-block;background-color:#ffffff;width:18px;height:18px;min-width:18px;border:1px solid #828282;margin-left:6px;}/*!sc*/
.kurrkX{cursor:pointer;border-radius:2px;vertical-align:top;display:inline-block;background-color:#ffffff;width:18px;height:18px;min-width:18px;border:1px solid #828282;}/*!sc*/
data-styled.g156[id="check-box__CheckBoxDesign-sc-1ptpc08-0"]{content:"OhGlj,bBVMlc,kurrkX,"}/*!sc*/
.dsaEue{cursor:pointer;border-radius:2px;vertical-align:top;display:inline-block;background-color:#ffffff;width:18px;height:18px;min-width:18px;border:1px solid #828282;background-size:contain;background-repeat:no-repeat;background-color:#3880E5;background-image:url("/static/images/icons/2.0/white/minus.svg");margin-left:6px;}/*!sc*/
data-styled.g157[id="check-box__MinusCheckboxDesign-sc-1ptpc08-1"]{content:"dsaEue,"}/*!sc*/
.eajQMm{color:#ffffff;font-size:13px;margin-left:12px;border-radius:12px;padding:0 6px;background-color:#333333;}/*!sc*/
data-styled.g168[id="advanced-search-count-number__CountNumber-sc-8hlubs-0"]{content:"eajQMm,"}/*!sc*/
.bhkHlB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:6px 0px;padding-left:0px;}/*!sc*/
data-styled.g169[id="tree-item__TreeItem-sc-1ndoqn1-0"]{content:"bhkHlB,"}/*!sc*/
.djLvdn{list-style-type:none;padding-inline-start:0px;}/*!sc*/
data-styled.g170[id="tree-renderer__TreeWrapper-sc-wdfwzn-0"]{content:"djLvdn,"}/*!sc*/
.gslBUi{display:inline-block;cursor:pointer;width:45px;height:20px;border-radius:10px;-webkit-animation:cpCHCi 0.5s linear;animation:cpCHCi 0.5s linear;background:#67ac5b;border:1px solid #67ac5b;}/*!sc*/
data-styled.g178[id="toggle__ToggleWrapper-sc-th0yzv-0"]{content:"gslBUi,"}/*!sc*/
.hbpQfU{display:inline-block;position:relative;left:5px;width:14px;height:18px;background-size:contain;background-repeat:no-repeat;background-position:center;background-image:url("/static/images/icons/2.0/white/checkmark.svg");opacity:1;-webkit-transition:opacity 0.5s;transition:opacity 0.5s;}/*!sc*/
data-styled.g179[id="toggle__ToggleCheckmark-sc-th0yzv-1"]{content:"hbpQfU,"}/*!sc*/
.fArqYf{display:inline-block;position:relative;width:18px;height:18px;border-radius:9px;background-color:#ffffff;left:11px;-webkit-transition:left 0.5s;transition:left 0.5s;}/*!sc*/
data-styled.g180[id="toggle__ToggleToggle-sc-th0yzv-2"]{content:"fArqYf,"}/*!sc*/
.eipfdL{width:100%;border-left:1px solid #828db1;margin-top:12px;will-change:max-height;max-height:0px;}/*!sc*/
data-styled.g189[id="mobile-profile-menu__HeaderProfileMenuList-sc-c6el3s-0"]{content:"eipfdL,"}/*!sc*/
.eidcBU{color:#333333;padding:0 24px;margin:12px 0;list-style-type:none;border-right:1px solid transparent;font-weight:400;}/*!sc*/
data-styled.g190[id="mobile-profile-menu__HeaderProfileMenuItem-sc-c6el3s-1"]{content:"eidcBU,"}/*!sc*/
.elfMjy{font-size:13px;cursor:pointer;color:#333333;display:inline-block;}/*!sc*/
.elfMjy:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.hKoOWf{font-size:13px;cursor:pointer;color:#333333;display:inline-block;font-weight:600;}/*!sc*/
.hKoOWf:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.fIeyGw{font-size:13px;cursor:pointer;color:#333333;display:inline-block;font-weight:600;margin-bottom:24px;}/*!sc*/
.fIeyGw:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g191[id="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0"]{content:"elfMjy,hKoOWf,fIeyGw,"}/*!sc*/
.dlnRUd{margin-left:24px;}/*!sc*/
data-styled.g192[id="mobile-header-dynamic-categories-connected__MobileHeaderDropdownSecondLevelLinksWrapper-sc-rlj3br-0"]{content:"dlnRUd,"}/*!sc*/
.eSAgkB{margin-left:24px;}/*!sc*/
data-styled.g194[id="mobile-header-dynamic-navigation__MobileHeaderDropdownSecondLevelLinksWrapper-sc-h9xaov-0"]{content:"eSAgkB,"}/*!sc*/
.hHsZTR{margin-bottom:24px;}/*!sc*/
data-styled.g195[id="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1"]{content:"hHsZTR,"}/*!sc*/
.gAQIST{left:0;right:0;z-index:100;cursor:auto;max-height:0px;overflow:hidden;position:absolute;-webkit-transition:max-height .4s;transition:max-height .4s;background-color:transparent;box-shadow:0 5px 6px 0 #B0B3BB;}/*!sc*/
data-styled.g197[id="common__DesktopHeaderDropdownWrapper-sc-170boom-0"]{content:"gAQIST,"}/*!sc*/
.cTBSVf{width:50%;float:left;}/*!sc*/
.cTBSVf:not(:last-child){padding-right:12px;}/*!sc*/
data-styled.g198[id="common__DesktopHeaderDropdownWrapperInner-sc-170boom-1"]{content:"cTBSVf,"}/*!sc*/
.fWKIzC{font-size:13px;cursor:pointer;color:#333333;display:inline-block;font-weight:600;margin-bottom:3px;}/*!sc*/
.fWKIzC:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.kUjwEN{font-size:13px;cursor:pointer;color:#333333;display:inline-block;}/*!sc*/
.kUjwEN:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g199[id="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2"]{content:"fWKIzC,kUjwEN,"}/*!sc*/
.cdqTz{margin-top:18px;background-color:#fcfcfd;}/*!sc*/
data-styled.g200[id="desktop-header-dropdown__DesktopHeaderDropdownInnerWrapper-sc-y1g0lx-0"]{content:"cdqTz,"}/*!sc*/
.dvhoXp:not(:last-child){margin-bottom:24px;}/*!sc*/
.dvhoXp a{line-height:0;}/*!sc*/
data-styled.g201[id="header-action-link__CtaWrapper-sc-1yhrwj5-0"]{content:"dvhoXp,"}/*!sc*/
.hHnCBT{float:left;width:calc((100% / 3) - 0.1px);}/*!sc*/
.hHnCBT:not(:last-child){padding-right:12px;}/*!sc*/
data-styled.g202[id="desktop-header-dropdown-material-categories__CategoriesColumn-sc-1ousnfb-0"]{content:"hHnCBT,"}/*!sc*/
.edSpfo:not(:last-child){margin-bottom:24px;}/*!sc*/
data-styled.g203[id="desktop-header-dropdown-material-categories__CategoriesBloackWrapper-sc-1ousnfb-1"]{content:"edSpfo,"}/*!sc*/
.czLQLd{float:left;width:calc((100% / 3) - 0.1px);}/*!sc*/
.czLQLd:not(:last-child){padding-right:12px;}/*!sc*/
data-styled.g204[id="desktop-header-suppliers-dropdown__Column-sc-1gypbt4-0"]{content:"czLQLd,"}/*!sc*/
.CVmbS{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g208[id="bubble__BubbleWrapper-sc-i30r9c-0"]{content:"CVmbS,"}/*!sc*/
.hWwxLn{height:112px;}/*!sc*/
@media (max-width:991.98px){.hWwxLn{display:none;}}/*!sc*/
data-styled.g211[id="main-content-spacer__MainContentSpacer-sc-1g5s1bz-0"]{content:"hWwxLn,"}/*!sc*/
.greBxI{padding:24px 0;}/*!sc*/
@media (max-width:767.98px){.greBxI{padding:12px 0;}}/*!sc*/
data-styled.g218[id="footer__FooterWrapper-sc-1vgte7v-0"]{content:"greBxI,"}/*!sc*/
@media (max-width:767.98px){.hZBBnE{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}}/*!sc*/
data-styled.g219[id="footer__FooterMiddleWrapper-sc-1vgte7v-1"]{content:"hZBBnE,"}/*!sc*/
.jdQCEK{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:0 auto;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;max-width:1170px;}/*!sc*/
@media (max-width:767.98px){.jdQCEK{display:block;overflow:hidden;}}/*!sc*/
data-styled.g220[id="footer__FooterResponsiveWrapper-sc-1vgte7v-2"]{content:"jdQCEK,"}/*!sc*/
.hutcBS{position:fixed;background-color:#ffffff;padding:24px;max-width:660px;z-index:100;bottom:12px;box-shadow:0px 2px 5px #b0b3bb;border-radius:4px;left:calc(-50vw + 50%);right:calc(-50vw + 50%);margin-left:auto;margin-right:auto;}/*!sc*/
data-styled.g221[id="cookie-banner__CookieBannerWrapper-sc-1n3o3md-0"]{content:"hutcBS,"}/*!sc*/
.drTDou{background-color:#6a77a2;z-index:10;}/*!sc*/
data-styled.g253[id="desktop-header-search-bar__SearchButton-sc-n2cbkq-1"]{content:"drTDou,"}/*!sc*/
.iAiHqb{background-color:#ffffff;border-radius:4px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:38px;}/*!sc*/
data-styled.g255[id="desktop-header-search-bar__DesktopHeaderSearchBarInputBlockWrapper-sc-n2cbkq-3"]{content:"iAiHqb,"}/*!sc*/
.cQdUuW{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;-webkit-flex:1;-ms-flex:1;flex:1;}/*!sc*/
data-styled.g256[id="desktop-header-search-bar__DesktopHeaderSearchInputWrapper-sc-n2cbkq-4"]{content:"cQdUuW,"}/*!sc*/
.ioBjKD{border:none;margin-left:12px;width:100%;}/*!sc*/
.ioBjKD::-webkit-input-placeholder{color:#bdbdbd;opacity:1;}/*!sc*/
.ioBjKD::-moz-placeholder{color:#bdbdbd;opacity:1;}/*!sc*/
.ioBjKD:-ms-input-placeholder{color:#bdbdbd;opacity:1;}/*!sc*/
.ioBjKD::placeholder{color:#bdbdbd;opacity:1;}/*!sc*/
.ioBjKD::-ms-clear{display:none;}/*!sc*/
.ioBjKD:focus{outline:none;}/*!sc*/
data-styled.g257[id="desktop-header-search-bar__DesktopHeaderSearchInputField-sc-n2cbkq-5"]{content:"ioBjKD,"}/*!sc*/
.fuuwzT{position:relative;}/*!sc*/
data-styled.g258[id="desktop-header-search-bar__DesktopHeaderAutoSuggestionsWrapper-sc-n2cbkq-6"]{content:"fuuwzT,"}/*!sc*/
.hvBjgr{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;}/*!sc*/
data-styled.g263[id="mobile-header-user-not-signed-in__MobileHeaderUserNotSignedInWrapper-sc-195838o-0"]{content:"hvBjgr,"}/*!sc*/
.lpgqvm{color:#ff8200;background-color:#fcfcfd;border:2px solid #ff8200;max-width:303px;}/*!sc*/
data-styled.g264[id="mobile-header-user-not-signed-in__MobileHeaderUserSignUpButton-sc-195838o-1"]{content:"lpgqvm,"}/*!sc*/
.bTObyH{color:#67ac5b;margin-bottom:12px;background-color:#fcfcfd;border:2px solid #67ac5b;max-width:303px;}/*!sc*/
data-styled.g265[id="mobile-header-user-not-signed-in__MobileHeaderUserSignInButton-sc-195838o-2"]{content:"bTObyH,"}/*!sc*/
.evPxyJ{list-style:none;overflow-y:auto;padding:0 36px;}/*!sc*/
data-styled.g266[id="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBar-sc-ssinjx-0"]{content:"evPxyJ,"}/*!sc*/
.bxYrpi{cursor:auto;max-height:0;overflow:hidden;background-color:#fcfcfd;}/*!sc*/
data-styled.g267[id="mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1"]{content:"bxYrpi,"}/*!sc*/
.bjzJUu{-webkit-flex:1;-ms-flex:1;flex:1;color:#526193;will-change:font-weight;font-weight:400;}/*!sc*/
data-styled.g268[id="mobile-header-dynamic-menu__MobileHeaderDropdownFirstLevelCategoryText-sc-ssinjx-2"]{content:"bjzJUu,"}/*!sc*/
.ghkwNZ{border-left:1px #526193 solid;}/*!sc*/
data-styled.g270[id="mobile-header-dynamic-menu__MobileHeaderDropdownItemsWrapper-sc-ssinjx-4"]{content:"ghkwNZ,"}/*!sc*/
.lgzuuz{font-size:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;padding:3px 6px 18px 0;}/*!sc*/
.kYgdAl{font-size:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;padding:3px 6px 18px 0;}/*!sc*/
.kYgdAl:nth-last-child(2):not(:only-child),.kYgdAl:last-child:not(:only-child){padding-bottom:0px;}/*!sc*/
data-styled.g271[id="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5"]{content:"lgzuuz,kYgdAl,"}/*!sc*/
.kDpNZQ{background-color:#fcfcfd;}/*!sc*/
data-styled.g272[id="mobile-header__MobileHeaderWrapper-sc-dvud91-0"]{content:"kDpNZQ,"}/*!sc*/
.iiDvup{background-color:#526193;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;color:#ffffff;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:12px;height:62px;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
@media screen and (max-width:575.98px){.iiDvup{height:45px;-webkit-box-pack:unset;-webkit-justify-content:unset;-ms-flex-pack:unset;justify-content:unset;}}/*!sc*/
data-styled.g273[id="mobile-header__MobileHeaderStaticBar-sc-dvud91-1"]{content:"iiDvup,"}/*!sc*/
.cmjpNo{display:none;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:auto;padding:0 12px;}/*!sc*/
@media screen and (max-width:767.98px){.cmjpNo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
data-styled.g274[id="mobile-header__MobileHeaderStaticBarSearchIconWrapper-sc-dvud91-2"]{content:"cmjpNo,"}/*!sc*/
.hpPhjx{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:24px 0;position:relative;height:calc(100vh - 62px - 72px);}/*!sc*/
@media screen and (max-width:575.98px){.hpPhjx{height:calc(100vh - 45px - 72px);}}/*!sc*/
data-styled.g275[id="mobile-header__MobileHeaderMenuList-sc-dvud91-3"]{content:"hpPhjx,"}/*!sc*/
.tMWkf{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 36px;list-style:none;}/*!sc*/
data-styled.g276[id="mobile-header__MobileHeaderMenuListItem-sc-dvud91-4"]{content:"tMWkf,"}/*!sc*/
.CjJpx{position:relative;height:calc(100vh - 62px);-webkit-transition:margin-top 0.3s ease-out;transition:margin-top 0.3s ease-out;margin-top:-100vh;}/*!sc*/
@media screen and (max-width:575.98px){.CjJpx{height:calc(100vh - 45px);}}/*!sc*/
data-styled.g277[id="mobile-header__MobileHeaderSlideDownHeader-sc-dvud91-5"]{content:"CjJpx,"}/*!sc*/
.cwmMhq{overflow:hidden;}/*!sc*/
data-styled.g278[id="mobile-header__MobileHeaderSlideDownWrapper-sc-dvud91-6"]{content:"cwmMhq,"}/*!sc*/
.igiZBr{background-color:#526193;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g279[id="desktop-header-navigation-links__DesktopHeaderNavigationLinksBar-sc-vppewv-0"]{content:"igiZBr,"}/*!sc*/
.hPDTUs{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;width:100%;max-width:654px;}/*!sc*/
data-styled.g280[id="desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItems-sc-vppewv-1"]{content:"hPDTUs,"}/*!sc*/
.goozRc{color:#ffffff;border-bottom:1px solid rgba(255,255,255,0);}/*!sc*/
.goozRc:hover{border-bottom:1px solid rgba(255,255,255,9);}/*!sc*/
data-styled.g281[id="desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItemLink-sc-vppewv-2"]{content:"goozRc,"}/*!sc*/
.gbNQTp{text-align:center;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g282[id="desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItemStyledButton-sc-vppewv-3"]{content:"gbNQTp,"}/*!sc*/
.bKWUBi{color:white;display:block;font-size:15px;border-bottom:1px solid rgba(255,255,255,0);}/*!sc*/
.bKWUBi:after{content:'';width:10px;height:10px;display:inline-block;background-size:contain;background-position:center;background-repeat:no-repeat;margin-left:6px;background-image:url("/static/images/icons/2.0/white/arrow-down.svg");}/*!sc*/
.bKWUBi:hover{border-bottom:1px solid rgba(255,255,255,9);}/*!sc*/
data-styled.g283[id="desktop-header-navigation-links__DesktopHeaderNavigationDropdownText-sc-vppewv-4"]{content:"bKWUBi,"}/*!sc*/
.bPjIbr{float:left;}/*!sc*/
@media (max-width:991.98px){.bPjIbr{width:130px;}}/*!sc*/
data-styled.g289[id="desktop-header-static-bar__HeaderLogoImage-sc-1aton5n-0"]{content:"bPjIbr,"}/*!sc*/
.KFXRI{position:fixed;left:0;right:0;top:0;z-index:3;background-color:#526193;}/*!sc*/
data-styled.g291[id="desktop-header-static-bar__DesktopHeaderStaticBar-sc-1aton5n-2"]{content:"KFXRI,"}/*!sc*/
.kHEXRD{padding-top:3px;padding-bottom:18px;}/*!sc*/
data-styled.g292[id="desktop-header-static-bar__DesktopHeadersLinksWrapper-sc-1aton5n-3"]{content:"kHEXRD,"}/*!sc*/
.cVRwqg{-webkit-flex:1;-ms-flex:1;flex:1;}/*!sc*/
data-styled.g293[id="desktop-header-static-bar__DesktopHeaderLogoSection-sc-1aton5n-4"]{content:"cVRwqg,"}/*!sc*/
.gigTJA{max-width:554px;-webkit-flex:3;-ms-flex:3;flex:3;margin:0 60px;}/*!sc*/
@media (max-width:991.98px){.gigTJA{margin:0 12px;}}/*!sc*/
data-styled.g294[id="desktop-header-static-bar__DesktopHeaderSearchBarSection-sc-1aton5n-5"]{content:"gigTJA,"}/*!sc*/
.IRYso{-webkit-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;min-width:282px;}/*!sc*/
data-styled.g295[id="desktop-header-static-bar__DesktopHeaderControlIconsSection-sc-1aton5n-6"]{content:"IRYso,"}/*!sc*/
.gWelzZ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g296[id="desktop-header-static-bar__DesktopHeaderLanguagePanelWrapper-sc-1aton5n-7"]{content:"gWelzZ,"}/*!sc*/
.gBSUqi{cursor:pointer;margin-right:6px;}/*!sc*/
data-styled.g297[id="desktop-header-static-bar__DesktopHeaderCurrentLanguage-sc-1aton5n-8"]{content:"gBSUqi,"}/*!sc*/
.hMfFLt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:24px;}/*!sc*/
@media (max-width:991.98px){.hMfFLt{margin-left:12px;}}/*!sc*/
data-styled.g298[id="desktop-header-static-bar__DesktopHeaderAuthControls-sc-1aton5n-9"]{content:"hMfFLt,"}/*!sc*/
.bga-dBn{width:100%;height:66px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:0 auto;color:#ffffff;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:0 12px;}/*!sc*/
@media (min-width:768px){.bga-dBn{padding-left:24px;padding-right:24px;}}/*!sc*/
@media (min-width:1170px){.bga-dBn{max-width:1440px;margin-left:auto;margin-right:auto;}}/*!sc*/
data-styled.g299[id="desktop-header-static-bar__DesktopHeaderStaticBarInner-sc-1aton5n-10"]{content:"bga-dBn,"}/*!sc*/
.lpaaHC{margin-right:24px;}/*!sc*/
@media (max-width:991.98px){.lpaaHC{margin-right:12px;}}/*!sc*/
data-styled.g301[id="desktop-header-static-bar__SignInText-sc-1aton5n-12"]{content:"lpaaHC,"}/*!sc*/
.ihiZJY{position:relative;}/*!sc*/
data-styled.g302[id="header__HeaderWrapper-sc-vi2mkw-0"]{content:"ihiZJY,"}/*!sc*/
@media (max-width:767.98px){.iOXrTY{display:none;}}/*!sc*/
@media (max-width:991.98px){.iOXrTY{display:none;}}/*!sc*/
data-styled.g303[id="header__DesktopHeaderWrapper-sc-vi2mkw-1"]{content:"iOXrTY,"}/*!sc*/
.eWjGyj{width:100%;z-index:4;display:none;}/*!sc*/
@media (max-width:991.98px){.eWjGyj{display:block;}}/*!sc*/
@media (max-width:767.98px){.eWjGyj{display:block;}}/*!sc*/
data-styled.g304[id="header__MobileHeaderWrapper-sc-vi2mkw-2"]{content:"eWjGyj,"}/*!sc*/
.ewHqQp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;height:90px;}/*!sc*/
@media (max-width:575.98px){.ewHqQp{height:44px;}}/*!sc*/
data-styled.g305[id="campaigns__CampaignBannerWrapper-sc-a2pwr6-0"]{content:"ewHqQp,"}/*!sc*/
.dcaIxI{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g344[id="adbutler__CampaignBannerWrapper-sc-1snm6gk-0"]{content:"dcaIxI,"}/*!sc*/
.fgLnFQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:0 auto;overflow:hidden;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;max-width:728px;height:90px;}/*!sc*/
.fgLnFQ .adbutler-banner-wrapper:not(:empty) ~ *{display:none;}/*!sc*/
.fgLnFQ img{width:auto;height:auto;}/*!sc*/
@media (max-width:575.98px){.fgLnFQ{height:61px;}}/*!sc*/
data-styled.g345[id="adbutler__CampaignBannerInnerWrapper-sc-1snm6gk-1"]{content:"fgLnFQ,"}/*!sc*/
.hucmjH{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:16px;height:16px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;border-radius:8px;border:1px solid #3880E5;}/*!sc*/
data-styled.g583[id="radio-button__RadioButtonOuter-sc-mwb92w-0"]{content:"hucmjH,"}/*!sc*/
.jXbQYq{width:10px;height:10px;border-radius:5px;background-color:#3880E5;}/*!sc*/
data-styled.g584[id="radio-button__RadioButtonInner-sc-mwb92w-1"]{content:"jXbQYq,"}/*!sc*/
.dDcZzF{color:#fcfcfd;margin:36px 0;}/*!sc*/
data-styled.g585[id="advanced-search-sidebar-separator__AdvancedSearchSidebarSeparator-sc-1rstb9s-0"]{content:"dDcZzF,"}/*!sc*/
.hXYfhe{color:#ffffff;font-size:16px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;border-radius:2px;-webkit-flex:1;-ms-flex:1;flex:1;margin-right:24px;border:1px solid #48A43F;background-color:#67ac5b;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:6px;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;}/*!sc*/
.hXYfhe:hover{background-color:#48A43F;}/*!sc*/
data-styled.g586[id="advanced-search-sidebar-action-button__ActionButton-sc-15cfzym-0"]{content:"hXYfhe,"}/*!sc*/
.cwhWGZ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;margin-top:24px;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
data-styled.g587[id="advanced-search-sidebar-actions__ActionsWrapper-sc-qhfbni-0"]{content:"cwhWGZ,"}/*!sc*/
.hVhMIm{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;opacity:.7;pointer-events:none;}/*!sc*/
data-styled.g588[id="advanced-search-sidebar-actions__ActionsText-sc-qhfbni-1"]{content:"hVhMIm,"}/*!sc*/
.iPlPmm{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g589[id="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0"]{content:"iPlPmm,"}/*!sc*/
.XbfDr{overflow-y:auto;-webkit-transition:margin-top .25s,max-height .15s;transition:margin-top .25s,max-height .15s;margin-top:24px;max-height:0px;margin-top:0;}/*!sc*/
data-styled.g590[id="advanced-search-sidebar-collapsible-filters-wrapper__ASSidebarCollapsibleFiltersWrapper-sc-1m5vrop-0"]{content:"XbfDr,"}/*!sc*/
.fdCHWk{position:relative;width:16px;height:16px;}/*!sc*/
.fdCHWk:before,.fdCHWk:after{content:"";position:absolute;background-color:white;-webkit-transition:-webkit-transform 0.25s ease-out;-webkit-transition:transform 0.25s ease-out;transition:transform 0.25s ease-out;background-color:#3880e5;}/*!sc*/
.fdCHWk:before{top:0;left:50%;width:4px;height:100%;margin-left:-2px;}/*!sc*/
.fdCHWk:after{top:50%;left:0;width:100%;height:4px;margin-top:-2px;}/*!sc*/
data-styled.g591[id="plus-icon__PlusIcon-sc-13w6ro8-0"]{content:"fdCHWk,"}/*!sc*/
.gNwTRO{margin:4px 12px;-webkit-flex:1;-ms-flex:1;flex:1;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}/*!sc*/
data-styled.g592[id="advanced-search-category-specific-settings-dropdown__FieldText-sc-113hj4-0"]{content:"gNwTRO,"}/*!sc*/
.epQYxF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:12px;background:#ffffff;border:1px solid #bdbdbd;box-sizing:border-box;border-radius:4px;}/*!sc*/
data-styled.g593[id="advanced-search-category-specific-settings-dropdown__FieldWrapper-sc-113hj4-1"]{content:"epQYxF,"}/*!sc*/
.kRDCWz{position:relative;}/*!sc*/
data-styled.g594[id="advanced-search-category-specific-settings-dropdown__DropDownContainer-sc-113hj4-2"]{content:"kRDCWz,"}/*!sc*/
.huFKrQ{position:absolute;top:100%;z-index:2;width:100%;margin-top:-12px;padding:12px;padding-bottom:0;max-height:236px;overflow-y:auto;-webkit-transition:all .5s;transition:all .5s;opacity:0;visibility:hidden;background-color:#ffffff;border:1px solid #bdbdbd;box-sizing:border-box;box-shadow:0px 2px 5px #b0b3bb;border-radius:4px;}/*!sc*/
data-styled.g595[id="advanced-search-category-specific-settings-dropdown__DropDownItemsWrapper-sc-113hj4-3"]{content:"huFKrQ,"}/*!sc*/
.zzdEX{margin-right:12px;}/*!sc*/
data-styled.g599[id="advanced-search-category-specific-settings-dropdown__PlusIconContainer-sc-113hj4-7"]{content:"zzdEX,"}/*!sc*/
.cFpniu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g603[id="advanced-search-sidebar-suppliers__ItemHeaderWrapper-sc-12new5k-0"]{content:"cFpniu,"}/*!sc*/
.gdlobs{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:12px 0;margin-bottom:12px;}/*!sc*/
@media (max-width:991.98px){.gdlobs{display:none;}}/*!sc*/
data-styled.g616[id="collapse-toggle__CollapseToggleWrapper-sc-vxcac6-0"]{content:"gdlobs,"}/*!sc*/
.gFfIFF{display:block;}/*!sc*/
data-styled.g617[id="collapse-toggle__CollapseToggleOptionsIcon-sc-vxcac6-1"]{content:"gFfIFF,"}/*!sc*/
.iTeGNl{color:#526193;margin:0 6px;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:600;display:block;}/*!sc*/
data-styled.g618[id="collapse-toggle__CollapseToggleTitle-sc-vxcac6-2"]{content:"iTeGNl,"}/*!sc*/
.cgzKyT{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:white;border:1px solid #bdbdbd;border-radius:50%;width:40px;height:40px;cursor:pointer;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}/*!sc*/
data-styled.g619[id="collapse-toggle__CollapseToggleArrowCircle-sc-vxcac6-3"]{content:"cgzKyT,"}/*!sc*/
.gyajYF{width:438px;padding:24px;border-radius:4px;background-color:#f2f2f2;}/*!sc*/
@media (max-width:991.98px){.gyajYF{width:100%;}}/*!sc*/
@media (max-width:767.98px){.gyajYF{display:none;display:none;}}/*!sc*/
@media (max-width:575.98px){.gyajYF{padding:12px;}}/*!sc*/
data-styled.g620[id="sidebar__AdvancedSearchSidebarWrapper-sc-1v590t3-0"]{content:"gyajYF,"}/*!sc*/
.jnuTJQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-radius:4px;background-color:#f2f2f2;max-width:1400px;margin:0 auto 24px auto;padding:12px 12px 0 12px;}/*!sc*/
@media (max-width:991.98px){.jnuTJQ{overflow-x:auto;}}/*!sc*/
@media (max-width:767.98px){.jnuTJQ{margin:12px 0 0 0;}}/*!sc*/
data-styled.g622[id="contextual-tags__ContextualTagsWrapper-sc-dg6jub-0"]{content:"jnuTJQ,"}/*!sc*/
.fsqjse{border-radius:4px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-right:12px;margin-bottom:12px;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;background-color:#fcfcfd;border:1px solid #3880E5;padding:6px 12px;}/*!sc*/
data-styled.g623[id="contextual-tags__ContextualTagWrapper-sc-dg6jub-1"]{content:"fsqjse,"}/*!sc*/
@media (max-width:991.98px){.cSROfV{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
data-styled.g624[id="contextual-tags__ContextualTagsItemsWrapper-sc-dg6jub-2"]{content:"cSROfV,"}/*!sc*/
.fLLraV{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:24px;}/*!sc*/
data-styled.g625[id="pagination__PaginationWrapper-sc-1s1bcvk-0"]{content:"fLLraV,"}/*!sc*/
.TXmbf{display:inline-block;}/*!sc*/
@media (max-width:991.98px){.TXmbf{display:none;}}/*!sc*/
data-styled.g626[id="pagination__PaginationPagesText-sc-1s1bcvk-1"]{content:"TXmbf,"}/*!sc*/
.fLuqrw{position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g627[id="custom-dropdown__CustomDropdownWrapper-sc-1r4pk0f-0"]{content:"fLuqrw,"}/*!sc*/
.hxQNhN{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border:1px solid #e0e0e0;margin-right:6px;}/*!sc*/
data-styled.g628[id="custom-dropdown__CustomDropdown-sc-1r4pk0f-1"]{content:"hxQNhN,"}/*!sc*/
.grBuVO{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;height:36px;line-height:36px;background:#ffffff;cursor:pointer;border:1px solid #e0e0e0;}/*!sc*/
data-styled.g629[id="custom-dropdown__CustomDropdownTrigger-sc-1r4pk0f-2"]{content:"grBuVO,"}/*!sc*/
.cqRtVo{position:absolute;display:block;top:100%;left:0;right:0;border:1px solid #e0e0e0;border-top:0;background:#fff;-webkit-transition:all 0.5s;transition:all 0.5s;opacity:0;visibility:hidden;z-index:2;box-shadow:0 2px 5px 0 #bdbdbd;}/*!sc*/
data-styled.g630[id="custom-dropdown__CustomDropdownOptions-sc-1r4pk0f-3"]{content:"cqRtVo,"}/*!sc*/
.hwiCoG{position:relative;display:block;padding:0 12px 0 12px;line-height:36px;cursor:pointer;-webkit-transition:all 0.5s;transition:all 0.5s;font-size:12px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}/*!sc*/
.hwiCoG:hover{cursor:pointer;background-color:#e0e0e0;}/*!sc*/
data-styled.g631[id="custom-dropdown__CustomDropdownOption-sc-1r4pk0f-4"]{content:"hwiCoG,"}/*!sc*/
.kaSqTa{color:#4496ec;position:relative;display:block;padding:12px;cursor:pointer;-webkit-transition:all 0.5s;transition:all 0.5s;font-size:12px;}/*!sc*/
data-styled.g632[id="custom-dropdown__CustomDropdownInfo-sc-1r4pk0f-5"]{content:"kaSqTa,"}/*!sc*/
.dUfhYU{max-width:228px;}/*!sc*/
.dUfhYU:hover{cursor:pointer;background-color:transparent;}/*!sc*/
data-styled.g633[id="custom-dropdown__CustomDropdownOptionCurrent-sc-1r4pk0f-6"]{content:"dUfhYU,"}/*!sc*/
.cwaUxH{color:#bdbdbd;}/*!sc*/
data-styled.g634[id="custom-dropdown__CustomDropdownOptionPlaceholder-sc-1r4pk0f-7"]{content:"cwaUxH,"}/*!sc*/
.kOKDxB{position:relative;height:10px;width:10px;margin-right:6px;}/*!sc*/
.kOKDxB::before{content:"";position:absolute;bottom:0;width:2px;height:100%;left:-3px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);background-color:#4496ec;}/*!sc*/
.kOKDxB::after{content:"";position:absolute;bottom:0;width:2px;height:100%;left:3px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);background-color:#4496ec;}/*!sc*/
data-styled.g635[id="custom-dropdown__CustomDropdownArrow-sc-1r4pk0f-8"]{content:"kOKDxB,"}/*!sc*/
.emgOuh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:solid 1px #e0e0e0;border-radius:2px;margin-bottom:6px;padding:12px 24px;background-color:#fcfcfd;}/*!sc*/
@media (max-width:767.98px){.emgOuh{display:none;}}/*!sc*/
data-styled.g637[id="header-properties-dropdown__PropertiesDropdownWrapper-sc-jye0ar-0"]{content:"emgOuh,"}/*!sc*/
.cVjyqt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;background-color:#ffffff;border:solid 1px #e0e0e0;margin-bottom:6px;box-shadow:0 2px 5px 0 #bdbdbd;padding:12px 24px;}/*!sc*/
@media (max-width:767.98px){.cVjyqt{padding:12px;}}/*!sc*/
.dSEUZx{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;background-color:#ffffff;border:solid 1px #e0e0e0;margin-bottom:6px;box-shadow:0 2px 5px 0 #bdbdbd;padding:12px 24px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
@media (max-width:767.98px){.dSEUZx{padding:12px;}}/*!sc*/
data-styled.g641[id="materials-list__MaterialsListItem-sc-1ickte1-0"]{content:"cVjyqt,dSEUZx,"}/*!sc*/
.dtZnEZ{width:32%;overflow:hidden;}/*!sc*/
@media (max-width:767.98px){.dtZnEZ{width:90%;}}/*!sc*/
data-styled.g642[id="materials-list__MaterialDataWrapper-sc-1ickte1-1"]{content:"dtZnEZ,"}/*!sc*/
.hTQFno{width:63%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:12px;}/*!sc*/
@media (max-width:767.98px){.hTQFno{display:none;}}/*!sc*/
data-styled.g643[id="materials-list__MaterialPropsWrapper-sc-1ickte1-2"]{content:"hTQFno,"}/*!sc*/
.bDcoHI{width:5%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;padding-left:12px;}/*!sc*/
@media (max-width:767.98px){.bDcoHI{width:10%;}}/*!sc*/
data-styled.g644[id="materials-list__MaterialCompareWrapper-sc-1ickte1-3"]{content:"bDcoHI,"}/*!sc*/
.fHnuKk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;margin:24px auto;}/*!sc*/
@media (max-width:991.98px){.fHnuKk{display:none;}}/*!sc*/
data-styled.g650[id="navigation-component__AdvancedSearchNavigationComponentWrapper-sc-1j05mwq-0"]{content:"fHnuKk,"}/*!sc*/
.fmDqYN{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;cursor:pointer;min-width:50%;position:relative;padding:12px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;border-top:1px solid #bdbdbd;border-left:1px solid #bdbdbd;border-bottom:1px solid #bdbdbd;box-shadow:0px 2px 2px rgba(0,0,0,0.25);background-color:#F1F4F1;}/*!sc*/
.fmDqYN::after{content:"";width:16px;height:16px;bottom:-8px;display:block;position:absolute;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-right:1px solid #bdbdbd;background:#F1F4F1;border-bottom:1px solid #bdbdbd;}/*!sc*/
.fmDqYN:last-child{border-right:1px solid #bdbdbd;border-radius:0px 8px 8px 0px;}/*!sc*/
.fmDqYN:first-child{border-radius:8px 0px 0px 8px;}/*!sc*/
.hmFsem{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;cursor:pointer;min-width:50%;position:relative;padding:12px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;border-top:1px solid #bdbdbd;border-left:1px solid #bdbdbd;border-bottom:1px solid #bdbdbd;box-shadow:inset 0px 1px 1px rgba(0,0,0,0.25);background-color:#F0F5F5;}/*!sc*/
.hmFsem:last-child{border-right:1px solid #bdbdbd;border-radius:0px 8px 8px 0px;}/*!sc*/
.hmFsem:first-child{border-radius:8px 0px 0px 8px;}/*!sc*/
data-styled.g651[id="navigation-component__AdvancedSearchNavigationItemWrapper-sc-1j05mwq-1"]{content:"fmDqYN,hmFsem,"}/*!sc*/
.bwwYIA{width:26px;height:26px;font-size:16px;color:#ffffff;text-align:center;border-radius:13px;margin-right:12px;background:#ff8200;}/*!sc*/
.fgAGgQ{width:26px;height:26px;font-size:16px;color:#ffffff;text-align:center;border-radius:13px;margin-right:12px;background:#828282;}/*!sc*/
data-styled.g652[id="navigation-component__NavigationItemNumber-sc-1j05mwq-2"]{content:"bwwYIA,fgAGgQ,"}/*!sc*/
.jleRfd{margin-bottom:12px;}/*!sc*/
@media (max-width:767.98px){.jleRfd{padding-left:12px;padding-right:12px;}}/*!sc*/
data-styled.g653[id="results-list-view__TopPositionBannerWrapper-sc-d70l4k-0"]{content:"jleRfd,"}/*!sc*/
.ifaaZC{position:relative;}/*!sc*/
@media (max-width:767.98px){.ifaaZC{margin-top:12px;}}/*!sc*/
data-styled.g654[id="results-list-view__AdvancedSearchMainContentWrapper-sc-d70l4k-1"]{content:"ifaaZC,"}/*!sc*/
@media (max-width:575.98px){.dgFZRr{padding:0px 12px;}}/*!sc*/
data-styled.g655[id="results-list-view__AdvancedSearchAllertsWrapper-sc-d70l4k-2"]{content:"dgFZRr,"}/*!sc*/
@media (max-width:991.98px){.ixACSA{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}}/*!sc*/
data-styled.g658[id="advanced-search__AdvancedSearchMainSectionWrapper-sc-1eqc1e8-1"]{content:"ixACSA,"}/*!sc*/
@-webkit-keyframes cpCHCi{from{background-color:#828282;border-color:#828282;}to{background-color:#67ac5b;border-color:#67ac5b;}}/*!sc*/
@keyframes cpCHCi{from{background-color:#828282;border-color:#828282;}to{background-color:#67ac5b;border-color:#67ac5b;}}/*!sc*/
data-styled.g660[id="sc-keyframes-cpCHCi"]{content:"cpCHCi,"}/*!sc*/
</style></head><body><div id="__next"><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><div class="cookie-banner__CookieBannerWrapper-sc-1n3o3md-0 hutcBS" data-test-item="cookie-banner"><p class="text__Text-sc-f4nboj-0 ghQHoL" size="28">OUR COOKIE DISCLAIMER</p><hr class="separation-line__SeparationLine-sc-1gtqai2-0 separation-line__SeparationLineDefault-sc-1gtqai2-1 dLmbUA kwnPiJ"/><p class="text__Text-sc-f4nboj-0 fEFHaQ" size="15">Matmatch uses cookies and similar technologies to improve your experience and measure your interactions with our website. We also use them to provide you more relevant information and improve our platform and search tools. If that’s okay, click “Accept all.” To change your preferences, click “Open cookie settings.” You will find more information about cookies on our <a href="/imprint#privacy-policy" style="text-decoration:underline;">privacy policy page<a></a>.</a></p><button class="button__BaseButton-sc-ekfcy0-0 button__ButtonSuccess-sc-ekfcy0-5 lhTnpm gKwwSj">Accept all</button><p class="text__Text-sc-f4nboj-0 fcGhiO" color="#3880E5" cursor="pointer" size="15">Open cookie settings</p></div></div><div class="header-container__HeaderContainer-sc-fi6wlh-0 bOrpEs" data-app-header="true"><div class="header__HeaderWrapper-sc-vi2mkw-0 ihiZJY"><div class="header__DesktopHeaderWrapper-sc-vi2mkw-1 iOXrTY"><div class="desktop-header-static-bar__DesktopHeaderStaticBar-sc-1aton5n-2 KFXRI"><div class="desktop-header-static-bar__DesktopHeaderStaticBarInner-sc-1aton5n-10 bga-dBn"><div class="desktop-header-static-bar__DesktopHeaderLogoSection-sc-1aton5n-4 cVRwqg"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 styled-link-styles__ImageLinkStyles-sc-l1ctuc-2 ipttFt jkkDbK desktop-header-static-bar__HeaderLogoImage-sc-1aton5n-0 bPjIbr" height="37" href="/" src="/static/images/inlined/logo_inverted.svg" width="167"></a></div><div class="desktop-header-static-bar__DesktopHeaderSearchBarSection-sc-1aton5n-5 gigTJA"><div class="desktop-header-search-bar__DesktopHeaderSearchBarWrapper-sc-n2cbkq-2 doqVZA"><div class="desktop-header-search-bar__DesktopHeaderSearchBarInputBlockWrapper-sc-n2cbkq-3 iAiHqb"><div class="desktop-header-search-bar__DesktopHeaderSearchInputWrapper-sc-n2cbkq-4 cQdUuW"><input class="desktop-header-search-bar__DesktopHeaderSearchInputField-sc-n2cbkq-5 ioBjKD" placeholder="e.g. Aluminium" type="text" value=""/></div><button class="button__BaseButton-sc-ekfcy0-0 button__ButtonDefault-sc-ekfcy0-2 desktop-header-search-bar__SearchButton-sc-n2cbkq-1 MSVaf kTlrHY drTDou"><span class="icon__Icon-sc-1230ehg-0 EMFJO" color="white" size="24" type="search"></span></button></div><div class="desktop-header-search-bar__DesktopHeaderAutoSuggestionsWrapper-sc-n2cbkq-6 fuuwzT"></div></div></div><div class="desktop-header-static-bar__DesktopHeaderControlIconsSection-sc-1aton5n-6 IRYso"><div class="desktop-header-static-bar__DesktopHeaderLanguagePanelWrapper-sc-1aton5n-7 gWelzZ"><div class="desktop-header-static-bar__DesktopHeaderCurrentLanguage-sc-1aton5n-8 gBSUqi"></div><div class="bubble__BubbleWrapper-sc-i30r9c-0 CVmbS"><span class="icon__Icon-sc-1230ehg-0 desktop-header-static-bar__GlobeIcon-sc-1aton5n-11 gpNPvA language-picker-globe-icon" color="2.0/white" size="24" type="ios-world-outline"></span></div></div><div class="desktop-header-static-bar__DesktopHeaderAuthControls-sc-1aton5n-9 hMfFLt"><div class="bubble__BubbleWrapper-sc-i30r9c-0 CVmbS"><p class="text__Text-sc-f4nboj-0 desktop-header-static-bar__SignInText-sc-1aton5n-12 hJBnMN lpaaHC" color="#ffffff" cursor="pointer" data-test-item="sign-in-button" size="16">Sign in</p><a data-test-item="sign-up-link" href="/sign-up" rel="noreferrer" target="_blank"><button class="button__BaseButton-sc-ekfcy0-0 button__ButtonSpecial-sc-ekfcy0-4 MSVaf juQzaQ login-interaction-elem"><p class="text__Text-sc-f4nboj-0 kFbVgZ" color="white">Register</p></button></a></div></div></div></div><div class="desktop-header-static-bar__DesktopHeadersLinksWrapper-sc-1aton5n-3 kHEXRD"><div class="desktop-header-navigation-links__DesktopHeaderNavigationLinksBar-sc-vppewv-0 igiZBr"><div class="desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItems-sc-vppewv-1 hPDTUs"><div class="wrappers__Wrapper-sc-14fw43j-0 jUHcrU"><div class="desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItemStyledButton-sc-vppewv-3 gbNQTp"><p class="desktop-header-navigation-links__DesktopHeaderNavigationDropdownText-sc-vppewv-4 bKWUBi" color="#ffffff">Materials</p></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><div class="common__DesktopHeaderDropdownWrapper-sc-170boom-0 gAQIST"><div class="desktop-header-dropdown__DesktopHeaderDropdownInnerWrapper-sc-y1g0lx-0 cdqTz"><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperStaticContentNoFlex-sc-14fw43j-5 cJNByu flfCwz"><div class="wrappers__Wrapper-sc-14fw43j-0 hrfsee"><div class="common__DesktopHeaderDropdownWrapperInner-sc-170boom-1 cTBSVf"><p class="text__Text-sc-f4nboj-0 wmqFD" color="#526193" size="16">Categories</p><div class="wrappers__Wrapper-sc-14fw43j-0 cdlmON"><div class="desktop-header-dropdown-material-categories__CategoriesColumn-sc-1ousnfb-0 hHnCBT"><div class="desktop-header-dropdown-material-categories__CategoriesBloackWrapper-sc-1ousnfb-1 edSpfo"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/advanced-search?categories=biological-material&amp;view=result-list">Biological Material</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=wood&amp;view=result-list">Wood</a></div></div><div class="desktop-header-dropdown-material-categories__CategoriesBloackWrapper-sc-1ousnfb-1 edSpfo"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/advanced-search?categories=ceramic&amp;view=result-list">Ceramic</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=carbon&amp;view=result-list">Carbon</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=engineering-ceramic&amp;view=result-list">Engineering Ceramic</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=natural-ceramic&amp;view=result-list">Natural Ceramic</a></div></div><div class="desktop-header-dropdown-material-categories__CategoriesBloackWrapper-sc-1ousnfb-1 edSpfo"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/advanced-search?categories=composite&amp;view=result-list">Composite</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=ceramic-matrix-composite&amp;view=result-list">Ceramic Matrix Composite</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=metal-matrix-composite&amp;view=result-list">Metal Matrix Composite</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=polymer-matrix-composite&amp;view=result-list">Polymer Matrix Composite</a></div></div></div><div class="desktop-header-dropdown-material-categories__CategoriesColumn-sc-1ousnfb-0 hHnCBT"><div class="desktop-header-dropdown-material-categories__CategoriesBloackWrapper-sc-1ousnfb-1 edSpfo"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/advanced-search?categories=glass&amp;view=result-list">Glass</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=glass-ceramic&amp;view=result-list">Glass Ceramic</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=lead-glass&amp;view=result-list">Lead Glass</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=silicate-glass&amp;view=result-list">Silicate Glass</a></div></div><div class="desktop-header-dropdown-material-categories__CategoriesBloackWrapper-sc-1ousnfb-1 edSpfo"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/advanced-search?categories=polymer&amp;view=result-list">Polymer</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=elastomer&amp;view=result-list">Elastomer</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=thermoplastic&amp;view=result-list">Thermoplastic</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=thermosetting&amp;view=result-list">Thermosetting</a></div></div></div><div class="desktop-header-dropdown-material-categories__CategoriesColumn-sc-1ousnfb-0 hHnCBT"><div class="desktop-header-dropdown-material-categories__CategoriesBloackWrapper-sc-1ousnfb-1 edSpfo"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/advanced-search?categories=metal&amp;view=result-list">Metal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=aluminium&amp;view=result-list">Aluminium</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=clad---bimetal&amp;view=result-list">Clad / Bimetal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=cobalt&amp;view=result-list">Cobalt</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=copper&amp;view=result-list">Copper</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=iron&amp;view=result-list">Iron</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=magnesium&amp;view=result-list">Magnesium</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=manganese&amp;view=result-list">Manganese</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=nickel&amp;view=result-list">Nickel</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=noble-metal&amp;view=result-list">Noble Metal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=other-metal&amp;view=result-list">Other Metal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=refractory-metal&amp;view=result-list">Refractory Metal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=steel&amp;view=result-list">Steel</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search?categories=titanium&amp;view=result-list">Titanium</a></div></div></div></div></div><div class="common__DesktopHeaderDropdownWrapperInner-sc-170boom-1 cTBSVf"><div class="common__DesktopHeaderDropdownWrapperInner-sc-170boom-1 cTBSVf"><div class="wrappers__Wrapper-sc-14fw43j-0 zDQjJ"><p class="text__Text-sc-f4nboj-0 wmqFD" color="#526193" size="16">Tools</p><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/tools/unit-converter">Unit Converter</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/tools/hardness-converter">Hardness Converter</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/advanced-search">Advanced Search</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/application">Application Search</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="https://go.matmatch.com/sncurves">Fatigue Data</a></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 zDQjJ"><p class="text__Text-sc-f4nboj-0 wmqFD" color="#526193" size="16">Guides</p><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 kUjwEN" href="/guide/sustainable-materials-selection">Sustainable Materials Selection</a></div></div></div><div class="common__DesktopHeaderDropdownWrapperInner-sc-170boom-1 cTBSVf"><div class="header-action-link__CtaWrapper-sc-1yhrwj5-0 dvhoXp"><a href="/advanced-search"><button class="button__BaseButton-sc-ekfcy0-0 button__ButtonSpecial-sc-ekfcy0-4 kPiOHq juQzaQ">Advanced Search</button></a></div><div class="header-action-link__CtaWrapper-sc-1yhrwj5-0 dvhoXp"><a href="/blog/learn-with-matmatch/"><img alt="Learn with Matmatch" src="https://matmatch.com/blog/wp-content/uploads/2020/05/learn-with-matmatch-menu.png" style="min-width:100%"/></a></div><div class="header-action-link__CtaWrapper-sc-1yhrwj5-0 dvhoXp"><a href="/guide/sustainable-materials-selection"><img alt="Learn about sustainable materials selection" src="https://matmatch.com/blog/wp-content/uploads/2020/12/sustainable-materials-selection-menu.jpg" style="min-width:100%"/></a></div></div></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 kneKJ"><span class="icon__Icon-sc-1230ehg-0 bZBKhy" color="2.0/default" size="30" type="arrow-up"></span></div></div></div></div></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 jUHcrU"><div class="desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItemStyledButton-sc-vppewv-3 gbNQTp"><p class="desktop-header-navigation-links__DesktopHeaderNavigationDropdownText-sc-vppewv-4 bKWUBi" color="#ffffff">For Suppliers</p></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><div class="common__DesktopHeaderDropdownWrapper-sc-170boom-0 gAQIST"><div class="desktop-header-dropdown__DesktopHeaderDropdownInnerWrapper-sc-y1g0lx-0 cdqTz"><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperStaticContentNoFlex-sc-14fw43j-5 cJNByu flfCwz"><div class="wrappers__Wrapper-sc-14fw43j-0 hrfsee"><div class="desktop-header-suppliers-dropdown__Column-sc-1gypbt4-0 czLQLd"><p class="text__Text-sc-f4nboj-0 wmqFD" color="#526193" size="16">Matmatch Suppliers</p><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/supplier">List Your Materials</a></div></div><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/partners">Matmatch Partners</a></div></div><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="/supplier-resources">Resources</a></div></div><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="https://go.matmatch.com/advertise">Advertise</a></div></div><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="https://go.matmatch.com/advertising-media-kit">Media Kit (Advertising)</a></div></div></div><div class="desktop-header-suppliers-dropdown__Column-sc-1gypbt4-0 czLQLd"><p class="text__Text-sc-f4nboj-0 wmqFD" color="#526193" size="16">Case Studies</p><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="https://go.matmatch.com/case-study/ampco-metal">AMPCO METAL</a></div></div><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="https://go.matmatch.com/case-study/dew">Deutsche Edelstahlwerke</a></div></div><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="https://go.matmatch.com/case-study/phon-tech">Phon Tech</a><span class="badge__LinkBadge-sc-1kc0y45-0 ejKxFX">new</span></div></div><div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="common__DesktopHeaderDropdownLinkStyles-sc-170boom-2 fWKIzC" href="https://go.matmatch.com/case-study/ceratizit">CERATIZIT</a><span class="badge__LinkBadge-sc-1kc0y45-0 ejKxFX">new</span></div></div></div><div class="desktop-header-suppliers-dropdown__Column-sc-1gypbt4-0 czLQLd"><div class="header-action-link__CtaWrapper-sc-1yhrwj5-0 dvhoXp"><a href="/supplier"><img alt="Grow with Matmatch" src="https://matmatch.com/blog/wp-content/uploads/2020/10/grow-with-matmatch-cta.jpg" style="max-width:60%"/></a></div><div class="header-action-link__CtaWrapper-sc-1yhrwj5-0 dvhoXp"><a href="https://go.matmatch.com/advertise?headerImage"><img alt="Advertise" src="https://matmatch.com/blog/wp-content/uploads/2021/02/media-cta.jpg" style="max-width:60%"/></a></div><div class="header-action-link__CtaWrapper-sc-1yhrwj5-0 dvhoXp"><a href="/supplier-resources"><img alt="Resources" src="https://matmatch.com/blog/wp-content/uploads/2020/10/marketing-resources-cta.jpg" style="max-width:60%"/></a></div></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 kneKJ"><span class="icon__Icon-sc-1230ehg-0 bZBKhy" color="2.0/default" size="30" type="arrow-up"></span></div></div></div></div></div></div><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 eYFpTR desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItemLink-sc-vppewv-2 goozRc" href="/resources">Resources</a><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 eYFpTR desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItemLink-sc-vppewv-2 goozRc" href="/about">About us</a><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 eYFpTR desktop-header-navigation-links__DesktopHeaderNavigationLinksBarItemLink-sc-vppewv-2 goozRc" href="/services/get-connected">Get Connected</a></div></div></div></div></div><div class="header__MobileHeaderWrapper-sc-vi2mkw-2 eWjGyj"><div class="mobile-header__MobileHeaderWrapper-sc-dvud91-0 kDpNZQ"><div class="mobile-header__MobileHeaderStaticBar-sc-dvud91-1 iiDvup"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 styled-link-styles__ImageLinkStyles-sc-l1ctuc-2 eePTOF dOZIXC" height="22" href="/" src="/static/images/inlined/logo_inverted.svg" width="95"></a><div class="mobile-header__MobileHeaderStaticBarSearchIconWrapper-sc-dvud91-2 cmjpNo"><span class="icon__Icon-sc-1230ehg-0 cXnjPW" color="2.0/white" type="ios-search-strong"></span></div><span class="icon__Icon-sc-1230ehg-0 eyhBpa" color="2.0/white" size="22" type="android-menu"></span></div><div class="mobile-header__MobileHeaderSlideDownWrapper-sc-dvud91-6 cwmMhq"><div class="mobile-header__MobileHeaderSlideDownHeader-sc-dvud91-5 CjJpx"><ul class="mobile-header__MobileHeaderMenuList-sc-dvud91-3 hpPhjx"><li class="mobile-header__MobileHeaderMenuListItem-sc-dvud91-4 tMWkf"><div class="mobile-header-user-not-signed-in__MobileHeaderUserNotSignedInWrapper-sc-195838o-0 hvBjgr"><button class="button__BaseButton-sc-ekfcy0-0 mobile-header-user-not-signed-in__MobileHeaderUserSignInButton-sc-195838o-2 NWGvI bTObyH">Sign in</button><button class="button__BaseButton-sc-ekfcy0-0 mobile-header-user-not-signed-in__MobileHeaderUserSignUpButton-sc-195838o-1 NWGvI lpgqvm">Register</button><p class="text__Text-sc-f4nboj-0 cJojhb">You are not signed in</p></div></li><li class="mobile-header__MobileHeaderMenuListItem-sc-dvud91-4 tMWkf"><ul class="list__List-sc-7ainlj-0 mobile-profile-menu__HeaderProfileMenuList-sc-c6el3s-0 uluvW eipfdL"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 fpFFKD" href="/messages"><li class="list__ListItem-sc-7ainlj-1 mobile-profile-menu__HeaderProfileMenuItem-sc-c6el3s-1 RbSSA eidcBU">Messages</li></a><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 fpFFKD" href="/account"><li class="list__ListItem-sc-7ainlj-1 mobile-profile-menu__HeaderProfileMenuItem-sc-c6el3s-1 RbSSA eidcBU">Profile</li></a><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 fpFFKD" href="/account/settings"><li class="list__ListItem-sc-7ainlj-1 mobile-profile-menu__HeaderProfileMenuItem-sc-c6el3s-1 RbSSA eidcBU">Settings</li></a><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 fpFFKD" href="/advanced-search?categories=steel&amp;tags=form%3Abar#"><li class="list__ListItem-sc-7ainlj-1 mobile-profile-menu__HeaderProfileMenuItem-sc-c6el3s-1 RbSSA eidcBU">Sign out</li></a></ul></li><hr class="separation-line__SeparationLine-sc-1gtqai2-0 separation-line__SeparationLineDefault-sc-1gtqai2-1 cVgbLf kwnPiJ"/><li class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBar-sc-ssinjx-0 evPxyJ"><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 lgzuuz"><p class="text__Text-sc-f4nboj-0 mobile-header-dynamic-menu__MobileHeaderDropdownFirstLevelCategoryText-sc-ssinjx-2 dzDHxo bjzJUu">Categories</p><span class="icon__Icon-sc-1230ehg-0 kbRKml" color="2.0/primary" size="14" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 cJNByu bxYrpi"><div class="mobile-header-dynamic-menu__MobileHeaderDropdownItemsWrapper-sc-ssinjx-4 ghkwNZ"><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-categories-connected__MobileHeaderDropdownSecondLevelLinksWrapper-sc-rlj3br-0 cJNByu dlnRUd"><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 kYgdAl"><div style="flex:1"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 elfMjy" href="/advanced-search?categories=biological-material">Biological Material</a></div></div><span class="icon__Icon-sc-1230ehg-0 iNazJp" color="2.0/primary" size="12" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 kTmWRN bxYrpi"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/advanced-search?categories=wood">Wood</a></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 kYgdAl"><div style="flex:1"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 elfMjy" href="/advanced-search?categories=ceramic">Ceramic</a></div></div><span class="icon__Icon-sc-1230ehg-0 iNazJp" color="2.0/primary" size="12" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 kTmWRN bxYrpi"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=carbon">Carbon</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=engineering-ceramic">Engineering Ceramic</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/advanced-search?categories=natural-ceramic">Natural Ceramic</a></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 kYgdAl"><div style="flex:1"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 elfMjy" href="/advanced-search?categories=composite">Composite</a></div></div><span class="icon__Icon-sc-1230ehg-0 iNazJp" color="2.0/primary" size="12" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 kTmWRN bxYrpi"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=ceramic-matrix-composite">Ceramic Matrix Composite</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=metal-matrix-composite">Metal Matrix Composite</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/advanced-search?categories=polymer-matrix-composite">Polymer Matrix Composite</a></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 kYgdAl"><div style="flex:1"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 elfMjy" href="/advanced-search?categories=glass">Glass</a></div></div><span class="icon__Icon-sc-1230ehg-0 iNazJp" color="2.0/primary" size="12" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 kTmWRN bxYrpi"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=glass-ceramic">Glass Ceramic</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=lead-glass">Lead Glass</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/advanced-search?categories=silicate-glass">Silicate Glass</a></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 kYgdAl"><div style="flex:1"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 elfMjy" href="/advanced-search?categories=polymer">Polymer</a></div></div><span class="icon__Icon-sc-1230ehg-0 iNazJp" color="2.0/primary" size="12" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 kTmWRN bxYrpi"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=elastomer">Elastomer</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=thermoplastic">Thermoplastic</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/advanced-search?categories=thermosetting">Thermosetting</a></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 kYgdAl"><div style="flex:1"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 elfMjy" href="/advanced-search?categories=metal">Metal</a></div></div><span class="icon__Icon-sc-1230ehg-0 iNazJp" color="2.0/primary" size="12" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 kTmWRN bxYrpi"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=aluminium">Aluminium</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=clad---bimetal">Clad / Bimetal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=cobalt">Cobalt</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=copper">Copper</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=iron">Iron</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=magnesium">Magnesium</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=manganese">Manganese</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=nickel">Nickel</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=noble-metal">Noble Metal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=other-metal">Other Metal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=refractory-metal">Refractory Metal</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 fIeyGw" href="/advanced-search?categories=steel">Steel</a></div><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/advanced-search?categories=titanium">Titanium</a></div></div></div></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 lgzuuz"><p class="text__Text-sc-f4nboj-0 mobile-header-dynamic-menu__MobileHeaderDropdownFirstLevelCategoryText-sc-ssinjx-2 dzDHxo bjzJUu">Matmatch Suppliers</p><span class="icon__Icon-sc-1230ehg-0 kbRKml" color="2.0/primary" size="14" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 cJNByu bxYrpi"><div class="mobile-header-dynamic-menu__MobileHeaderDropdownItemsWrapper-sc-ssinjx-4 ghkwNZ"><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-navigation__MobileHeaderDropdownSecondLevelLinksWrapper-sc-h9xaov-0 cJNByu eSAgkB"><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/supplier">List Your Materials</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/partners">Matmatch Partners</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/supplier-resources">Resources</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="https://go.matmatch.com/advertise">Advertise</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="https://go.matmatch.com/advertising-media-kit">Media Kit (Advertising)</a></div></div></div></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 lgzuuz"><p class="text__Text-sc-f4nboj-0 mobile-header-dynamic-menu__MobileHeaderDropdownFirstLevelCategoryText-sc-ssinjx-2 dzDHxo bjzJUu">Case Studies</p><span class="icon__Icon-sc-1230ehg-0 kbRKml" color="2.0/primary" size="14" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 cJNByu bxYrpi"><div class="mobile-header-dynamic-menu__MobileHeaderDropdownItemsWrapper-sc-ssinjx-4 ghkwNZ"><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-navigation__MobileHeaderDropdownSecondLevelLinksWrapper-sc-h9xaov-0 cJNByu eSAgkB"><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="https://go.matmatch.com/case-study/ampco-metal">AMPCO METAL</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="https://go.matmatch.com/case-study/dew">Deutsche Edelstahlwerke</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="https://go.matmatch.com/case-study/phon-tech">Phon Tech</a><span class="badge__LinkBadge-sc-1kc0y45-0 ejKxFX">new</span></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="https://go.matmatch.com/case-study/ceratizit">CERATIZIT</a><span class="badge__LinkBadge-sc-1kc0y45-0 ejKxFX">new</span></div></div></div></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 lgzuuz"><p class="text__Text-sc-f4nboj-0 mobile-header-dynamic-menu__MobileHeaderDropdownFirstLevelCategoryText-sc-ssinjx-2 dzDHxo bjzJUu">Tools</p><span class="icon__Icon-sc-1230ehg-0 kbRKml" color="2.0/primary" size="14" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 cJNByu bxYrpi"><div class="mobile-header-dynamic-menu__MobileHeaderDropdownItemsWrapper-sc-ssinjx-4 ghkwNZ"><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-navigation__MobileHeaderDropdownSecondLevelLinksWrapper-sc-h9xaov-0 cJNByu eSAgkB"><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/tools/unit-converter">Unit Converter</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/tools/hardness-converter">Hardness Converter</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/advanced-search">Advanced Search</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/application">Application Search</a></div></div><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="https://go.matmatch.com/sncurves">Fatigue Data</a></div></div></div></div></div><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 lgzuuz"><p class="text__Text-sc-f4nboj-0 mobile-header-dynamic-menu__MobileHeaderDropdownFirstLevelCategoryText-sc-ssinjx-2 dzDHxo bjzJUu">Guides</p><span class="icon__Icon-sc-1230ehg-0 kbRKml" color="2.0/primary" size="14" type="ios-arrow-down"></span></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderDropdownWrapper-sc-ssinjx-1 cJNByu bxYrpi"><div class="mobile-header-dynamic-menu__MobileHeaderDropdownItemsWrapper-sc-ssinjx-4 ghkwNZ"><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-navigation__MobileHeaderDropdownSecondLevelLinksWrapper-sc-h9xaov-0 cJNByu eSAgkB"><div class="mobile-header-dynamic-navigation__CategoriesBlockWrapper-sc-h9xaov-1 hHsZTR"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><a class="mobile-header-dropdown-link__MobileHeaderDropdownLinkStyles-sc-1ifsvtl-0 hKoOWf" href="/guide/sustainable-materials-selection">Sustainable Materials Selection</a></div></div></div></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarWrapper-sc-ssinjx-3 cJNByu"><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 lgzuuz"><p class="text__Text-sc-f4nboj-0 dSdjdP" color="#526193">Resources</p></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarWrapper-sc-ssinjx-3 cJNByu"><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 lgzuuz"><p class="text__Text-sc-f4nboj-0 dSdjdP" color="#526193">About us</p></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarWrapper-sc-ssinjx-3 cJNByu"><div class="mobile-header-dynamic-menu__MobileHeaderNavigationLinksBarItemstyledButton-sc-ssinjx-5 lgzuuz"><p class="text__Text-sc-f4nboj-0 dSdjdP" color="#526193">Get Connected</p></div></div></li></ul></div></div></div></div></div></div><div class="main-content-spacer__MainContentSpacer-sc-1g5s1bz-0 hWwxLn"></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperStaticContentNoFlex-sc-14fw43j-5 cJNByu flfCwz" style="padding-bottom:0"><div class="contextual-tags__ContextualTagsWrapper-sc-dg6jub-0 jnuTJQ"><div class="contextual-tags__ContextualTagsItemsWrapper-sc-dg6jub-2 cSROfV"><div class="contextual-tags__ContextualTagWrapper-sc-dg6jub-1 fsqjse"><p class="text__Text-sc-f4nboj-0 ehJUxb" color="#4f4f4f" size="16">Bar</p><svg class="icon__Svg-sc-1230ehg-1 caVxgD" cursor="pointer" fill="#3880E5" height="20" viewbox="0 0 30 30" width="20" xmlns="http://www.w3.org/2000/svg"><use href="#close-71610fd5--sprite"></use></svg></div></div></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 wrappers__WrapperStaticContent-sc-14fw43j-4 advanced-search__AdvancedSearchMainSectionWrapper-sc-1eqc1e8-1 cJNByu hFcCJB hzZiwD ixACSA"><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperSidebar-sc-14fw43j-10 sidebar__AdvancedSearchSidebarWrapper-sc-1v590t3-0 kqTmue fUzxei gyajYF" width="438"><div class="collapse-toggle__CollapseToggleWrapper-sc-vxcac6-0 gdlobs"><svg class="icon__Svg-sc-1230ehg-1 jWARuS collapse-toggle__CollapseToggleOptionsIcon-sc-vxcac6-1 gFfIFF" fill="#526193" height="20" viewbox="0 0 30 30" width="20" xmlns="http://www.w3.org/2000/svg"><use href="#options-4de2f7a5--sprite"></use></svg><div class="collapse-toggle__CollapseToggleTitle-sc-vxcac6-2 iTeGNl">FILTERS</div><div class="collapse-toggle__CollapseToggleArrowCircle-sc-vxcac6-3 cgzKyT"><svg class="icon__Svg-sc-1230ehg-1 fXOOJz" fill="#3880e5" height="32" viewbox="0 0 30 30" width="32" xmlns="http://www.w3.org/2000/svg"><use href="#arrow-dropright-circle-d7d58289--sprite"></use></svg></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu gFqwTB"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><p class="text__Text-sc-f4nboj-0 jLqxex" color="#526193">Categories </p></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu dMXLyl"><svg class="icon__Svg-sc-1230ehg-1 haqEoE" cursor="pointer" fill="#333333" height="14" viewbox="0 0 30 30" width="14" xmlns="http://www.w3.org/2000/svg"><use href="#ios-arrow-down-cc61b5f7--sprite"></use></svg></div></div><div class="advanced-search-sidebar-collapsible-filters-wrapper__ASSidebarCollapsibleFiltersWrapper-sc-1m5vrop-0 XbfDr categories-tree-wrapper"><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 UxvCa dMXLyl"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 cgTHVD" color="#333333" size="13">All</p></div><ul class="tree-renderer__TreeWrapper-sc-wdfwzn-0 djLvdn"><li class="tree-item__TreeItem-sc-1ndoqn1-0 bhkHlB de-collapsed-tree-item"><svg class="icon__Svg-sc-1230ehg-1 hrGMmp" cursor="pointer" fill="#4496ec" height="12" viewbox="0 0 30 30" width="12" xmlns="http://www.w3.org/2000/svg"><use href="#plus-open-47001aa9--sprite"></use></svg><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 bBVMlc"></div><svg class="icon__Svg-sc-1230ehg-1 enTUov" cursor="pointer" fill="#4496ec" height="22" viewbox="0 0 30 30" width="28" xmlns="http://www.w3.org/2000/svg"><use href="#folder-344ee9af--sprite"></use></svg><p class="text__Text-sc-f4nboj-0 hjLFxX" size="13">Biological Material</p></li><div class="wrappers__CollapseContentWrapper-sc-14fw43j-12 ftzCdl"></div><li class="tree-item__TreeItem-sc-1ndoqn1-0 bhkHlB de-collapsed-tree-item"><svg class="icon__Svg-sc-1230ehg-1 hrGMmp" cursor="pointer" fill="#4496ec" height="12" viewbox="0 0 30 30" width="12" xmlns="http://www.w3.org/2000/svg"><use href="#plus-open-47001aa9--sprite"></use></svg><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 bBVMlc"></div><svg class="icon__Svg-sc-1230ehg-1 enTUov" cursor="pointer" fill="#4496ec" height="22" viewbox="0 0 30 30" width="28" xmlns="http://www.w3.org/2000/svg"><use href="#folder-344ee9af--sprite"></use></svg><p class="text__Text-sc-f4nboj-0 hjLFxX" size="13">Ceramic</p></li><div class="wrappers__CollapseContentWrapper-sc-14fw43j-12 ftzCdl"></div><li class="tree-item__TreeItem-sc-1ndoqn1-0 bhkHlB de-collapsed-tree-item"><svg class="icon__Svg-sc-1230ehg-1 hrGMmp" cursor="pointer" fill="#4496ec" height="12" viewbox="0 0 30 30" width="12" xmlns="http://www.w3.org/2000/svg"><use href="#plus-open-47001aa9--sprite"></use></svg><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 bBVMlc"></div><svg class="icon__Svg-sc-1230ehg-1 enTUov" cursor="pointer" fill="#4496ec" height="22" viewbox="0 0 30 30" width="28" xmlns="http://www.w3.org/2000/svg"><use href="#folder-344ee9af--sprite"></use></svg><p class="text__Text-sc-f4nboj-0 hjLFxX" size="13">Composite</p></li><div class="wrappers__CollapseContentWrapper-sc-14fw43j-12 ftzCdl"></div><li class="tree-item__TreeItem-sc-1ndoqn1-0 bhkHlB de-collapsed-tree-item"><svg class="icon__Svg-sc-1230ehg-1 hrGMmp" cursor="pointer" fill="#4496ec" height="12" viewbox="0 0 30 30" width="12" xmlns="http://www.w3.org/2000/svg"><use href="#plus-open-47001aa9--sprite"></use></svg><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 bBVMlc"></div><svg class="icon__Svg-sc-1230ehg-1 enTUov" cursor="pointer" fill="#4496ec" height="22" viewbox="0 0 30 30" width="28" xmlns="http://www.w3.org/2000/svg"><use href="#folder-344ee9af--sprite"></use></svg><p class="text__Text-sc-f4nboj-0 hjLFxX" size="13">Glass</p></li><div class="wrappers__CollapseContentWrapper-sc-14fw43j-12 ftzCdl"></div><li class="tree-item__TreeItem-sc-1ndoqn1-0 bhkHlB collapsed-tree-item"><svg class="icon__Svg-sc-1230ehg-1 hrGMmp" cursor="pointer" fill="#4496ec" height="12" viewbox="0 0 30 30" width="12" xmlns="http://www.w3.org/2000/svg"><use href="#plus-open-47001aa9--sprite"></use></svg><div checked="" class="check-box__MinusCheckboxDesign-sc-1ptpc08-1 dsaEue"></div><svg class="icon__Svg-sc-1230ehg-1 enTUov" cursor="pointer" fill="#4496ec" height="22" viewbox="0 0 30 30" width="28" xmlns="http://www.w3.org/2000/svg"><use href="#folder-344ee9af--sprite"></use></svg><p class="text__Text-sc-f4nboj-0 hjLFxX" size="13">Metal</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">2214</span></li><div class="wrappers__CollapseContentWrapper-sc-14fw43j-12 ftzCdl"></div><li class="tree-item__TreeItem-sc-1ndoqn1-0 bhkHlB de-collapsed-tree-item"><svg class="icon__Svg-sc-1230ehg-1 hrGMmp" cursor="pointer" fill="#4496ec" height="12" viewbox="0 0 30 30" width="12" xmlns="http://www.w3.org/2000/svg"><use href="#plus-open-47001aa9--sprite"></use></svg><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 bBVMlc"></div><svg class="icon__Svg-sc-1230ehg-1 enTUov" cursor="pointer" fill="#4496ec" height="22" viewbox="0 0 30 30" width="28" xmlns="http://www.w3.org/2000/svg"><use href="#folder-344ee9af--sprite"></use></svg><p class="text__Text-sc-f4nboj-0 hjLFxX" size="13">Polymer</p></li><div class="wrappers__CollapseContentWrapper-sc-14fw43j-12 ftzCdl"></div></ul></div><hr class="advanced-search-sidebar-separator__AdvancedSearchSidebarSeparator-sc-1rstb9s-0 dDcZzF"/><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu gFqwTB"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><p class="text__Text-sc-f4nboj-0 jLqxex" color="#526193">Material properties </p></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu dMXLyl"><svg class="icon__Svg-sc-1230ehg-1 haqEoE" cursor="pointer" fill="#333333" height="14" viewbox="0 0 30 30" width="14" xmlns="http://www.w3.org/2000/svg"><use href="#ios-arrow-down-cc61b5f7--sprite"></use></svg></div></div><div class="advanced-search-sidebar-collapsible-filters-wrapper__ASSidebarCollapsibleFiltersWrapper-sc-1m5vrop-0 XbfDr categories-tree-wrapper"><div></div></div><div class="advanced-search-sidebar-actions__ActionsWrapper-sc-qhfbni-0 cwhWGZ"><button class="advanced-search-sidebar-action-button__ActionButton-sc-15cfzym-0 hXYfhe">Add a material property<span class="icon__Icon-sc-1230ehg-0 eiXgPa" color="2.0/white" size="10" type="plus"></span></button><p class="text__Text-sc-f4nboj-0 advanced-search-sidebar-actions__ActionsText-sc-qhfbni-1 ldWNpx hVhMIm" color="#3880E5" cursor="pointer" disabled="" size="13">Clear all</p></div><hr class="advanced-search-sidebar-separator__AdvancedSearchSidebarSeparator-sc-1rstb9s-0 dDcZzF"/><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu gFqwTB"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><p class="text__Text-sc-f4nboj-0 jLqxex" color="#526193">Metal Filters</p></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu dMXLyl"><svg class="icon__Svg-sc-1230ehg-1 haqEoE" cursor="pointer" fill="#333333" height="14" viewbox="0 0 30 30" width="14" xmlns="http://www.w3.org/2000/svg"><use href="#ios-arrow-down-cc61b5f7--sprite"></use></svg></div></div><div class="advanced-search-sidebar-collapsible-filters-wrapper__ASSidebarCollapsibleFiltersWrapper-sc-1m5vrop-0 XbfDr categories-tree-wrapper"><div class="guided-tour-step-category-specific-settings"><p class="text__Text-sc-f4nboj-0 LLywI" color="#333333" size="13">Shape / Form</p><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><div class="advanced-search-category-specific-settings-dropdown__FieldWrapper-sc-113hj4-1 epQYxF"><p class="text__Text-sc-f4nboj-0 advanced-search-category-specific-settings-dropdown__FieldText-sc-113hj4-0 hjtwVq gNwTRO" color="#333333" size="16">Bar</p><span><span style="cursor:help;display:block;flex-direction:column;z-index:100"><span class="icon__Icon-sc-1230ehg-0 kXkjMs" color="2.0/default" size="12" type="close"></span></span></span><span><span style="cursor:help;display:block;flex-direction:column;z-index:100"><div class="advanced-search-category-specific-settings-dropdown__PlusIconContainer-sc-113hj4-7 zzdEX"><div class="plus-icon__PlusIcon-sc-13w6ro8-0 fdCHWk" size="16"></div></div></span></span></div><div class="advanced-search-category-specific-settings-dropdown__DropDownContainer-sc-113hj4-2 kRDCWz"><div class="advanced-search-category-specific-settings-dropdown__DropDownItemsWrapper-sc-113hj4-3 huFKrQ"></div></div></div></div></div><hr class="advanced-search-sidebar-separator__AdvancedSearchSidebarSeparator-sc-1rstb9s-0 dDcZzF"/><p class="text__Text-sc-f4nboj-0 hLVIHw" color="#526193">SYSTEM MEASUREMENTS</p><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bcLXBB dMXLyl"><div class="radio-button__RadioButtonOuter-sc-mwb92w-0 hucmjH"><div class="radio-button__RadioButtonInner-sc-mwb92w-1 jXbQYq"></div></div><p class="text__Text-sc-f4nboj-0 KmEHA" color="#333333" size="13">Metric</p></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE dMXLyl"><div class="radio-button__RadioButtonOuter-sc-mwb92w-0 hucmjH"></div><p class="text__Text-sc-f4nboj-0 KmEHA" color="#333333" size="13">Imperial</p></div><hr class="advanced-search-sidebar-separator__AdvancedSearchSidebarSeparator-sc-1rstb9s-0 dDcZzF"/><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu gFqwTB"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><p class="text__Text-sc-f4nboj-0 jLqxex" color="#526193">Suppliers </p></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu dMXLyl"><svg class="icon__Svg-sc-1230ehg-1 haqEoE" cursor="pointer" fill="#333333" height="14" viewbox="0 0 30 30" width="14" xmlns="http://www.w3.org/2000/svg"><use href="#ios-arrow-down-cc61b5f7--sprite"></use></svg></div></div><div class="advanced-search-sidebar-collapsible-filters-wrapper__ASSidebarCollapsibleFiltersWrapper-sc-1m5vrop-0 XbfDr categories-tree-wrapper"><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 zDQjJ cwHZQB"><div class="advanced-search-sidebar-suppliers__ItemHeaderWrapper-sc-12new5k-0 cFpniu"><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">Include materials without suppliers</p><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 dTGKOg hFcCJB"><div checked="" class="toggle__ToggleWrapper-sc-th0yzv-0 gslBUi"><div checked="" class="toggle__ToggleCheckmark-sc-th0yzv-1 hbpQfU"></div><div checked="" class="toggle__ToggleToggle-sc-th0yzv-2 fArqYf"></div></div></div></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE cwHZQB"><div class="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0 iPlPmm"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">Deutsche Edelstahlwerke (DEW)</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">93</span></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE cwHZQB"><div class="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0 iPlPmm"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">Ugitech</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">50</span></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE cwHZQB"><div class="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0 iPlPmm"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">Sverdrup Steel AS</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">20</span></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE cwHZQB"><div class="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0 iPlPmm"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">Salomon's Metalen</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">16</span></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE cwHZQB"><div class="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0 iPlPmm"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">Hempel Special Metals</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">4</span></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE cwHZQB"><div class="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0 iPlPmm"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">VDM Metals</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">1</span></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE cwHZQB"><div class="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0 iPlPmm"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">Dongguan songshun mould steel Co., Ltd.</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">13</span></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 bRaHnE cwHZQB"><div class="advanced-search-sidebar-item-header__ItemHeaderWrapper-sc-1n7d7as-0 iPlPmm"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 OhGlj"></div><p class="text__Text-sc-f4nboj-0 fWynpt" color="#333333" size="13">Ambica Steels Limited</p><span class="advanced-search-count-number__CountNumber-sc-8hlubs-0 eajQMm">10</span></div></div></div><div class="advanced-search-sidebar-actions__ActionsWrapper-sc-qhfbni-0 cwhWGZ"><button class="advanced-search-sidebar-action-button__ActionButton-sc-15cfzym-0 hXYfhe">See all suppliers</button><p class="text__Text-sc-f4nboj-0 advanced-search-sidebar-actions__ActionsText-sc-qhfbni-1 ldWNpx hVhMIm" color="#3880E5" cursor="pointer" disabled="" size="13">Clear all</p></div><hr class="advanced-search-sidebar-separator__AdvancedSearchSidebarSeparator-sc-1rstb9s-0 dDcZzF"/><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu gFqwTB"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><p class="text__Text-sc-f4nboj-0 jLqxex" color="#526193">Applications </p></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 cJNByu dMXLyl"><svg class="icon__Svg-sc-1230ehg-1 haqEoE" cursor="pointer" fill="#333333" height="14" viewbox="0 0 30 30" width="14" xmlns="http://www.w3.org/2000/svg"><use href="#ios-arrow-down-cc61b5f7--sprite"></use></svg></div></div><div class="advanced-search-sidebar-collapsible-filters-wrapper__ASSidebarCollapsibleFiltersWrapper-sc-1m5vrop-0 XbfDr categories-tree-wrapper"></div><div class="advanced-search-sidebar-actions__ActionsWrapper-sc-qhfbni-0 cwhWGZ"><button class="advanced-search-sidebar-action-button__ActionButton-sc-15cfzym-0 hXYfhe">Add an application<span class="icon__Icon-sc-1230ehg-0 eiXgPa" color="2.0/white" size="10" type="plus"></span></button><p class="text__Text-sc-f4nboj-0 advanced-search-sidebar-actions__ActionsText-sc-qhfbni-1 ldWNpx hVhMIm" color="#3880E5" cursor="pointer" disabled="" size="13">Clear all</p></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperMainContent-sc-14fw43j-9 results-list-view__AdvancedSearchMainContentWrapper-sc-d70l4k-1 cJNByu prlvG ifaaZC"><div class="results-list-view__TopPositionBannerWrapper-sc-d70l4k-0 jleRfd"><div class="campaigns__CampaignBannerWrapper-sc-a2pwr6-0 ewHqQp" height="90"></div></div><div class="results-list-view__AdvancedSearchAllertsWrapper-sc-d70l4k-2 dgFZRr"></div><div class="navigation-component__AdvancedSearchNavigationComponentWrapper-sc-1j05mwq-0 fHnuKk"><div class="navigation-component__AdvancedSearchNavigationItemWrapper-sc-1j05mwq-1 fmDqYN"><div class="navigation-component__NavigationItemNumber-sc-1j05mwq-2 bwwYIA">1</div><p class="text__Text-sc-f4nboj-0 eUTBqM" color="#ff8200" size="16">RESULT LIST</p></div><div class="navigation-component__AdvancedSearchNavigationItemWrapper-sc-1j05mwq-1 hmFsem"><div class="navigation-component__NavigationItemNumber-sc-1j05mwq-2 fgAGgQ">2</div><p class="text__Text-sc-f4nboj-0 hMWWGw" color="#828282" size="16">VISUALISE IN ASHBY</p></div></div><div class="header-properties-dropdown__PropertiesDropdownWrapper-sc-jye0ar-0 emgOuh"><div style="width:32%">Material</div><div style="flex:1"><div class="custom-dropdown__CustomDropdownWrapper-sc-1r4pk0f-0 fLuqrw"><div class="custom-dropdown__CustomDropdown-sc-1r4pk0f-1 hxQNhN"><div class="custom-dropdown__CustomDropdownTrigger-sc-1r4pk0f-2 grBuVO"><span class="custom-dropdown__CustomDropdownOption-sc-1r4pk0f-4 custom-dropdown__CustomDropdownOptionCurrent-sc-1r4pk0f-6 custom-dropdown__CustomDropdownOptionPlaceholder-sc-1r4pk0f-7 hwiCoG dUfhYU cwaUxH">- Property</span><div class="custom-dropdown__CustomDropdownArrow-sc-1r4pk0f-8 kOKDxB"></div></div><div class="custom-dropdown__CustomDropdownOptions-sc-1r4pk0f-3 cqRtVo"><span class="custom-dropdown__CustomDropdownInfo-sc-1r4pk0f-5 kaSqTa">No items</span></div></div><span class="icon__Icon-sc-1230ehg-0 custom-dropdown__SortingIcon-sc-1r4pk0f-9 kTando" color="2.0/multicolor" cursor="unset" size="20" type="default"></span></div></div><div style="flex:1"><div class="custom-dropdown__CustomDropdownWrapper-sc-1r4pk0f-0 fLuqrw"><div class="custom-dropdown__CustomDropdown-sc-1r4pk0f-1 hxQNhN"><div class="custom-dropdown__CustomDropdownTrigger-sc-1r4pk0f-2 grBuVO"><span class="custom-dropdown__CustomDropdownOption-sc-1r4pk0f-4 custom-dropdown__CustomDropdownOptionCurrent-sc-1r4pk0f-6 custom-dropdown__CustomDropdownOptionPlaceholder-sc-1r4pk0f-7 hwiCoG dUfhYU cwaUxH">- Property</span><div class="custom-dropdown__CustomDropdownArrow-sc-1r4pk0f-8 kOKDxB"></div></div><div class="custom-dropdown__CustomDropdownOptions-sc-1r4pk0f-3 cqRtVo"><span class="custom-dropdown__CustomDropdownInfo-sc-1r4pk0f-5 kaSqTa">No items</span></div></div><span class="icon__Icon-sc-1230ehg-0 custom-dropdown__SortingIcon-sc-1r4pk0f-9 kTando" color="2.0/multicolor" cursor="unset" size="20" type="default"></span></div></div><div style="flex:1"><div class="custom-dropdown__CustomDropdownWrapper-sc-1r4pk0f-0 fLuqrw"><div class="custom-dropdown__CustomDropdown-sc-1r4pk0f-1 hxQNhN"><div class="custom-dropdown__CustomDropdownTrigger-sc-1r4pk0f-2 grBuVO"><span class="custom-dropdown__CustomDropdownOption-sc-1r4pk0f-4 custom-dropdown__CustomDropdownOptionCurrent-sc-1r4pk0f-6 custom-dropdown__CustomDropdownOptionPlaceholder-sc-1r4pk0f-7 hwiCoG dUfhYU cwaUxH">- Property</span><div class="custom-dropdown__CustomDropdownArrow-sc-1r4pk0f-8 kOKDxB"></div></div><div class="custom-dropdown__CustomDropdownOptions-sc-1r4pk0f-3 cqRtVo"><span class="custom-dropdown__CustomDropdownInfo-sc-1r4pk0f-5 kaSqTa">No items</span></div></div><span class="icon__Icon-sc-1230ehg-0 custom-dropdown__SortingIcon-sc-1r4pk0f-9 kTando" color="2.0/multicolor" cursor="unset" size="20" type="default"></span></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Superaustenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/destb19-acidur-4529" target="_blank">Acidur 4529</a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Austenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests11-acidur-4401-at-" target="_blank">Acidur 4401 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Austenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests12-acidur-4435-at-" target="_blank">Acidur 4435 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Austenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests13-acidur-4541-at-" target="_blank">Acidur 4541 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Austenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests14-acidur-4571-at-" target="_blank">Acidur 4571 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 dSEUZx"><div class="adbutler__CampaignBannerWrapper-sc-1snm6gk-0 dcaIxI"><div class="adbutler__CampaignBannerInnerWrapper-sc-1snm6gk-1 fgLnFQ" height="90" id="advanced_search_slot"><a href="https://go.matmatch.com/advertise"><img src="/static/images/lorem-ipsum.png"/></a></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Austenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests11a-acidur-4404-at-" target="_blank">Acidur 4404 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Austenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests9-acidur-4301-at-" target="_blank">Acidur 4301 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Austenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests9a-acidur-4307-at-" target="_blank">Acidur 4307 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Austenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests10-acidur-4305-at-" target="_blank">Acidur 4305 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Superaustenitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/vdmm023-vdm-alloy-926" target="_blank">VDM® Alloy 926</a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/vdmm-vdm-metals" size="13" target="_blank">VDM Metals</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Martensitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests7-acidur-4418-qt900-" target="_blank">Acidur 4418 QT900 </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Duplex Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests15-acidur-4462-at-" target="_blank">Acidur 4462 +AT </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Martensitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests7a-acidur-4418-qt760-" target="_blank">Acidur 4418 QT760 </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Duplex Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/ugit0076-ugima-4460-cold-finished" target="_blank">UGIMA® 4460 Cold Finished</a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/ugit-ugitech" size="13" target="_blank">Ugitech</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Duplex Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/ugit0077-ugima-4460-cold-finished-and-drawn" target="_blank">UGIMA® 4460 Cold Finished and Drawn</a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/ugit-ugitech" size="13" target="_blank">Ugitech</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Precipitation Hardening Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/ugit0129-ugi-4545-air-h1025" target="_blank">UGI® 4545 AIR H1025</a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/ugit-ugitech" size="13" target="_blank">Ugitech</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Martensitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests1-corrodur-4021-qt800-" target="_blank">Corrodur 4021 QT800 </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Martensitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests3-corrodur-4034-annealed-" target="_blank">Corrodur 4034 Annealed </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Martensitic Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests4-acidur-4057-qt800-" target="_blank">Acidur 4057 QT800 </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="materials-list__MaterialsListItem-sc-1ickte1-0 cVjyqt"><div class="materials-list__MaterialDataWrapper-sc-1ickte1-1 dtZnEZ"><p class="text__Text-sc-f4nboj-0 iidREl" color="#828282" size="13">Precipitation Hardening Stainless Steel</p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 QbWNQ" color="#3880E5" href="/materials/dests8-acidur-4542-p800-" target="_blank">Acidur 4542 P800 </a><p class="text__Text-sc-f4nboj-0 lolWkU" size="13">Supplied by: </p><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 dhcylR" color="#333333" href="/suppliers/dest-deutsche-edelstahlwerke-dew-" size="13" target="_blank">Deutsche Edelstahlwerke (DEW)</a></div><div class="materials-list__MaterialPropsWrapper-sc-1ickte1-2 hTQFno"></div><div class="materials-list__MaterialCompareWrapper-sc-1ickte1-3 bDcoHI"><div class="check-box__CheckBoxDesign-sc-1ptpc08-0 kurrkX"></div></div></div><div class="pagination__PaginationWrapper-sc-1s1bcvk-0 fLLraV"><button class="button__BaseButton-sc-ekfcy0-0 button__ButtonPrimary-sc-ekfcy0-1 eGHzTm nqeas" data-test-item="prev-page" disabled=""></button><div class="pagination__PaginationPagesText-sc-1s1bcvk-1 TXmbf">Page 1 of 111</div><button class="button__BaseButton-sc-ekfcy0-0 button__ButtonPrimary-sc-ekfcy0-1 ljvJNw nqeas" data-test-item="next-page"></button></div></div></div><div class="footer-container__FooterContainer-sc-16jfcf3-0 kUuTvA"><div class="static-page-wrappers__StaticPageContentWrapper-sc-fz58vx-1 fGzocz"><div class="wrappers__Wrapper-sc-14fw43j-0 footer__FooterWrapper-sc-1vgte7v-0 cJNByu greBxI"><div class="footer__FooterResponsiveWrapper-sc-1vgte7v-2 jdQCEK"><div class="footer-matmatch-logo-and-gdpr__NameAndDescriptionWrapper-sc-1mbx1ll-0 lcDCgL"><div class="wrappers__Wrapper-sc-14fw43j-0 footer-list__FooterListHeading-sc-17tjnty-1 cJNByu gFyZtw"><p class="text__Text-sc-f4nboj-0 tenyk" color="#526193" size="20">MATMATCH</p></div><p class="text__Text-sc-f4nboj-0 hjtwVq" color="#333333" size="16">We connect engineers, product designers and procurement teams with the best materials and suppliers for their job.</p></div><div class="wrappers__Wrapper-sc-14fw43j-0 footer-list__FooterListWrapper-sc-17tjnty-0 cJNByu iIAlRS"><div class="wrappers__Wrapper-sc-14fw43j-0 footer-list__FooterListHeading-sc-17tjnty-1 cJNByu gFyZtw"><p class="text__Text-sc-f4nboj-0 tenyk" color="#526193" size="20">COMPANY</p></div><ul class="list__List-sc-7ainlj-0 uluvW"><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="/about">About us</a></li><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="https://matmatch-gmbh.jobs.personio.de/">Career</a></li><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="/resources">Resources</a></li><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="/supplier">For suppliers</a></li><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="https://go.matmatch.com/advertise">Advertise</a><span class="badge__LinkBadge-sc-1kc0y45-0 ejKxFX">new</span></li></ul></div><div class="wrappers__Wrapper-sc-14fw43j-0 footer-list__FooterListWrapper-sc-17tjnty-0 cJNByu iIAlRS"><div class="wrappers__Wrapper-sc-14fw43j-0 footer-list__FooterListHeading-sc-17tjnty-1 cJNByu gFyZtw"><p class="text__Text-sc-f4nboj-0 tenyk" color="#526193" size="20">GENERAL</p></div><ul class="list__List-sc-7ainlj-0 uluvW"><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="/imprint">Legal</a></li><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="/imprint#privacy-policy">Privacy</a></li><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="/imprint#tnc-buyers">Terms &amp; Conditions</a></li><li class="list__ListItem-sc-7ainlj-1 bzfZbQ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 kdVFv" color="#333333" href="https://www.plansee.com/en/about-us/whistleblower-system.html">Whistleblower System</a></li></ul></div><ul class="list__List-sc-7ainlj-0 footer-social-links__SocialLinksList-sc-1hjdthk-0 uluvW hwyVjw"><li class="footer-social-links__SocialLinksListItem-sc-1hjdthk-1 jkNDpJ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 fpFFKD" href="https://www.linkedin.com/company/matmatch"><span class="icon__Icon-sc-1230ehg-0 duJtpp" color="2.0/footer" fill="#526193" size="30" type="social-linkedin"></span></a></li><li class="footer-social-links__SocialLinksListItem-sc-1hjdthk-1 jkNDpJ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 fpFFKD" href="https://twitter.com/MatmatchGmbH"><span class="icon__Icon-sc-1230ehg-0 UGQFe" color="2.0/footer" fill="#526193" size="30" type="social-twitter"></span></a></li><li class="footer-social-links__SocialLinksListItem-sc-1hjdthk-1 jkNDpJ"><a class="styled-link-styles__StyledLinkStyles-sc-l1ctuc-0 fpFFKD" href="https://www.facebook.com/MatmatchGmbH/"><span class="icon__Icon-sc-1230ehg-0 bfOfuL" color="2.0/footer" fill="#526193" size="30" type="social-facebook"></span></a></li></ul></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 footer__FooterWrapper-sc-1vgte7v-0 cJNByu greBxI"><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 footer__FooterMiddleWrapper-sc-1vgte7v-1 kXMRZj cdLigN hZBBnE"><div class="wrappers__Wrapper-sc-14fw43j-0 cJNByu"><div class="wrappers__Wrapper-sc-14fw43j-0 footer-list__FooterListHeading-sc-17tjnty-1 cJNByu gFyZtw"><p class="text__Text-sc-f4nboj-0 tenyk" color="#526193" size="20">CONTACT US</p></div><ul class="list__List-sc-7ainlj-0 uluvW"><li class="list__ListItem-sc-7ainlj-1 cJazBI"><span class="icon__Icon-sc-1230ehg-0 cnxXUV" color="2.0/footer" cursor="default" size="16" type="ios-telephone"></span><p class="text__Text-sc-f4nboj-0 GTisG" color="#333333" size="16">+49 89 262075200</p></li><li class="list__ListItem-sc-7ainlj-1 gJZFKn"><span class="icon__Icon-sc-1230ehg-0 jLgsnQ" color="2.0/footer" cursor="default" size="16" type="ios-location"></span><p class="text__Text-sc-f4nboj-0 GTisG" color="#333333" size="16">Leopoldstraße 250 A, 80807 Munich</p></li></ul></div></div></div><div class="wrappers__Wrapper-sc-14fw43j-0 footer__FooterWrapper-sc-1vgte7v-0 cJNByu greBxI"><div class="wrappers__Wrapper-sc-14fw43j-0 kXMRZj"><hr class="separation-line__SeparationLine-sc-1gtqai2-0 separation-line__SeparationLineDefault-sc-1gtqai2-1 dLmbUA kwnPiJ"/><div class="wrappers__Wrapper-sc-14fw43j-0 wrappers__WrapperFlex-sc-14fw43j-3 footer-copyright__FooterCopyrightWrapper-sc-p1jkef-0 eHEnyb cdLigN jHUSlK"><p class="text__Text-sc-f4nboj-0 cgTHVD" color="#333333" size="13">© <!-- -->2021<!-- --> Matmatch GmbH, All rights reserved.</p><p class="text__Text-sc-f4nboj-0 cgTHVD" color="#333333" size="13">Made with ♥ in Munich!</p></div></div></div></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"initialProps":{"initialI18nStore":{"en":{"account":{"forgot-password":"Forgot password?","forgot-password-description":"In case you forgot your password you can request to reset it here.","forgot-password-cta":"Request reset link","delete-account-error":"Some problems were occurred while deleting your account.","next-step":{"title":"Almost Done!","description":"An email has been sent to you with the link to reset you password.","cta":"Back to sign in","title-second":"Now check your inbox","description-second":"Please check your inbox, an email with the password reset link has been sent to {{email}}!"},"settings":{"title":"Settings","reset-password-description":"If you would like to change your password, please click the button below. We will e-mail you a link you can use to set a new password.","reset-password-cta":"Reset Password","delete-account":"Delete Account"},"my-saved-materials":"My saved materials","all-saved-materials":"See all saved materials","search-and-save-materials":"Search and save material data sheets","my-saved-searches":"My saved searches","all-saved-searches":"See all saved searches","latest-articles":"Latest articles","my-matmatch-account":"My Matmatch Account","my-supplier-network":"My Supplier Network","info-box-message":"Do you need help with your project or choosing the right material?","industry-leads-in-country":"Industry leaders in {{country}} you may know","industry-leads":"Industry leaders you may know","see-all-suppliers":"See all our Suppliers","title":"My Account","edit-profile":{"title":"Edit Profile"}},"common":{"register":"Register","property":"Property","welcome-back":"Welcome back","property-name":"Property Name","interaction":"Interaction","event-date":"Event Date","material-name":"Material Name","contact":"Contact","finish":"Finish","system-measurements":"System Measurements","metric":"Metric","imperial":"Imperial","audience":"Audience","or":"or","eg":"e.g.","and":"and","next":"Next","privacy":"Privacy","removed":"Removed","undo":"Undo","value":"Value","biography":"Biography","type":"Type","near-me":"Near me","legal":"Legal","career":"Career","back-to-results":"Back to results","save-changes":"Save changes","show":"Show","materials":"Materials","searches":"Searches","send":"Send","unit":"Unit","code":"Code","result":"Result","name":"Name","locations":"Locations","save":"Save","more":"More","read":"Read","properties":"Properties","industries":"Industries","add":"Add","less":"Less","blog":"Blog","resources":"Resources","see-all":"See all","blog-articles":"Blog Articles","further-reading":"Further reading","learn":"Learn with Matmatch","clear":"Clear","general":"General","applications":"Applications","grades-title":"Grades provided by the supplier","additionally":"Additionally","message":"Message","headquarters":"Headquarters","website":"Website","revenue":"Revenue","close":"Close","new":"New","select":"Select","select-all":"Select all","search":"Search","language":"Language","units":"Units","forgot":"Forgot","forgot-password":"Did you forget your password?","converted-value":"Converted value","phone":"Phone","phone-call":"Phone call","phone-contact":"Phone contact","claim-profile":"Claim this profile","delete":"Delete","status":"Status","subject":"Subject","subject-edit-if-needed":"Subject (edit if needed)","account":"Account","add-new":"Add New","settings":"Settings","dashboard":"Dashboard","profile":"Profile","edit-profile":"Edit profile","about-us":"About us","partners":"Partners","sign-in":"Sign in","ask-now":"Ask now","sign-up":"Sign up","sign-out":"Sign out","subscribe":"Subscribe","publish":"Publish","unpublish":"Unpublish","report":"Report","published":"Published","companies":"Companies","unpublished":"Unpublished","first-name":"First Name","last-name":"Last Name","full-name":"Full Name","company":"Company","suppliers":"Suppliers","required":"Required","should-be-number":"Should be a number","email":"Email","job-title":"Job Title","for-suppliers":"For suppliers","please-select":"Please select","internal":"Internal","country":"Country","industry":"Industry","categories":"Categories","phone-number":"Phone number","manage-companies":"Manage companies","messages-admin":"Manage messages","telephone":"Telephone","email-address":"Email address","country-code":"Country code","phone-code":"Code","terms-and-conditions":"Terms \u0026 Conditions","whistleblower-system":"Whistleblower System","nothing-found":"Nothing found","employees":"Employees","from":"from ","here":"here","download":"Download","advanced-search":"Advanced Search","revenue-yearly":"Revenue (yearly)","contact-us":"Contact us","contact-me":"Contact me","book-meeting":"Book a meeting","material-page-data-set-description":"Chemical composition and material properties of {{materialName}}.","material-page-data-set-description-sources":"Chemical composition and material properties of {{materialName}}. Also available for download in XLSX and PDF. Data provided by {{sources}}","contact-suppliers":"Contact suppliers","wizard-tabs-headline":"Customize your search with filters","wizard-tabs-headline-2":"Select a {{text, lowercase}} as a search filter","wizard-tabs-headline-3":"Define property values","cookies-policy":"In order to understand how our website is used and to be able to present you with an interest-related offer, we use cookies and other technologies. You will find more information about cookies on the privacy policy page.","back":"Back","cancel":"Cancel","consultation-times":"Consultation times: Mon-Fri 9am - 5pm CET","follow":"Follow","following":"Following","follow-suppliers":"Follow suppliers!","collapse-menu":"Collapse menu","footer-description":"We connect engineers, product designers and procurement teams with the best materials and suppliers for their job.","information-and-services":"Information and services","no-dropdown-items":"No items","advertise":"Advertise","media-kit":"Media Kit (Advertising)","filters":"Filters","material-review":{"title":"Material review","unpublished-count":"{{count}} unpublished materials","publish-cta":"Publish {{count}}","publish-selected":"Publish {{count}} Selected","publish-all":"Publish All Materials","last-update":"Last update","report-message-placeholder":"Please describe what data needs to be changed, added or removed","report-sent":"Report sent","report-sent-message":"Thank you for your report. We will review it as quickly as possible.","no-unpublished-materials-message":"Nothing to do here. We will notify you if there are actions to be taken!","show-published-text":"Show published materials","no-published-materials-message":"No published materials available.","publish-all-triggered":"You have successfully triggered publishing of all materials. The process may take several minutes!","publish-all-triggered-title":"Publishing..."},"countries":{"china":"China","america":"America","germany":"Germany","india":"India","other":"Other regions"},"discover-materials":{"title":"Discover, compare and evaluate over \u003cspan\u003e{{count}}\u003c/span\u003e materials"},"supplier-materials":{"action-label":"See all materials by this supplier"},"book-form":{"success-message":{"processing-request":"Processing request","title":"Your request has been processed","message-one":"Thanks for booking a consultation with us, you will receive an email with the instructions within the next two days","message-two":"Did you know that by creating a Matmatch account your request process is easier and takes less time, you also will be able to save your materials and access or new developed tools."}},"contact-form":{"meta-title":"Contact Form","important":"Important","automatic-account-creation-warning":"By entering your information here, you will automatically create Matmatch account, needed to contact our suppliers.","headline":"Get in touch with Matmatch","company-headline":"Contact {{company}}","company-subject":"I'm interested in {{material}} and would like to get in touch with you.","supplier-page-subject":"I'm interested in your products and would like to get in touch with you.","first-name-placeholder":"Enter Your first name","full-name-placeholder":"Enter Your full name","last-name-placeholder":"Enter Your last name","company-placeholder":"What company do you work for?","job-title-placeholder":"What is your job title?","phone-placeholder":"Your phone number","email-placeholder":"Your email address","company-message-placeholder":"I'm interested in {{material}} and would like to get in touch with you.","terms-and-conditions":"In addition to the \u003ca href='/imprint#privacy-policy' target='_blank'\u003eTerms and Conditions\u003c/a\u003e I consent to share the content provided on this form with third parties (Suppliers) to provide Quotes and additional material information to me. This site is protected by reCAPTCHA and the Google  \u003ca href='https://policies.google.com/privacy'\u003ePrivacy Policy\u003c/a\u003e and \u003ca href='https://policies.google.com/terms'\u003eTerms of Service\u003c/a\u003e apply.","noCompanySubject1":"I have questions about this material","noCompanySubject2":"I'm searching for a material","noCompanySubject3":"I'm searching for a supplier","message-placeholder":"Please include all important information for your request, for example:","message-placeholder-advice1":"- Material type","message-placeholder-advice2":"- Purpose of application","message-placeholder-advice3":"- Mandatory material properties","message-placeholder-advice4":"- Shape and dimension","success-title":"Message sent","send-failed-title":"Message send failed!","fill-the-form-below":"Fill the form below","success-message":"We will get back to you as quickly as possible.","success-company-message":"Thank you for your message, {{contact}} will be in touch shortly","success-contact-form-sign-up-message":"Your request was sent to Matmatch Supplier. Please follow the link sent to your e-mail to confirm your request and join the Matmatch network.","success-contact-form-message-board-intro":"You can keep track of all your messages from your Matmatch account:","success-contact-form-message-board-link":"Message Board","send-failed-company-message":"Sorry, but your message has not been sent. Some technical error or backend failure. We're fixing it.","supplier-indicator-title":"Fill the form to connect with our suppliers for this material","tell-us-what-you-want":"Hi, how can we help?","technical-question":"I have a technical question.","quotes-question":"I would like a quote.","quotes-form-header-text":"Our suppliers are more likely to reply with more specific information. So, please be as detailed as possible and we will ensure you a quick response","form-message-placeholder":"Write your request here. Provide us as much information as possible.","company-email-placeholder":"Write (desirably) company email here.","personal-information":"Personal information","technical-requirements":"Technical requirements","location-details":"Location","attach-file-or-specs":"Attach file or specs ","feature-is-unavailable":"We are sorry. This feature is coming soon","next-step":"Next","optional":"Optional","requested-material":"Requested material","intended-application-or-usage":"Intended application/use","material-form":"Form","material-dimensions":"Dimensions","material-quantity":"Quantity","shipping-country":"Shipping country","first-name":"First name","last-name":"Last name","phone":"Phone","country-code":"Country code","phone-code":"Code","company":"Company","company-email":"Company email","job-title":"Job title","message":"Add a comment or additional technical requirement","private-email-warning":"Suppliers are more likely to reply if you provide a company email address","additional-request-information":"Additional request information","material-color":"Material color","material-length":"Length","material-width":"Width","material-thickness":"Thickness","material-diameter":"Diameter","particle-size":"Particle size","describe-your-material":"Short description of the material","material-general-description":"Add a comment or additional technical requirement","create-account":"Would you like to send requests more quickly in the future and access additional Matmatch features? Then create your Matmatch account now - it just takes a click.","material-shapes-info":"You see only supported material shapes in dropdown menu above. If you want other shape, please choose 'Other' and describe desired shape in corresponding fields. If you don't see 'Other' option, supplier doesn't produce custom material shapes for selected material.","describe-custom-form":"Describe custom form here","contact-user":"Contact user","contact-users":"Contact {{ number }} users","one-more-step-popup-header":"One more step","one-more-step-popup-message":"Please \u003cb\u003echeck your email mailbox\u003c/b\u003e and verify your account for your request to reach the supplier and for you to receive replies.","type-or-select-shipping-location":"Type or select a shipping location","company-website":"Company website","company-website-placeholder":"Your company website","form-section-name-suppliers":"{{sectionNumber}}. Suppliers ({{count}})","form-section-technical-information":"{{sectionNumber}}. Technical information","form-section-personal-information":"{{sectionNumber}}. Personal information","send-request":"Send request","send-message":"Send message","material-request-form-title":"Material request","alert-error-fill-required-fields-title":"Fill all required fields","alert-error-fill-required-fields-text":"Please fill all the required fields in order to send the request to our supplier!","view-request-for":"View request for {{materialName}}","request-more-details":"Request more details","quotation-request-form-title":"Request a quotation","technical-question-form-title":"Ask a technical question","your-question":"Your question (please provide as much detail as possible)","your-message":"Your message (please provide as much detail as possible)","supplier-profile-contact-form-title":"Contact {{companyName}}"},"contact-forms-items":{"granule":"Granule","powder":"Powder","pellet":"Pellet","film":"Film","sheet":"Sheet","filament":"Filament","other":"Other"},"contact-box":{"supplied-by":"Material Supplied by","any-questions":"Do you have any questions?","contact-mat-sci":"Contact our Material Scientists","contact-supplier":"Contact Supplier","contact-specific-supplier":"Contact {{name}} now","contact-specific-supplier-promo":"Do you have a question about this material?","contact-suppliers":"Contact Suppliers ({{num}})","contact-partner":"Contact {{type}}","send-us-question":"Send us a message","more-details":"More Details","send-a-question-to":"Send a question to","any-doubt":"Any doubt?","send-a-question-for-free":"Any questions?","send-a-message":"Send a message","write-your-message-here":"Write your message here","request-quotation":"Request a quotation","ask-supplier-technical-question":"Ask the supplier a technical question","ask-a-technical-question":"Ask a technical question"},"supplier-indicator-contact-box":{"title":"Find a supplier","contact":"Send your requirements","info":"We can help you find a supplier of {{materialName}}","note":"We will evaluate your request and get back to you soon."},"show-more":{"show-all":"Show all","show-less":"Show less"},"pagination":{"previous":"Previous","next":"Next","pages-info":"Page {{num}} of {{total}}"},"saved-materials":{"see-list":"See list","saved-items":"Saved items","saved-materials":"Saved Materials","new-material-saved":"New material saved","not-registered-yet":"Not registered yet?","auth-box-heading":"Save your materials and searches permanently!","auth-box-text":"Sign in or sign up for a free account to permanently save materials and searches.","saved-materials-mobile-text":"Save materials by pressing the star icon that you can find on search results list."},"saved-searches":{"save-search":"Save search","popup":{"title":"Name you search","description":"Give a name to your search before saving it","input-placeholder":"Search name"}},"saved-items":{"box-title":"My saved items","saved-items":"Saved items","new-item-saved":"New item saved"},"accept-terms-and-newsletter":{"title":"Privacy \u0026 terms","heading":"Please agree to our terms","terms":"To continue you need to agree with our \u003ca href='/imprint#tnc-buyers'\u003eTerms and Conditions\u003c/a\u003e and our \u003ca href='imprint#privacy-policy'\u003ePrivacy Policy\u003c/a\u003e","newsletter":"I would like to receive the Matmatch newsletter","accept":"Accept and continue"},"comparison":{"compare":"Compare","text":"{{count}} materials selected for comparison.","disabled":"Please select two or more materials for comparison","search-results":"Search results","section-standards":"Standards","section-equivalent-standards":"Equivalent standards","section-chemical-composition":"Chemical composition"},"supported-languages":{"english":"English","german":"German","spanish":"Spanish"},"account-form":{"bio-placeholder":"Say something about yourself or add a link to a social profile","submit-button-text":"Update information","account-update-success":"You have successfully update Your account!"},"chemical-table":{"element":"Element","weight":"Weight %","comment":"Comment"},"company-type":{"DATA_PROVIDER":"Data provider","ASSOCIATION":"Association","SUPER_ASSOCIATION":"Association","CONSULTANCIES":"Consultancy","MANUFACTURER_AND_PROCESSOR":"Manufacturer and Processor","MANUFACTURER":"Manufacturer","MANUFACTURER_AND_DISTRIBUTOR":"Manufacturer and Distributor","PROCESSOR":"Processor","DISTRIBUTOR":"Distributor","MATERIAL_SOURCE":"Material source","MANUFACTURER_AND_PROCESSOR_AND_DISTRIBUTOR":"Manufacturer, Processor and Distributor"},"retired-material":{"title":"This material is no longer available. Search below to find a relevant alternative material.","title-superseded":"The material: '{{material}}' you were looking for has been superseded by the one below."},"supplier":{"qualified-label":"Matmatch qualified supplier"},"application":{"meta":{"industry-title":"Find Materials by Industry and Application","search-results":"Materials for {{industry}} - {{application}}","navigation":"Find Materials - {{industry}}"},"application":"Application","title":"Discover materials from your industry","description":"Build better products by discovering new materials for your industry. Search directly for an application or browse our catalogue below.","search-input-placeholder":"e.g. Aerospace, Aerospace Electric Equipment, Turbine Blades ...","no-results":"No results for your application!","no-properties":"No properties available","no-properties-selected-message":"You should select at least 1 property to see the chart!","reset-filters":"Reset filters","radar-chart-materials-message":"You should apply at least 3 properties for radar chart!","radar-chart-max-amount-of-materials":"Maximum number ({{amount}}) of materials for this type of chart achieved!","available-properties":"Available properties","textual-comparison-cta":"Go to textual comparison","meta-title":"Applications","search-by-application":"Application Search","default-breadcrumbs-category-name":"Industries","comparison-scroll-to-the-right":"Please, scroll to the right to see the comparison"},"new-features-presentation":{"saved-search-presentation-popup-body":"You can now save your searches on Matmatch to access them quickly in the future. Simply use the \"Save search\" button on the right side of the screen on search results page.","saved-search-presentation-popup-header":"Hey, did you know?","dismiss":"Dismiss","see-the-feature":"See the feature"},"tools":{"tools":"Tools","unit-converter":{"title":"Unit converter","title-landing":"Convert {{fromUnit}} to {{toUnit}}","meta-description-landing":"Convert {{fromUnit}} to {{toUnit}} and other {{unitCategory}} units with this easy-to-use online unit converter.","header-landing":"Convert from {{fromUnit}} to {{toUnit}}","description":"Convert data between a wide variety of different units in just a few clicks. You can currently convert dielectric strength, temperature, pressure, thermal conductivity, energy, electrical resistivity, stress, power, volume and density units.","description-landing":"To convert from {{fromUnit}} to {{toUnit}} enter the desired value for {{fromUnit}} below and the tool will convert it to {{toUnit}} and all other available units. You can also select and convert other types of units. \u003cbr/\u003e\u003cbr/\u003e\u003cstrong\u003e{{formula}}\u003c/strong\u003e","other-units-title":"{{selectedUnitValue}} {{fromUnit}} is also equivalent to:","converter-title":"Chose type of unit for conversion","group-placeholder":"Choose a group","properties-message":"Did you know? You can now search materials by their properties. Try it","quick-conversions":"Quick conversion chart of {{fromUnit}} to {{toUnit}}:"},"hardness-converter":{"meta-title":"Hardness Converter","meta-description":"Convert values between different hardness testing methods based on the material category.","title":"Hardness Converter","description":"Convert values between different hardness testing methods based on the material category. The converted values are extrapolated from test data and collated tabular data, so should be take as approximations.","material-category":"Material","material-category-placeholder":"Select a Material Category","testing-method":"Testing Method","testing-method-placeholder":"Select testing method","wrong-input-range":"Please enter a value between {{min}} and {{max}}","info-message":"All converted values are given as approximations and are for reference only.","found-materials":"There are {{count}} materials in our database matching the value you converted","view-materials":"View matching materials \u003ca href='{{url}}'\u003enow\u003c/a\u003e."}},"services":{"title":"Services","get-connected":"Get connected","material-consultancy":"Material consultancy"},"messages":"Messages","roles":{"USER":"Website user","BETA_USER":"Beta website user","SUPPLIER_BETA_USER":"Beta Dashboard user","SUPPLIER_CONTACT":"Message User","SUPPLIER_USER":"Dashboard User"},"book-demo":{"form":{"subscription-label":"I would like to receive email news and updates from Matmatch","checkbox-label":"By clicking below, you consent to allow Matmatch to store and process the personal information submitted above to provide you with more information about listing as a supplier on Matmatch.","privacy-label":"View our \u003ca href='/imprint#privacy-policy'\u003eprivacy policy\u003c/a\u003e for more information on how your data is used."}},"supplier-dashboard":{"menu-item-dashboard-home":"Dashboard Home","menu-item-messages-board":"Messages Board","menu-item-messages-admin":"Messages Admin","menu-item-audience":"Audience ({{ numOfEventTypes }})","menu-item-performance":"Performance","menu-item-performance-temp":"Performance (Temp)","menu-item-visibility":"Visibility","menu-item-materials":"Materials","menu-item-webinar-audience":"Webinar audience","not-available-for-mobile":"Our analytics board is not supported in mobile version. You may access it on your PC or tablet.","menu-item-support":"Supplier Support","menu-item-contact-us":"Contact Us","menu-item-faq":"FAQ","geo-chart-item-compare-views":"Compare views","geo-chart-item-content-views":"Content views","geo-chart-item-material-views":"Material views","geo-chart-item-profile-views":"Profile views","table-header-material-name":"Material name","table-header-count":"Count","table-header-page-views":"Page views","table-header-most-compared-material":"Most Compared material","table-header-compared-material-producer":"Material producer","table-header-company-name":"Company","table-header-employee-count":"Employees","table-header-visits":"Visits","table-header-visitors":"Visitors","table-header-count-views":"Views","table-header-count-registered-views":"Views from Registered Users","table-header-count-downloads":"Downloads","table-header-count-copies":"Copies","table-header-count-comparisons":"Comparisons","table-header-date":"Date","table-header-size":"Size","table-header-keyword":"Keyword","table-header-clicks":"Clicks","table-header-impressions":"Impressions","table-header-compared-materials":"Compared with","table-header-compared-companies":"Compared suppliers","table-header-compared-properties":"Compared properties","table-header-supplier":"Supplier","table-header-country":"Country","table-header-city":"City","table-comparison-expand":"Expand","table-comparison-collapse":"Collapse","table-header-full-name":"Name","table-header-job-title":"Job Title","table-header-status":"Status","table-header-registered-date":"Registered On","table-header-email":"E-mail","table-header-grade":"Grade","table-header-shape":"Shape","table-header-equivalentMaterials":"Equivalent Materials","table-header-standards":"Standard / Norm","material-performance-by-interaction-type":{"title":"Material performance by interaction type","tooltip":"Control metrics showing how people interact with your content on Matmatch."},"material-details":{"title":"Material details","tooltip":"See the detailed information of your material page performance on Matmatch."},"material-comparisons":{"title":"Material comparisons","tooltip":"See the detailed information of your materials that were compared with other materials on Matmatch."},"visibility-by-type":{"title":"Visibility by type","tooltip":"Control metrics showing how often your content is found on Matmatch."},"visibility-by-country":{"title":"Visibility by country","tooltip":"Control metrics showing countries of people accessing your content on Matmatch."},"most-visited-materials":{"title":"Most visited materials","tooltip":"See your best performing Material Pages."},"top-compared-materials":{"title":"Top compared materials","tooltip":"See your most compared Material Pages."},"visibility-by-companies":{"title":"Large companies visiting your materials","tooltip":"See the biggest companies that were accessing your content on Matmatch. Companies are identified based on visitor IP address."},"top-google-keywords":{"title":"Top Google keywords","tooltip":"Control metrics showing keywords entered in google search before accessing your content on Matmatch."},"linked-materials-details":{"title":"Linked material details","tooltip":"See the detailed information of material page performance on Matmatch where your company details have been shown."},"day":"Day","week":"Week","month":"Month","nothing-found":"No data available for the selected period","sorry":"Sorry","dashboard-not-available-for-mobiles":"This section is not available for mobile device yet. Try the desktop version for the full experience.","attention-demo-mode":"Attention: you are in demo mode, static data is shown!","webinars-label":"Webinars","webinars-title":"Webinar registrants"},"go-to-message-board":"Go to message board","sorry":"Sorry...","cookies":{"banner-title":"Our cookie disclaimer","accept":"Accept all","open-settings":"Open cookie settings","confirm":"Confirm my choices","settings":"Cookie settings","popup-description":"You can control how Matmatch use cookies and similar technologies by making choices below. But note that if you disable cookies and similar technologies entirely, Matmatch may not function properly.","consent-title":"Necessary","consent-description":"These cookies are required, and they are used to enable core functionality on Matmatch. Without them the site could not operate, so they cannot be disabled.","preferences-title":"Preferences","preferences-description":"These cookies enable Matmatch to deliver a more personalised experience to your interests on the platform.","statistics-title":"Statistics","statistics-description":"These cookies are used to analyze site usage to measure and improve performance. Without them Matmatch cannot know what content is most valued and how often unique visitors return to the site, making it hard to improve the information and services we offer to you.","tracking-title":"Marketing","tracking-description":"These cookies are used to enable Matmatch to serve content more relevant to your interests both on and off the platform.","banner-disclaimer":"Matmatch uses cookies and similar technologies to improve your experience and measure your interactions with our website. We also use them to provide you more relevant information and improve our platform and search tools. If that’s okay, click “Accept all.” To change your preferences, click “Open cookie settings.” You will find more information about cookies on our \u003ca style='text-decoration:underline;' href='/imprint#privacy-policy'\u003eprivacy policy page\u003ca/\u003e."},"sustainability":{"share-text":"Share this page","pdf":{"question":"Download a PDF copy","text":"Receive a copy of this article in PDF format via email","button":"Get it now","pop-up":"By clicking below you consent to allow Matmatch to store and process the personal information submitted above to provide you the content requested. View our privacy policy for more information on how your data is used."},"how-to-source-title":"Get in touch"}},"navigation":{"20":{"header":{"materials":"Materials","for-suppliers":"For Suppliers","about-us":"About us","get-connected":"Get Connected","3d-printing-hub":"3D Printing"}},"companies-list":"Companies list","material-review":"Material review"},"sign-in-up":{"password":"Password","save-password":"Save password","sign-in-up":"Sign In / Up","not-signed-in":"You are not signed in","view-my-profile":"View my Profile","open-profile-menu":"Open profile menu","close-profile-menu":"Close profile menu","create-account-now":"Create your account now","sign-in":{"password-placeholder":"Type your password","new-to-matmatch":"New to Matmatch?","email-placeholder":"Enter the address you signed up with","welcome-back-message":"To sign in to your Matmatch account, please enter your email and password."},"set-password":{"title":"Set a password","password-placeholder":"Set your new password","hint":"Your password should be at least 8 characters long."},"forgot-password":{"title":"Forgot password?","request-reset":"Request reset link","email-placeholder":"Enter your e-mail address","hint":"In case you forgot your password you can request to reset it here.","instructions":{"one":"1. To reset a password, please enter your email address. Then click “Send me reset link” button.","two":"2. Check your inbox for a password reset email. Click on the URL provided in the email and enter a new password.","three":"3. If you don’t know your email address or it is no longer valid, please create a new Matmatch account "}},"success-popup":{"almost-done":"Almost done!","back-to-sign-in":"Back to sign in","back-to-matmatch":"Back to matmatch.com","confirmation-mail-note":"We’ve sent you a confirmation email to {{email}}. Please click the link in the email to activate your account."},"sign-up":{"signup-failed":"Signup failed","create-account":"Create account","create-your-account":"Create your account","email-placeholder":"Your email address","already-account":"Already have an account?","last-name-placeholder":"Enter your last name","first-name-placeholder":"Enter your first name","newsletter-label":"I would like to receive the Matmatch e-mail newsletter","terms-and-conditions-label":"I have read and agreed to the Matmatch \u003ca href='/imprint#tnc-buyers'\u003eTerms and Conditions\u003c/a\u003e and \u003ca href='/imprint#privacy-policy'\u003ePrivacy Policy.\u003c/a\u003e","signup-failed-message":"Oops! Something went wrong during the signup process. We will investigate and fix the issue as fast as possible.","do-you-work-for-material-supplier":"Do you work for a material supplier?"},"sign-in-page":{"meta-title":"Sign In","title":"Sign In"},"sign-up-page":{"meta-title":"Sign Up","title":"Create an account"},"activation-page":{"meta-title":"Account Activation","activated-title":"Done!","activated-message":"Your new password has been set and the account has been activated.","sign-in":"Sign In","account":"Account"},"info":{"sign-in-to-download":"Sign in or create your free Matmatch account to download this datasheet. A free account includes access to hundreds of thousands of detailed technical datasheets.","sign-in-description":"Registered users have full access to all premium features for free.","company-email-tooltip":"Matmatch is a platform that connects professionals in the materials industry. Please provide your valid company address."},"value-propositions":{"title":"Create your Matmatch account for free and enjoy all premium features","suppliers-title":"Our material data comes directly from material suppliers and verified data partners","values":{"one":{"value":"Unlimited datasheet downloads.","description":"Download technical datasheets for thousands of materials in .pdf and .xlsx formats."},"two":{"value":"Ashby charts interactivity.","description":" Get more technical data about material upon clicking."},"three":{"value":"Ashby chart image.","description":"Export Ashby chart in .png format."},"four":{"value":"Property charts.","description":"View material behaviour under different temperatures."},"five":{"value":"SN-curves.","description":"Request fatigue data (S-N curve) for different materials."},"six":{"value":"Supplier contact.","description":"Get in touch with suppliers and keep track of all your messages from the Matmatch message board."}}},"premium-features":{"registered-only":"This feature is for registered users only"}},"advanced-search":{"common":{"categories":"Categories","properties":"Properties","nothing-added":"Nothing added","more-search-options":"More search options","title":"Advanced Search - Matmatch","suppliers":"Suppliers","applications":"Applications","download-chart-as-png":"Download as .PNG","teaser-description":"Sign up to get access to this premium feature for free."},"sidebar":{"labels-title":"Search result for","clear-all":"Clear all","show-all":"Show all","all":"All","properties":{"cta":"Add a material property"},"suppliers":{"cta":"See all suppliers"},"applications":{"cta":"Add an application"}},"alerts":{"category-specific-filter-disabled":{"description":"Some filter options have been disabled following your previous selection."},"selecting-materials-info":{"title":"Compare Materials Tip!","description":"Select two or more Materials by pressing the checkbox on the right and then press the \"Compare and Visualise\" button."},"all-categories-selected":{"title":"All Material Categories have now been selected."},"properties-disabled":{"title":"Properties disabled","description":"The following properties: [ {{properties}} ] are not linked to the existing material categories."},"properties-disabled-due-applied-filters":{"title":"Properties disabled","description":"The following properties: [ {{properties}} ] have been disabled due to applied filters."},"categories-disabled":{"title":"Material categories disabled","description":"The following categories: [ {{categories}} ] have been disabled due to applied filters."},"no-materials-left":{"title":"All materials have been filtered out.","description":"Please re-adjust the slider filters, or add additional categories to bring back some materials."},"material-retired":{"title":"Warning!","description":"This material is no longer available. Search below to find a relevant alternative material."}},"main-content":{"supplied-by":"Supplied by: ","supplied-by-matmatch":"{{number}} Matmatch suppliers","supplied-by-matmatch-singular":"{{number}} Matmatch supplier"},"comparison":{"compare-count":"Compare ({{count}})","compare-materials":"Compare Materials","compare-and-visualise":"Compare and Visualise","materials-selected":"{{count}} materials selected"},"categories":{"popup":{"title":"Material categories","selected-categories":"Selected Categories"}},"properties":{"popup":{"title":"Material properties","search-placeholder":"Property Search"}},"suppliers":{"popup":{"title":"Material suppliers","selected-suppliers":"Selected Suppliers"}},"header":{"property-placeholder":"- Property","no-properties-in-sidebar-info":"You have no properties to compare, add some properties in the sidebar first."},"category-specific-title":{"metal":"Metal Filters","polymer":"Polymer Filters","ceramic":"Ceramic Filters","composite":"Composite Filters"},"category-specific-settings":{"forms":"Shape / Form","modifications":"Modification","fillers":"Filler","processing":"Processing","certifications":"Certification Group","primary-phase":"Primary Phase","secondary-phase":"Secondary Phase","tooltip-add-forms":"Add a shape filter","tooltip-add-modifications":"Add a modification filter","tooltip-add-fillers":"Add a filler filter","tooltip-add-processing":"Add a processing filter","tooltip-add-certifications":"Add a certification filter","tooltip-add-primary-phase":"Add a primary phase filter","tooltip-add-secondary-phase":"Add a secondary phase filter","tooltip-clear-all":"Clear all"},"applications":{"popup":{"selected-applications":"Selected applications","no-applications":"No Applications found for these Materials!"}},"contextual-tags":{"results-number":"{{count}} results for"},"no-results":{"title":"Sorry, no results found","text":"Try searching again by typing a material name in the search bar or choose a filter to add."},"navigation":{"result-list":"Result list","plot-materials":"Visualise in Ashby"},"plot-materials":{"title":"Setup Ashby Chart","x-axis":"Change X - Axis","y-axis":"Change Y - Axis"}},"search-and-filters":{"advanced-filters":"Advanced filters","resetFilter":"Reset filter","only-with-supplier":"Show materials with suppliers","only-with-supplier-short":"Only with suppliers","searchTips":{"headline":"\u003cb\u003eSearch tips:\u003c/b\u003e","noMatches":"Sorry, no matches found for \u003cb\u003e{{text}}\u003c/b\u003e","tip1":"Reduce the number of search terms","tip2":"Try alternative spellings for your search terms","tip3":"Use different search terms"},"wizard":{"inputPlaceholder":"Type to filter the list"},"search-bar-placeholders":{"1":"Aluminium","2":"Density","3":"Elastic Modulus","4":"High carbon steel","5":"AISI 201","6":"Thermal diffusivity","7":"Tungsten alloy","empty-submission-error":"Type a material name or category to start a search","default":"Type a material name, property, category or supplier"},"search":"Search","results":"Results","search-bar":{"title":"Make better material decisions","sub-title":"Find and compare materials for your projects.","filters":{"property":{"title":"Search by property","text":"Find materials that meet specific requirements"},"category":{"title":"Search by category","text":"Explore different materials in a certain category"},"supplier":{"title":"Search by supplier","text":"Discover materials offered by a specific supplier"}}}},"ashby-chart":{"breadcrumbs-level-one":"All categories","download-as-png":"Download Ashby chart as PNG: ","data-point":{"header-materials":"Materials","supplier":"Supplied by:"}}}},"initialLanguage":"en","i18nServerInstance":null,"pageProps":{"data":{"labels":[],"queryParams":"categories=steel\u0026tags=form:bar","unitsSystem":"metric","categories":[{"id":"biological-material","nodeId":"biological-material","humanReadableId":"Biological Material","label":"Biological Material","disabled":true,"children":[{"id":"wood","nodeId":"wood","humanReadableId":"Wood","label":"Wood","disabled":true}]},{"id":"ceramic","nodeId":"ceramic","humanReadableId":"Ceramic","label":"Ceramic","disabled":true,"children":[{"id":"carbon","nodeId":"carbon","humanReadableId":"Carbon","label":"Carbon","disabled":true,"children":[{"id":"carbon-nanotube","nodeId":"carbon-nanotube","humanReadableId":"Carbon Nanotube","label":"Carbon Nanotube","disabled":true},{"id":"diamond","nodeId":"diamond","humanReadableId":"Diamond","label":"Diamond","disabled":true,"children":[{"id":"natural-diamond","nodeId":"natural-diamond","humanReadableId":"Natural Diamond","label":"Natural Diamond","disabled":true},{"id":"synthetic-diamond","nodeId":"synthetic-diamond","humanReadableId":"Synthetic Diamond","label":"Synthetic Diamond","disabled":true}]},{"id":"graphene","nodeId":"graphene","humanReadableId":"Graphene","label":"Graphene","disabled":true},{"id":"graphite","nodeId":"graphite","humanReadableId":"Graphite","label":"Graphite","disabled":true}]},{"id":"engineering-ceramic","nodeId":"engineering-ceramic","humanReadableId":"Engineering Ceramic","label":"Engineering Ceramic","disabled":true,"children":[{"id":"non-oxide-based","nodeId":"non-oxide-based","humanReadableId":"Non Oxide Based","label":"Non Oxide Based","disabled":true,"children":[{"id":"boride-based","nodeId":"boride-based","humanReadableId":"Boride Based","label":"Boride Based","disabled":true},{"id":"carbide-based","nodeId":"carbide-based","humanReadableId":"Carbide Based","label":"Carbide Based","disabled":true,"children":[{"id":"boron-carbide","nodeId":"boron-carbide","humanReadableId":"Boron Carbide","label":"Boron Carbide","disabled":true},{"id":"silicon-carbide","nodeId":"silicon-carbide","humanReadableId":"Silicon Carbide","label":"Silicon Carbide","disabled":true},{"id":"tantalum-carbide","nodeId":"tantalum-carbide","humanReadableId":"Tantalum Carbide","label":"Tantalum Carbide","disabled":true},{"id":"titanium-carbide","nodeId":"titanium-carbide","humanReadableId":"Titanium Carbide","label":"Titanium Carbide","disabled":true},{"id":"tungsten-carbide","nodeId":"tungsten-carbide","humanReadableId":"Tungsten Carbide","label":"Tungsten Carbide","disabled":true},{"id":"zirconium-carbide","nodeId":"zirconium-carbide","humanReadableId":"Zirconium Carbide","label":"Zirconium Carbide","disabled":true}]},{"id":"nitride-based","nodeId":"nitride-based","humanReadableId":"Nitride Based","label":"Nitride Based","disabled":true,"children":[{"id":"aluminium-nitirde","nodeId":"aluminium-nitirde","humanReadableId":"Aluminium Nitirde","label":"Aluminium Nitirde","disabled":true},{"id":"boron-nitride","nodeId":"boron-nitride","humanReadableId":"Boron Nitride","label":"Boron Nitride","disabled":true},{"id":"silicon-nitride","nodeId":"silicon-nitride","humanReadableId":"Silicon Nitride","label":"Silicon Nitride","disabled":true},{"id":"titanium-nitride","nodeId":"titanium-nitride","humanReadableId":"Titanium Nitride","label":"Titanium Nitride","disabled":true}]},{"id":"silicate-based","nodeId":"silicate-based","humanReadableId":"Silicate Based","label":"Silicate Based","disabled":true},{"id":"sulfide-based","nodeId":"sulfide-based","humanReadableId":"Sulfide Based","label":"Sulfide Based","disabled":true,"children":[{"id":"bismuth-sulfide","nodeId":"bismuth-sulfide","humanReadableId":"Bismuth Sulfide","label":"Bismuth Sulfide","disabled":true},{"id":"copper-sulfide","nodeId":"copper-sulfide","humanReadableId":"Copper Sulfide","label":"Copper Sulfide","disabled":true},{"id":"iron-sulfide","nodeId":"iron-sulfide","humanReadableId":"Iron Sulfide","label":"Iron Sulfide","disabled":true},{"id":"manganese-sulfide","nodeId":"manganese-sulfide","humanReadableId":"Manganese Sulfide","label":"Manganese Sulfide","disabled":true},{"id":"molybdenum-disulfide","nodeId":"molybdenum-disulfide","humanReadableId":"Molybdenum Disulfide","label":"Molybdenum Disulfide","disabled":true},{"id":"multiphase-metal-sulfide","nodeId":"multiphase-metal-sulfide","humanReadableId":"Multiphase Metal Sulfide","label":"Multiphase Metal Sulfide","disabled":true},{"id":"tin-sulfide","nodeId":"tin-sulfide","humanReadableId":"Tin Sulfide","label":"Tin Sulfide","disabled":true},{"id":"tungsten-disulfide","nodeId":"tungsten-disulfide","humanReadableId":"Tungsten Disulfide","label":"Tungsten Disulfide","disabled":true},{"id":"zinc-sulfide","nodeId":"zinc-sulfide","humanReadableId":"Zinc Sulfide","label":"Zinc Sulfide","disabled":true}]}]},{"id":"oxide-based","nodeId":"oxide-based","humanReadableId":"Oxide Based","label":"Oxide Based","disabled":true,"children":[{"id":"advanced-ceramic-oxides","nodeId":"advanced-ceramic-oxides","humanReadableId":"Advanced Ceramic Oxides","label":"Advanced Ceramic Oxides","disabled":true},{"id":"aluminium-oxide","nodeId":"aluminium-oxide","humanReadableId":"Aluminium Oxide","label":"Aluminium Oxide","disabled":true},{"id":"beryllium-oxide","nodeId":"beryllium-oxide","humanReadableId":"Beryllium Oxide","label":"Beryllium Oxide","disabled":true},{"id":"ferrite","nodeId":"ferrite","humanReadableId":"Ferrite","label":"Ferrite","disabled":true},{"id":"silicon-oxide","nodeId":"silicon-oxide","humanReadableId":"Silicon Oxide","label":"Silicon Oxide","disabled":true,"children":[{"id":"aluminium-silicate","nodeId":"aluminium-silicate","humanReadableId":"Aluminium Silicate","label":"Aluminium Silicate","disabled":true},{"id":"magnesium-silicate","nodeId":"magnesium-silicate","humanReadableId":"Magnesium Silicate","label":"Magnesium Silicate","disabled":true},{"id":"zirconium-silicate","nodeId":"zirconium-silicate","humanReadableId":"Zirconium Silicate","label":"Zirconium Silicate","disabled":true}]},{"id":"titanium-oxide","nodeId":"titanium-oxide","humanReadableId":"Titanium Oxide","label":"Titanium Oxide","disabled":true},{"id":"zirconium-oxide","nodeId":"zirconium-oxide","humanReadableId":"Zirconium Oxide","label":"Zirconium Oxide","disabled":true}]},{"id":"oxide-based-ceramic-matrix-composite","nodeId":"oxide-based-ceramic-matrix-composite","humanReadableId":"Oxide Based Ceramic Matrix Composite","label":"Oxide Based Ceramic Matrix Composite","disabled":true,"children":[{"id":"multi-oxide-ceramics","nodeId":"multi-oxide-ceramics","humanReadableId":"Multi-Oxide Ceramics","label":"Multi-Oxide Ceramics","disabled":true},{"id":"silicon-oxide","nodeId":"silicon-oxide-","humanReadableId":"Silicon Oxide","label":"Silicon Oxide","disabled":true},{"id":"ytterbium-oxide","nodeId":"ytterbium-oxide","humanReadableId":"Ytterbium Oxide","label":"Ytterbium Oxide","disabled":true},{"id":"yttrium-oxide","nodeId":"yttrium-oxide","humanReadableId":"Yttrium Oxide","label":"Yttrium Oxide","disabled":true}]}]},{"id":"natural-ceramic","nodeId":"natural-ceramic","humanReadableId":"Natural Ceramic","label":"Natural Ceramic","disabled":true}]},{"id":"composite","nodeId":"composite","humanReadableId":"Composite","label":"Composite","disabled":true,"children":[{"id":"ceramic-matrix-composite","nodeId":"ceramic-matrix-composite","humanReadableId":"Ceramic Matrix Composite","label":"Ceramic Matrix Composite","disabled":true,"children":[{"id":"carbide-based-ceramic-matrix-composite","nodeId":"carbide-based-ceramic-matrix-composite","humanReadableId":"Carbide Based Ceramic Matrix Composite","label":"Carbide Based Ceramic Matrix Composite","disabled":true},{"id":"oxide-based-ceramic-matrix-composite","nodeId":"oxide-based-ceramic-matrix-composite-","humanReadableId":"Oxide Based Ceramic Matrix Composite","label":"Oxide Based Ceramic Matrix Composite","disabled":true}]},{"id":"metal-matrix-composite","nodeId":"metal-matrix-composite","humanReadableId":"Metal Matrix Composite","label":"Metal Matrix Composite","disabled":true,"children":[{"id":"aluminium-matrix-composite","nodeId":"aluminium-matrix-composite","humanReadableId":"Aluminium Matrix Composite","label":"Aluminium Matrix Composite","disabled":true},{"id":"beryllium-matrix-composite","nodeId":"beryllium-matrix-composite","humanReadableId":"Beryllium Matrix Composite","label":"Beryllium Matrix Composite","disabled":true},{"id":"cobalt-matrix-composite","nodeId":"cobalt-matrix-composite","humanReadableId":"Cobalt Matrix Composite","label":"Cobalt Matrix Composite","disabled":true},{"id":"cobalt-and-nickel-matrix-composite","nodeId":"cobalt-and-nickel-matrix-composite","humanReadableId":"Cobalt and Nickel Matrix Composite","label":"Cobalt and Nickel Matrix Composite","disabled":true},{"id":"iron-matrix-composite","nodeId":"iron-matrix-composite","humanReadableId":"Iron Matrix Composite","label":"Iron Matrix Composite","disabled":true},{"id":"nickel-matrix-composite","nodeId":"nickel-matrix-composite","humanReadableId":"Nickel Matrix Composite","label":"Nickel Matrix Composite","disabled":true}]},{"id":"polymer-matrix-composite","nodeId":"polymer-matrix-composite","humanReadableId":"Polymer Matrix Composite","label":"Polymer Matrix Composite","disabled":true,"children":[{"id":"thermoset-polymer-matrix-composite","nodeId":"thermoset-polymer-matrix-composite","humanReadableId":"Thermoset Polymer Matrix Composite","label":"Thermoset Polymer Matrix Composite","disabled":true}]}]},{"id":"glass","nodeId":"glass","humanReadableId":"Glass","label":"Glass","disabled":true,"children":[{"id":"glass-ceramic","nodeId":"glass-ceramic","humanReadableId":"Glass Ceramic","label":"Glass Ceramic","disabled":true,"children":[{"id":"las-glass-ceramic","nodeId":"las-glass-ceramic","humanReadableId":"LAS Glass Ceramic","label":"LAS Glass Ceramic","disabled":true}]},{"id":"lead-glass","nodeId":"lead-glass","humanReadableId":"Lead Glass","label":"Lead Glass","disabled":true},{"id":"silicate-glass","nodeId":"silicate-glass","humanReadableId":"Silicate Glass","label":"Silicate Glass","disabled":true,"children":[{"id":"aluminosilicate","nodeId":"aluminosilicate","humanReadableId":"Aluminosilicate","label":"Aluminosilicate","disabled":true},{"id":"borosilicate","nodeId":"borosilicate","humanReadableId":"Borosilicate","label":"Borosilicate","disabled":true},{"id":"fused-quartz","nodeId":"fused-quartz","humanReadableId":"Fused Quartz","label":"Fused Quartz","disabled":true},{"id":"soda-lime-silicate","nodeId":"soda-lime-silicate","humanReadableId":"Soda Lime Silicate","label":"Soda Lime Silicate","disabled":true}]}]},{"id":"metal","nodeId":"metal","humanReadableId":"Metal","label":"Metal","partiallyChecked":true,"materialsCount":2214,"children":[{"id":"aluminium","nodeId":"aluminium","humanReadableId":"Aluminium","label":"Aluminium","disabled":true,"children":[{"id":"aluminium-master-alloy","nodeId":"aluminium-master-alloy","humanReadableId":"Aluminium Master Alloy","label":"Aluminium Master Alloy","disabled":true},{"id":"cast-aluminium","nodeId":"cast-aluminium","humanReadableId":"Cast Aluminium","label":"Cast Aluminium","disabled":true,"children":[{"id":"1xx-x","nodeId":"1xx-x","humanReadableId":"1xx.x","label":"1xx.x","disabled":true},{"id":"2xx-x","nodeId":"2xx-x","humanReadableId":"2xx.x","label":"2xx.x","disabled":true},{"id":"3xx-x","nodeId":"3xx-x","humanReadableId":"3xx.x","label":"3xx.x","disabled":true},{"id":"4xx-x","nodeId":"4xx-x","humanReadableId":"4xx.x","label":"4xx.x","disabled":true},{"id":"5xx-x","nodeId":"5xx-x","humanReadableId":"5xx.x","label":"5xx.x","disabled":true},{"id":"7xx-x","nodeId":"7xx-x","humanReadableId":"7xx.x","label":"7xx.x","disabled":true},{"id":"8xx-x","nodeId":"8xx-x","humanReadableId":"8xx.x","label":"8xx.x","disabled":true}]},{"id":"wrought-aluminium","nodeId":"wrought-aluminium","humanReadableId":"Wrought Aluminium","label":"Wrought Aluminium","disabled":true,"children":[{"id":"1000-series","nodeId":"1000-series","humanReadableId":"1000 Series","label":"1000 Series","disabled":true},{"id":"2000-series","nodeId":"2000-series","humanReadableId":"2000 Series","label":"2000 Series","disabled":true},{"id":"3000-series","nodeId":"3000-series","humanReadableId":"3000 Series","label":"3000 Series","disabled":true},{"id":"4000-series","nodeId":"4000-series","humanReadableId":"4000 Series","label":"4000 Series","disabled":true},{"id":"5000-series","nodeId":"5000-series","humanReadableId":"5000 Series","label":"5000 Series","disabled":true},{"id":"6000-series","nodeId":"6000-series","humanReadableId":"6000 Series","label":"6000 Series","disabled":true},{"id":"7000-series","nodeId":"7000-series","humanReadableId":"7000 Series","label":"7000 Series","disabled":true},{"id":"8000-series","nodeId":"8000-series","humanReadableId":"8000 Series","label":"8000 Series","disabled":true}]}]},{"id":"clad---bimetal","nodeId":"clad---bimetal","humanReadableId":"Clad / Bimetal","label":"Clad / Bimetal","disabled":true},{"id":"cobalt","nodeId":"cobalt","humanReadableId":"Cobalt","label":"Cobalt","disabled":true,"children":[{"id":"cobalt-chromium","nodeId":"cobalt-chromium","humanReadableId":"Cobalt Chromium","label":"Cobalt Chromium","disabled":true},{"id":"cobalt-chromium-molybdenum","nodeId":"cobalt-chromium-molybdenum","humanReadableId":"Cobalt Chromium Molybdenum","label":"Cobalt Chromium Molybdenum","disabled":true},{"id":"cobalt-chromium-nickel-tungsten","nodeId":"cobalt-chromium-nickel-tungsten","humanReadableId":"Cobalt Chromium Nickel Tungsten","label":"Cobalt Chromium Nickel Tungsten","disabled":true},{"id":"cobalt-chromium-tungsten","nodeId":"cobalt-chromium-tungsten","humanReadableId":"Cobalt Chromium Tungsten","label":"Cobalt Chromium Tungsten","disabled":true},{"id":"cobalt-nickel-chromium-molybdenum","nodeId":"cobalt-nickel-chromium-molybdenum","humanReadableId":"Cobalt Nickel Chromium Molybdenum","label":"Cobalt Nickel Chromium Molybdenum","disabled":true},{"id":"cobalt-superalloy","nodeId":"cobalt-superalloy","humanReadableId":"Cobalt Superalloy","label":"Cobalt Superalloy","disabled":true},{"id":"unclassified-cobalt-alloy","nodeId":"unclassified-cobalt-alloy","humanReadableId":"Unclassified Cobalt Alloy","label":"Unclassified Cobalt Alloy","disabled":true}]},{"id":"copper","nodeId":"copper","humanReadableId":"Copper","label":"Copper","disabled":true,"children":[{"id":"cast-copper","nodeId":"cast-copper","humanReadableId":"Cast Copper","label":"Cast Copper","disabled":true,"children":[{"id":"cast-copper-brass","nodeId":"cast-copper-brass","humanReadableId":"Cast Copper Brass","label":"Cast Copper Brass","disabled":true,"children":[{"id":"cast-copper-brass-yellow-brass","nodeId":"cast-copper-brass-yellow-brass","humanReadableId":"Cast Copper Brass Yellow Brass","label":"Cast Copper Brass Yellow Brass","disabled":true},{"id":"cast-copper-silicon-brass","nodeId":"cast-copper-silicon-brass","humanReadableId":"Cast Copper Silicon Brass","label":"Cast Copper Silicon Brass","disabled":true},{"id":"copper-bismuth-alloy","nodeId":"copper-bismuth-alloy","humanReadableId":"Copper Bismuth Alloy","label":"Copper Bismuth Alloy","disabled":true},{"id":"red-brass","nodeId":"red-brass","humanReadableId":"Red Brass","label":"Red Brass","disabled":true}]},{"id":"cast-copper-bronze","nodeId":"cast-copper-bronze","humanReadableId":"Cast Copper Bronze","label":"Cast Copper Bronze","disabled":true,"children":[{"id":"cast-copper-bronze-aluminium-bronze","nodeId":"cast-copper-bronze-aluminium-bronze","humanReadableId":"Cast Copper Bronze Aluminium Bronze","label":"Cast Copper Bronze Aluminium Bronze","disabled":true},{"id":"leaded-tin-bronze","nodeId":"leaded-tin-bronze","humanReadableId":"Leaded Tin Bronze","label":"Leaded Tin Bronze","disabled":true},{"id":"nickel-tin-bronze","nodeId":"nickel-tin-bronze","humanReadableId":"Nickel Tin Bronze","label":"Nickel Tin Bronze","disabled":true},{"id":"tin-bronze","nodeId":"tin-bronze","humanReadableId":"Tin Bronze","label":"Tin Bronze","disabled":true}]},{"id":"cast-copper-high-copper-alloy","nodeId":"cast-copper-high-copper-alloy","humanReadableId":"Cast Copper High Copper Alloy","label":"Cast Copper High Copper Alloy","disabled":true},{"id":"cast-copper-nickel-grade","nodeId":"cast-copper-nickel-grade","humanReadableId":"Cast Copper Nickel Grade","label":"Cast Copper Nickel Grade","disabled":true},{"id":"cast-copper-nickel-silver-grade","nodeId":"cast-copper-nickel-silver-grade","humanReadableId":"Cast Copper Nickel Silver Grade","label":"Cast Copper Nickel Silver Grade","disabled":true},{"id":"cast-copper-pure---low-alloyed-copper","nodeId":"cast-copper-pure---low-alloyed-copper","humanReadableId":"Cast Copper Pure / Low Alloyed Copper","label":"Cast Copper Pure / Low Alloyed Copper","disabled":true},{"id":"copper-lead-alloy","nodeId":"copper-lead-alloy","humanReadableId":"Copper-Lead Alloy","label":"Copper-Lead Alloy","disabled":true},{"id":"special-alloy","nodeId":"special-alloy","humanReadableId":"Special Alloy","label":"Special Alloy","disabled":true}]},{"id":"welding","nodeId":"welding","humanReadableId":"Welding","label":"Welding","disabled":true},{"id":"wrought-copper","nodeId":"wrought-copper","humanReadableId":"Wrought Copper","label":"Wrought Copper","disabled":true,"children":[{"id":"unclassified-wrought-copper","nodeId":"unclassified-wrought-copper","humanReadableId":"Unclassified Wrought Copper","label":"Unclassified Wrought Copper","disabled":true},{"id":"wrought-copper-brass","nodeId":"wrought-copper-brass","humanReadableId":"Wrought Copper Brass","label":"Wrought Copper Brass","disabled":true,"children":[{"id":"leaded-brass","nodeId":"leaded-brass","humanReadableId":"Leaded Brass","label":"Leaded Brass","disabled":true},{"id":"other-copper-zinc-alloy","nodeId":"other-copper-zinc-alloy","humanReadableId":"Other Copper Zinc Alloy","label":"Other Copper Zinc Alloy","disabled":true},{"id":"tin-brass","nodeId":"tin-brass","humanReadableId":"Tin Brass","label":"Tin Brass","disabled":true},{"id":"wrought-copper-brass-yellow-brass","nodeId":"wrought-copper-brass-yellow-brass","humanReadableId":"Wrought Copper Brass Yellow Brass","label":"Wrought Copper Brass Yellow Brass","disabled":true},{"id":"yellow-wrought-brass","nodeId":"yellow-wrought-brass","humanReadableId":"Yellow Wrought Brass","label":"Yellow Wrought Brass","disabled":true}]},{"id":"wrought-copper-bronze","nodeId":"wrought-copper-bronze","humanReadableId":"Wrought Copper Bronze","label":"Wrought Copper Bronze","disabled":true,"children":[{"id":"copper-silver-zinc-alloy","nodeId":"copper-silver-zinc-alloy","humanReadableId":"Copper Silver Zinc Alloy","label":"Copper Silver Zinc Alloy","disabled":true},{"id":"leaded-phosphor-bronze","nodeId":"leaded-phosphor-bronze","humanReadableId":"Leaded Phosphor Bronze","label":"Leaded Phosphor Bronze","disabled":true},{"id":"other-copper-zinc-alloy","nodeId":"other-copper-zinc-alloy-","humanReadableId":"Other Copper Zinc Alloy","label":"Other Copper Zinc Alloy","disabled":true},{"id":"phosphor-bronze","nodeId":"phosphor-bronze","humanReadableId":"Phosphor Bronze","label":"Phosphor Bronze","disabled":true},{"id":"wrought-copper-bronze-aluminium-bronze","nodeId":"wrought-copper-bronze-aluminium-bronze","humanReadableId":"Wrought Copper Bronze Aluminium Bronze","label":"Wrought Copper Bronze Aluminium Bronze","disabled":true},{"id":"wrought-copper-bronze-silicon-bronze","nodeId":"wrought-copper-bronze-silicon-bronze","humanReadableId":"Wrought Copper Bronze Silicon Bronze","label":"Wrought Copper Bronze Silicon Bronze","disabled":true}]},{"id":"wrought-copper-high-copper-alloy","nodeId":"wrought-copper-high-copper-alloy","humanReadableId":"Wrought Copper High Copper Alloy","label":"Wrought Copper High Copper Alloy","disabled":true},{"id":"wrought-copper-nickel-grade","nodeId":"wrought-copper-nickel-grade","humanReadableId":"Wrought Copper Nickel Grade","label":"Wrought Copper Nickel Grade","disabled":true},{"id":"wrought-copper-nickel-silver-grade","nodeId":"wrought-copper-nickel-silver-grade","humanReadableId":"Wrought Copper Nickel Silver Grade","label":"Wrought Copper Nickel Silver Grade","disabled":true},{"id":"wrought-copper-pure---low-alloyed-copper","nodeId":"wrought-copper-pure---low-alloyed-copper","humanReadableId":"Wrought Copper Pure / Low Alloyed Copper","label":"Wrought Copper Pure / Low Alloyed Copper","disabled":true}]}]},{"id":"iron","nodeId":"iron","humanReadableId":"Iron","label":"Iron","disabled":true,"children":[{"id":"alloy-iron","nodeId":"alloy-iron","humanReadableId":"Alloy Iron","label":"Alloy Iron","disabled":true},{"id":"cast-iron","nodeId":"cast-iron","humanReadableId":"Cast Iron","label":"Cast Iron","disabled":true,"children":[{"id":"ductile--nodular--cast-iron","nodeId":"ductile--nodular--cast-iron","humanReadableId":"Ductile (Nodular) Cast Iron","label":"Ductile (Nodular) Cast Iron","disabled":true},{"id":"grey-cast-iron","nodeId":"grey-cast-iron","humanReadableId":"Grey Cast Iron","label":"Grey Cast Iron","disabled":true},{"id":"malleable-cast-iron","nodeId":"malleable-cast-iron","humanReadableId":"Malleable Cast Iron","label":"Malleable Cast Iron","disabled":true},{"id":"other-cast-iron-alloy","nodeId":"other-cast-iron-alloy","humanReadableId":"Other Cast Iron Alloy","label":"Other Cast Iron Alloy","disabled":true},{"id":"white-cast-iron","nodeId":"white-cast-iron","humanReadableId":"White Cast Iron","label":"White Cast Iron","disabled":true}]},{"id":"ferromolybdenum","nodeId":"ferromolybdenum","humanReadableId":"Ferromolybdenum","label":"Ferromolybdenum","disabled":true},{"id":"ferrosilicon","nodeId":"ferrosilicon","humanReadableId":"Ferrosilicon","label":"Ferrosilicon","disabled":true},{"id":"ferrovanadium","nodeId":"ferrovanadium","humanReadableId":"Ferrovanadium","label":"Ferrovanadium","disabled":true},{"id":"iron-alloy","nodeId":"iron-alloy","humanReadableId":"Iron Alloy","label":"Iron Alloy","disabled":true,"children":[{"id":"aluminium-nickel-cobalt-iron-alloy","nodeId":"aluminium-nickel-cobalt-iron-alloy","humanReadableId":"Aluminium Nickel Cobalt Iron Alloy","label":"Aluminium Nickel Cobalt Iron Alloy","disabled":true},{"id":"miscellaneous-iron-alloy","nodeId":"miscellaneous-iron-alloy","humanReadableId":"Miscellaneous Iron Alloy","label":"Miscellaneous Iron Alloy","disabled":true},{"id":"soft-magnetic-iron","nodeId":"soft-magnetic-iron","humanReadableId":"Soft Magnetic Iron","label":"Soft Magnetic Iron","disabled":true}]},{"id":"malleable-cast-iron","nodeId":"malleable-cast-iron-","humanReadableId":"Malleable Cast Iron","label":"Malleable Cast Iron","disabled":true}]},{"id":"magnesium","nodeId":"magnesium","humanReadableId":"Magnesium","label":"Magnesium","disabled":true,"children":[{"id":"aluminium-grade","nodeId":"aluminium-grade","humanReadableId":"Aluminium Grade","label":"Aluminium Grade","disabled":true},{"id":"cast-aluminium-manganese-grade","nodeId":"cast-aluminium-manganese-grade","humanReadableId":"Cast Aluminium Manganese Grade","label":"Cast Aluminium Manganese Grade","disabled":true},{"id":"cast-rare-earth-grade","nodeId":"cast-rare-earth-grade","humanReadableId":"Cast Rare Earth Grade","label":"Cast Rare Earth Grade","disabled":true},{"id":"cast-wrought-aluminium-zinc-grade","nodeId":"cast-wrought-aluminium-zinc-grade","humanReadableId":"Cast/Wrought Aluminium Zinc Grade","label":"Cast/Wrought Aluminium Zinc Grade","disabled":true},{"id":"cast-wrought-unclassified-grade","nodeId":"cast-wrought-unclassified-grade","humanReadableId":"Cast/Wrought Unclassified Grade","label":"Cast/Wrought Unclassified Grade","disabled":true},{"id":"pure-magnesium","nodeId":"pure-magnesium","humanReadableId":"Pure Magnesium","label":"Pure Magnesium","disabled":true},{"id":"rare-earth-grade","nodeId":"rare-earth-grade","humanReadableId":"Rare Earth Grade","label":"Rare Earth Grade","disabled":true},{"id":"wrought-zinc-grade","nodeId":"wrought-zinc-grade","humanReadableId":"Wrought Zinc Grade","label":"Wrought Zinc Grade","disabled":true},{"id":"yttrium-grade","nodeId":"yttrium-grade","humanReadableId":"Yttrium Grade","label":"Yttrium Grade","disabled":true},{"id":"zinc-grade","nodeId":"zinc-grade","humanReadableId":"Zinc Grade","label":"Zinc Grade","disabled":true}]},{"id":"manganese","nodeId":"manganese","humanReadableId":"Manganese","label":"Manganese","disabled":true},{"id":"nickel","nodeId":"nickel","humanReadableId":"Nickel","label":"Nickel","disabled":true,"children":[{"id":"nickel-chromium-alloy","nodeId":"nickel-chromium-alloy","humanReadableId":"Nickel Chromium Alloy","label":"Nickel Chromium Alloy","disabled":true},{"id":"nickel-chromium-cobalt-alloy","nodeId":"nickel-chromium-cobalt-alloy","humanReadableId":"Nickel Chromium Cobalt Alloy","label":"Nickel Chromium Cobalt Alloy","disabled":true},{"id":"nickel-chromium-iron-alloy","nodeId":"nickel-chromium-iron-alloy","humanReadableId":"Nickel Chromium Iron Alloy","label":"Nickel Chromium Iron Alloy","disabled":true},{"id":"nickel-chromium-molybdenum-alloy","nodeId":"nickel-chromium-molybdenum-alloy","humanReadableId":"Nickel Chromium Molybdenum Alloy","label":"Nickel Chromium Molybdenum Alloy","disabled":true},{"id":"nickel-cobalt-alloy","nodeId":"nickel-cobalt-alloy","humanReadableId":"Nickel Cobalt Alloy","label":"Nickel Cobalt Alloy","disabled":true},{"id":"nickel-copper-alloy","nodeId":"nickel-copper-alloy","humanReadableId":"Nickel Copper Alloy","label":"Nickel Copper Alloy","disabled":true},{"id":"nickel-iron-alloy","nodeId":"nickel-iron-alloy","humanReadableId":"Nickel Iron Alloy","label":"Nickel Iron Alloy","disabled":true},{"id":"nickel-molybdenum-alloy","nodeId":"nickel-molybdenum-alloy","humanReadableId":"Nickel Molybdenum Alloy","label":"Nickel Molybdenum Alloy","disabled":true},{"id":"nickel-superalloy","nodeId":"nickel-superalloy","humanReadableId":"Nickel Superalloy","label":"Nickel Superalloy","disabled":true},{"id":"nickel-welding-filler","nodeId":"nickel-welding-filler","humanReadableId":"Nickel Welding Filler","label":"Nickel Welding Filler","disabled":true},{"id":"other-nickel-alloy","nodeId":"other-nickel-alloy","humanReadableId":"Other Nickel Alloy","label":"Other Nickel Alloy","disabled":true},{"id":"pure-low-nickel-alloy","nodeId":"pure-low-nickel-alloy","humanReadableId":"Pure/Low Nickel Alloy","label":"Pure/Low Nickel Alloy","disabled":true}]},{"id":"noble-metal","nodeId":"noble-metal","humanReadableId":"Noble Metal","label":"Noble Metal","disabled":true,"children":[{"id":"gold","nodeId":"gold","humanReadableId":"Gold","label":"Gold","disabled":true},{"id":"iridium","nodeId":"iridium","humanReadableId":"Iridium","label":"Iridium","disabled":true},{"id":"palladium","nodeId":"palladium","humanReadableId":"Palladium","label":"Palladium","disabled":true},{"id":"platinum","nodeId":"platinum","humanReadableId":"Platinum","label":"Platinum","disabled":true},{"id":"rhodium","nodeId":"rhodium","humanReadableId":"Rhodium","label":"Rhodium","disabled":true},{"id":"silver","nodeId":"silver","humanReadableId":"Silver","label":"Silver","disabled":true}]},{"id":"other-metal","nodeId":"other-metal","humanReadableId":"Other Metal","label":"Other Metal","disabled":true,"children":[{"id":"beryllium","nodeId":"beryllium","humanReadableId":"Beryllium","label":"Beryllium","disabled":true},{"id":"cadmium","nodeId":"cadmium","humanReadableId":"Cadmium","label":"Cadmium","disabled":true},{"id":"chromium","nodeId":"chromium","humanReadableId":"Chromium","label":"Chromium","disabled":true},{"id":"lead","nodeId":"lead","humanReadableId":"Lead","label":"Lead","disabled":true,"children":[{"id":"lead-antimony","nodeId":"lead-antimony","humanReadableId":"Lead Antimony","label":"Lead Antimony","disabled":true},{"id":"lead-tin","nodeId":"lead-tin","humanReadableId":"Lead Tin","label":"Lead Tin","disabled":true},{"id":"pure-low-alloyed-lead","nodeId":"pure-low-alloyed-lead","humanReadableId":"Pure/Low Alloyed Lead","label":"Pure/Low Alloyed Lead","disabled":true}]},{"id":"lithium","nodeId":"lithium","humanReadableId":"Lithium","label":"Lithium","disabled":true},{"id":"neodymium","nodeId":"neodymium","humanReadableId":"Neodymium","label":"Neodymium","disabled":true,"children":[{"id":"neodymium-iron-boron-alloy","nodeId":"neodymium-iron-boron-alloy","humanReadableId":"Neodymium Iron Boron Alloy","label":"Neodymium Iron Boron Alloy","disabled":true}]},{"id":"samarium","nodeId":"samarium","humanReadableId":"Samarium","label":"Samarium","disabled":true,"children":[{"id":"samarium-cobalt-alloy","nodeId":"samarium-cobalt-alloy","humanReadableId":"Samarium Cobalt Alloy","label":"Samarium Cobalt Alloy","disabled":true}]},{"id":"tin","nodeId":"tin","humanReadableId":"Tin","label":"Tin","disabled":true,"children":[{"id":"pure-low-alloyed-tin","nodeId":"pure-low-alloyed-tin","humanReadableId":"Pure/Low Alloyed Tin","label":"Pure/Low Alloyed Tin","disabled":true},{"id":"tin-antimony","nodeId":"tin-antimony","humanReadableId":"Tin Antimony","label":"Tin Antimony","disabled":true},{"id":"tin-lead","nodeId":"tin-lead","humanReadableId":"Tin Lead","label":"Tin Lead","disabled":true},{"id":"unclassified-tin","nodeId":"unclassified-tin","humanReadableId":"Unclassified Tin","label":"Unclassified Tin","disabled":true}]},{"id":"zinc","nodeId":"zinc","humanReadableId":"Zinc","label":"Zinc","disabled":true,"children":[{"id":"unalloyed-zinc","nodeId":"unalloyed-zinc","humanReadableId":"Unalloyed Zinc","label":"Unalloyed Zinc","disabled":true},{"id":"unclassified-zinc","nodeId":"unclassified-zinc","humanReadableId":"Unclassified Zinc","label":"Unclassified Zinc","disabled":true},{"id":"zinc-aluminium","nodeId":"zinc-aluminium","humanReadableId":"Zinc Aluminium","label":"Zinc Aluminium","disabled":true}]}]},{"id":"refractory-metal","nodeId":"refractory-metal","humanReadableId":"Refractory Metal","label":"Refractory Metal","disabled":true,"children":[{"id":"hafnium","nodeId":"hafnium","humanReadableId":"Hafnium","label":"Hafnium","disabled":true},{"id":"molybdenum","nodeId":"molybdenum","humanReadableId":"Molybdenum","label":"Molybdenum","disabled":true},{"id":"niobium","nodeId":"niobium","humanReadableId":"Niobium","label":"Niobium","disabled":true},{"id":"rhenium","nodeId":"rhenium","humanReadableId":"Rhenium","label":"Rhenium","disabled":true},{"id":"tantalum","nodeId":"tantalum","humanReadableId":"Tantalum","label":"Tantalum","disabled":true},{"id":"tungsten","nodeId":"tungsten","humanReadableId":"Tungsten","label":"Tungsten","disabled":true},{"id":"vanadium","nodeId":"vanadium","humanReadableId":"Vanadium","label":"Vanadium","disabled":true},{"id":"zirconium","nodeId":"zirconium","humanReadableId":"Zirconium","label":"Zirconium","disabled":true}]},{"id":"steel","nodeId":"steel","humanReadableId":"Steel","label":"Steel","checked":true,"children":[{"id":"alloy-steel","nodeId":"alloy-steel","humanReadableId":"Alloy Steel","label":"Alloy Steel","checked":true,"children":[{"id":"chromium-molybdenum-steel","nodeId":"chromium-molybdenum-steel","humanReadableId":"Chromium Molybdenum Steel","label":"Chromium Molybdenum Steel","checked":true},{"id":"chromium-molybdenum-vanadium-steel","nodeId":"chromium-molybdenum-vanadium-steel","humanReadableId":"Chromium Molybdenum Vanadium Steel","label":"Chromium Molybdenum Vanadium Steel","checked":true},{"id":"chromium-steel","nodeId":"chromium-steel","humanReadableId":"Chromium Steel","label":"Chromium Steel","checked":true},{"id":"chromium-vanadium-steel","nodeId":"chromium-vanadium-steel","humanReadableId":"Chromium Vanadium Steel","label":"Chromium Vanadium Steel","checked":true},{"id":"manganese-steel","nodeId":"manganese-steel","humanReadableId":"Manganese Steel","label":"Manganese Steel","checked":true},{"id":"molybdenum-steel","nodeId":"molybdenum-steel","humanReadableId":"Molybdenum Steel","label":"Molybdenum Steel","checked":true},{"id":"nickel-chromium-molybdenum-steel","nodeId":"nickel-chromium-molybdenum-steel","humanReadableId":"Nickel Chromium Molybdenum Steel","label":"Nickel Chromium Molybdenum Steel","checked":true},{"id":"nickel-chromium-steel","nodeId":"nickel-chromium-steel","humanReadableId":"Nickel Chromium Steel","label":"Nickel Chromium Steel","checked":true},{"id":"nickel-molybdenum-steel","nodeId":"nickel-molybdenum-steel","humanReadableId":"Nickel Molybdenum Steel","label":"Nickel Molybdenum Steel","checked":true,"disabled":true},{"id":"nickel-steel","nodeId":"nickel-steel","humanReadableId":"Nickel Steel","label":"Nickel Steel","checked":true},{"id":"nitriding-steel","nodeId":"nitriding-steel","humanReadableId":"Nitriding Steel","label":"Nitriding Steel","checked":true},{"id":"silicon-manganese-steel","nodeId":"silicon-manganese-steel","humanReadableId":"Silicon Manganese Steel","label":"Silicon Manganese Steel","checked":true,"disabled":true},{"id":"silicon-steel","nodeId":"silicon-steel","humanReadableId":"Silicon Steel","label":"Silicon Steel","checked":true,"disabled":true},{"id":"unclassified-low-alloy-steel","nodeId":"unclassified-low-alloy-steel","humanReadableId":"Unclassified Low Alloy Steel","label":"Unclassified Low Alloy Steel","checked":true}]},{"id":"carbon-steel","nodeId":"carbon-steel","humanReadableId":"Carbon Steel","label":"Carbon Steel","checked":true,"children":[{"id":"high-carbon-steel","nodeId":"high-carbon-steel","humanReadableId":"High Carbon Steel","label":"High Carbon Steel","checked":true},{"id":"low-carbon-steel","nodeId":"low-carbon-steel","humanReadableId":"Low Carbon Steel","label":"Low Carbon Steel","checked":true},{"id":"medium-carbon-steel","nodeId":"medium-carbon-steel","humanReadableId":"Medium Carbon Steel","label":"Medium Carbon Steel","checked":true},{"id":"unclassified-carbon-steel","nodeId":"unclassified-carbon-steel","humanReadableId":"Unclassified Carbon Steel","label":"Unclassified Carbon Steel","checked":true}]},{"id":"low-alloy-steel","nodeId":"low-alloy-steel","humanReadableId":"Low Alloy Steel","label":"Low Alloy Steel","checked":true,"disabled":true,"children":[{"id":"low-carbon-steel","nodeId":"low-carbon-steel-","humanReadableId":"Low Carbon Steel","label":"Low Carbon Steel","checked":true,"disabled":true}]},{"id":"maraging-steel","nodeId":"maraging-steel","humanReadableId":"Maraging Steel","label":"Maraging Steel","checked":true,"disabled":true},{"id":"stainless-steel","nodeId":"stainless-steel","humanReadableId":"Stainless Steel","label":"Stainless Steel","checked":true,"children":[{"id":"austenitic-stainless-steel","nodeId":"austenitic-stainless-steel","humanReadableId":"Austenitic Stainless Steel","label":"Austenitic Stainless Steel","checked":true},{"id":"duplex-stainless-steel","nodeId":"duplex-stainless-steel","humanReadableId":"Duplex Stainless Steel","label":"Duplex Stainless Steel","checked":true},{"id":"ferritic-stainless-steel","nodeId":"ferritic-stainless-steel","humanReadableId":"Ferritic Stainless Steel","label":"Ferritic Stainless Steel","checked":true},{"id":"martensitic-stainless-steel","nodeId":"martensitic-stainless-steel","humanReadableId":"Martensitic Stainless Steel","label":"Martensitic Stainless Steel","checked":true},{"id":"precipitation-hardening-stainless-steel","nodeId":"precipitation-hardening-stainless-steel","humanReadableId":"Precipitation Hardening Stainless Steel","label":"Precipitation Hardening Stainless Steel","checked":true},{"id":"superaustenitic-stainless-steel","nodeId":"superaustenitic-stainless-steel","humanReadableId":"Superaustenitic Stainless Steel","label":"Superaustenitic Stainless Steel","checked":true},{"id":"unclassified-stainless-steel","nodeId":"unclassified-stainless-steel","humanReadableId":"Unclassified Stainless Steel","label":"Unclassified Stainless Steel","checked":true}]},{"id":"tool-and-machining-steel","nodeId":"tool-and-machining-steel","humanReadableId":"Tool And Machining Steel","label":"Tool And Machining Steel","checked":true}]},{"id":"titanium","nodeId":"titanium","humanReadableId":"Titanium","label":"Titanium","disabled":true,"children":[{"id":"alpha-alloy","nodeId":"alpha-alloy","humanReadableId":"Alpha Alloy","label":"Alpha Alloy","disabled":true},{"id":"alpha-beta-alloy","nodeId":"alpha-beta-alloy","humanReadableId":"Alpha Beta Alloy","label":"Alpha Beta Alloy","disabled":true},{"id":"beta-alloy","nodeId":"beta-alloy","humanReadableId":"Beta Alloy","label":"Beta Alloy","disabled":true},{"id":"low-alloy-titanium","nodeId":"low-alloy-titanium","humanReadableId":"Low Alloy Titanium","label":"Low Alloy Titanium","disabled":true},{"id":"near-alpha-alloy","nodeId":"near-alpha-alloy","humanReadableId":"Near Alpha Alloy","label":"Near Alpha Alloy","disabled":true},{"id":"pure-titanium","nodeId":"pure-titanium","humanReadableId":"Pure Titanium","label":"Pure Titanium","disabled":true}]}]},{"id":"polymer","nodeId":"polymer","humanReadableId":"Polymer","label":"Polymer","disabled":true,"children":[{"id":"elastomer","nodeId":"elastomer","humanReadableId":"Elastomer","label":"Elastomer","disabled":true,"children":[{"id":"butadiene-rubber--br-","nodeId":"butadiene-rubber--br-","humanReadableId":"Butadiene Rubber (BR)","label":"Butadiene Rubber (BR)","disabled":true},{"id":"chloroprene-rubber--cr-","nodeId":"chloroprene-rubber--cr-","humanReadableId":"Chloroprene Rubber (CR)","label":"Chloroprene Rubber (CR)","disabled":true},{"id":"ethylene-propylene-diene-rubber--epdm-","nodeId":"ethylene-propylene-diene-rubber--epdm-","humanReadableId":"Ethylene Propylene Diene Rubber (EPDM)","label":"Ethylene Propylene Diene Rubber (EPDM)","disabled":true},{"id":"ethylene-propylene-rubber--epr-","nodeId":"ethylene-propylene-rubber--epr-","humanReadableId":"Ethylene Propylene Rubber (EPR)","label":"Ethylene Propylene Rubber (EPR)","disabled":true},{"id":"fluorosilicone-rubber--fvmq-","nodeId":"fluorosilicone-rubber--fvmq-","humanReadableId":"Fluorosilicone Rubber (FVMQ)","label":"Fluorosilicone Rubber (FVMQ)","disabled":true},{"id":"natural-rubber--nr-","nodeId":"natural-rubber--nr-","humanReadableId":"Natural Rubber (NR)","label":"Natural Rubber (NR)","disabled":true},{"id":"nitrile-rubber--nbr-","nodeId":"nitrile-rubber--nbr-","humanReadableId":"Nitrile Rubber (NBR)","label":"Nitrile Rubber (NBR)","disabled":true},{"id":"styrene-butadiene-rubber--sbr-","nodeId":"styrene-butadiene-rubber--sbr-","humanReadableId":"Styrene Butadiene Rubber (SBR)","label":"Styrene Butadiene Rubber (SBR)","disabled":true},{"id":"thermoplastic-elastomer--tpe-","nodeId":"thermoplastic-elastomer--tpe-","humanReadableId":"Thermoplastic Elastomer (TPE)","label":"Thermoplastic Elastomer (TPE)","disabled":true,"children":[{"id":"elastomeric-alloy--tpv-","nodeId":"elastomeric-alloy--tpv-","humanReadableId":"Elastomeric Alloy (TPV)","label":"Elastomeric Alloy (TPV)","disabled":true},{"id":"styrene-butadiene-styrene--sbs-","nodeId":"styrene-butadiene-styrene--sbs-","humanReadableId":"Styrene Butadiene Styrene (SBS)","label":"Styrene Butadiene Styrene (SBS)","disabled":true},{"id":"thermoplastic-copolyester--tpc-","nodeId":"thermoplastic-copolyester--tpc-","humanReadableId":"Thermoplastic Copolyester (TPC)","label":"Thermoplastic Copolyester (TPC)","disabled":true},{"id":"thermoplastic-polyamide--tpa-","nodeId":"thermoplastic-polyamide--tpa-","humanReadableId":"Thermoplastic Polyamide (TPA)","label":"Thermoplastic Polyamide (TPA)","disabled":true},{"id":"thermoplastic-polyester-elastomer--tpee-","nodeId":"thermoplastic-polyester-elastomer--tpee-","humanReadableId":"Thermoplastic Polyester Elastomer (TPEE)","label":"Thermoplastic Polyester Elastomer (TPEE)","disabled":true},{"id":"thermoplastic-polyolefin--tpo-","nodeId":"thermoplastic-polyolefin--tpo-","humanReadableId":"Thermoplastic Polyolefin (TPO)","label":"Thermoplastic Polyolefin (TPO)","disabled":true},{"id":"thermoplastic-polyurethane--tpu-","nodeId":"thermoplastic-polyurethane--tpu-","humanReadableId":"Thermoplastic Polyurethane (TPU)","label":"Thermoplastic Polyurethane (TPU)","disabled":true},{"id":"thermoplastic-styrenic-block-copolymer--tps-","nodeId":"thermoplastic-styrenic-block-copolymer--tps-","humanReadableId":"Thermoplastic Styrenic Block Copolymer (TPS)","label":"Thermoplastic Styrenic Block Copolymer (TPS)","disabled":true}]}]},{"id":"thermoplastic","nodeId":"thermoplastic","humanReadableId":"Thermoplastic","label":"Thermoplastic","disabled":true,"children":[{"id":"acrylic","nodeId":"acrylic","humanReadableId":"Acrylic","label":"Acrylic","disabled":true,"children":[{"id":"polyacrylonitrile--pan-","nodeId":"polyacrylonitrile--pan-","humanReadableId":"Polyacrylonitrile (PAN)","label":"Polyacrylonitrile (PAN)","disabled":true},{"id":"polymethyl-methacrylate--pmma-","nodeId":"polymethyl-methacrylate--pmma-","humanReadableId":"Polymethyl methacrylate (PMMA)","label":"Polymethyl methacrylate (PMMA)","disabled":true}]},{"id":"fluoropolymer","nodeId":"fluoropolymer","humanReadableId":"Fluoropolymer","label":"Fluoropolymer","disabled":true,"children":[{"id":"ethylene-tetrafluoroethylene-copolymer--etfe-","nodeId":"ethylene-tetrafluoroethylene-copolymer--etfe-","humanReadableId":"Ethylene Tetrafluoroethylene Copolymer (ETFE)","label":"Ethylene Tetrafluoroethylene Copolymer (ETFE)","disabled":true},{"id":"fluorinated-ethylene-propylene--fep-","nodeId":"fluorinated-ethylene-propylene--fep-","humanReadableId":"Fluorinated ethylene propylene (FEP)","label":"Fluorinated ethylene propylene (FEP)","disabled":true},{"id":"polytetrafluoroethylene--ptfe-","nodeId":"polytetrafluoroethylene--ptfe-","humanReadableId":"Polytetrafluoroethylene (PTFE)","label":"Polytetrafluoroethylene (PTFE)","disabled":true},{"id":"polyvinylidenefluoride--pvdf-","nodeId":"polyvinylidenefluoride--pvdf-","humanReadableId":"Polyvinylidenefluoride (PVDF)","label":"Polyvinylidenefluoride (PVDF)","disabled":true}]},{"id":"liquid-crystal-polymers--lcp-","nodeId":"liquid-crystal-polymers--lcp-","humanReadableId":"Liquid Crystal Polymers (LCP)","label":"Liquid Crystal Polymers (LCP)","disabled":true},{"id":"polyamide--pa-","nodeId":"polyamide--pa-","humanReadableId":"Polyamide (PA)","label":"Polyamide (PA)","disabled":true,"children":[{"id":"aramide","nodeId":"aramide","humanReadableId":"Aramide","label":"Aramide","disabled":true},{"id":"copolyamide-6-66--pa6-66-","nodeId":"copolyamide-6-66--pa6-66-","humanReadableId":"Copolyamide 6/66 (PA6/66)","label":"Copolyamide 6/66 (PA6/66)","disabled":true},{"id":"other-polyamide--pa-","nodeId":"other-polyamide--pa-","humanReadableId":"Other Polyamide (PA)","label":"Other Polyamide (PA)","disabled":true},{"id":"polyamide-1010--pa1010-","nodeId":"polyamide-1010--pa1010-","humanReadableId":"Polyamide 1010 (PA1010)","label":"Polyamide 1010 (PA1010)","disabled":true},{"id":"polyamide-1012--pa1012-","nodeId":"polyamide-1012--pa1012-","humanReadableId":"Polyamide 1012 (PA1012)","label":"Polyamide 1012 (PA1012)","disabled":true},{"id":"polyamide-11--pa11-","nodeId":"polyamide-11--pa11-","humanReadableId":"Polyamide 11 (PA11)","label":"Polyamide 11 (PA11)","disabled":true},{"id":"polyamide-12--pa12-","nodeId":"polyamide-12--pa12-","humanReadableId":"Polyamide 12 (PA12)","label":"Polyamide 12 (PA12)","disabled":true},{"id":"polyamide-410--pa410-","nodeId":"polyamide-410--pa410-","humanReadableId":"Polyamide 410 (PA410)","label":"Polyamide 410 (PA410)","disabled":true},{"id":"polyamide-46--pa46-","nodeId":"polyamide-46--pa46-","humanReadableId":"Polyamide 46 (PA46)","label":"Polyamide 46 (PA46)","disabled":true},{"id":"polyamide-6--pa6-","nodeId":"polyamide-6--pa6-","humanReadableId":"Polyamide 6 (PA6)","label":"Polyamide 6 (PA6)","disabled":true,"children":[{"id":"polyamide-4t--pa4t-","nodeId":"polyamide-4t--pa4t-","humanReadableId":"Polyamide 4T (PA4T)","label":"Polyamide 4T (PA4T)","disabled":true}]},{"id":"polyamide-6-66--pa6-66-","nodeId":"polyamide-6-66--pa6-66-","humanReadableId":"Polyamide 6/66 (PA6/66)","label":"Polyamide 6/66 (PA6/66)","disabled":true},{"id":"polyamide-610--pa610-","nodeId":"polyamide-610--pa610-","humanReadableId":"Polyamide 610 (PA610)","label":"Polyamide 610 (PA610)","disabled":true},{"id":"polyamide-612--pa612-","nodeId":"polyamide-612--pa612-","humanReadableId":"Polyamide 612 (PA612)","label":"Polyamide 612 (PA612)","disabled":true},{"id":"polyamide-66--pa66-","nodeId":"polyamide-66--pa66-","humanReadableId":"Polyamide 66 (PA66)","label":"Polyamide 66 (PA66)","disabled":true},{"id":"polyphthalamide--ppa-","nodeId":"polyphthalamide--ppa-","humanReadableId":"Polyphthalamide (PPA)","label":"Polyphthalamide (PPA)","disabled":true,"children":[{"id":"copolyamide-66-6i--pa66-6i-","nodeId":"copolyamide-66-6i--pa66-6i-","humanReadableId":"Copolyamide 66/6I (PA66/6I)","label":"Copolyamide 66/6I (PA66/6I)","disabled":true},{"id":"copolyamide-6t-66--pa6t-66-","nodeId":"copolyamide-6t-66--pa6t-66-","humanReadableId":"Copolyamide 6T/66 (PA6T/66)","label":"Copolyamide 6T/66 (PA6T/66)","disabled":true},{"id":"copolyamide-6t-6i-66--pa6t-6i-66-","nodeId":"copolyamide-6t-6i-66--pa6t-6i-66-","humanReadableId":"Copolyamide 6T/6I/66 (PA6T/6I/66)","label":"Copolyamide 6T/6I/66 (PA6T/6I/66)","disabled":true},{"id":"copolyamide-pa6i-6t--pa6i-6t-","nodeId":"copolyamide-pa6i-6t--pa6i-6t-","humanReadableId":"Copolyamide PA6I/6T (PA6I/6T)","label":"Copolyamide PA6I/6T (PA6I/6T)","disabled":true},{"id":"polyamide-4t--pa4t-","nodeId":"polyamide-4t--pa4t--","humanReadableId":"Polyamide 4T (PA4T)","label":"Polyamide 4T (PA4T)","disabled":true},{"id":"polyamide-6t--pa6t-","nodeId":"polyamide-6t--pa6t-","humanReadableId":"Polyamide 6T (PA6T)","label":"Polyamide 6T (PA6T)","disabled":true},{"id":"polyamide-mxd6--pamxd6-","nodeId":"polyamide-mxd6--pamxd6-","humanReadableId":"Polyamide MXD6 (PAMXD6)","label":"Polyamide MXD6 (PAMXD6)","disabled":true},{"id":"polyamide-pa6-6t--pa6-6t-","nodeId":"polyamide-pa6-6t--pa6-6t-","humanReadableId":"Polyamide PA6/6T (PA6/6T)","label":"Polyamide PA6/6T (PA6/6T)","disabled":true}]}]},{"id":"polyaryletherketone--paek-","nodeId":"polyaryletherketone--paek-","humanReadableId":"Polyaryletherketone (PAEK)","label":"Polyaryletherketone (PAEK)","disabled":true,"children":[{"id":"polyether-ketone--pek-","nodeId":"polyether-ketone--pek-","humanReadableId":"Polyether Ketone (PEK)","label":"Polyether Ketone (PEK)","disabled":true},{"id":"polyetherether-ketone--peek-","nodeId":"polyetherether-ketone--peek-","humanReadableId":"Polyetherether Ketone (PEEK)","label":"Polyetherether Ketone (PEEK)","disabled":true},{"id":"polyetherketoneketone--pekk-","nodeId":"polyetherketoneketone--pekk-","humanReadableId":"Polyetherketoneketone (PEKK)","label":"Polyetherketoneketone (PEKK)","disabled":true}]},{"id":"polycarbonate--pc-","nodeId":"polycarbonate--pc-","humanReadableId":"Polycarbonate (PC)","label":"Polycarbonate (PC)","disabled":true},{"id":"polyester","nodeId":"polyester","humanReadableId":"Polyester","label":"Polyester","disabled":true,"children":[{"id":"polybutylene-terephthalate--pbt-","nodeId":"polybutylene-terephthalate--pbt-","humanReadableId":"Polybutylene Terephthalate (PBT)","label":"Polybutylene Terephthalate (PBT)","disabled":true},{"id":"polyethylene-terephthalate--pet-","nodeId":"polyethylene-terephthalate--pet-","humanReadableId":"Polyethylene Terephthalate (PET)","label":"Polyethylene Terephthalate (PET)","disabled":true},{"id":"polyethylene-terephthalate-glycol--petg-","nodeId":"polyethylene-terephthalate-glycol--petg-","humanReadableId":"Polyethylene Terephthalate Glycol (PETG)","label":"Polyethylene Terephthalate Glycol (PETG)","disabled":true},{"id":"polyglycolicide--pga-","nodeId":"polyglycolicide--pga-","humanReadableId":"Polyglycolicide (PGA)","label":"Polyglycolicide (PGA)","disabled":true},{"id":"polytrimethylene-terephthalate--ptt-","nodeId":"polytrimethylene-terephthalate--ptt-","humanReadableId":"Polytrimethylene Terephthalate (PTT)","label":"Polytrimethylene Terephthalate (PTT)","disabled":true}]},{"id":"polyethylene--pe-","nodeId":"polyethylene--pe-","humanReadableId":"Polyethylene (PE)","label":"Polyethylene (PE)","disabled":true},{"id":"polyimide--pi-","nodeId":"polyimide--pi-","humanReadableId":"Polyimide (PI)","label":"Polyimide (PI)","disabled":true,"children":[{"id":"polyamidimide--pai-","nodeId":"polyamidimide--pai-","humanReadableId":"Polyamidimide (PAI)","label":"Polyamidimide (PAI)","disabled":true},{"id":"polybenzimidazole--pbi-","nodeId":"polybenzimidazole--pbi-","humanReadableId":"Polybenzimidazole (PBI)","label":"Polybenzimidazole (PBI)","disabled":true},{"id":"polyetherimide--pei-","nodeId":"polyetherimide--pei-","humanReadableId":"Polyetherimide (PEI)","label":"Polyetherimide (PEI)","disabled":true}]},{"id":"polyketone--pk-","nodeId":"polyketone--pk-","humanReadableId":"Polyketone (PK)","label":"Polyketone (PK)","disabled":true},{"id":"polylactic-acid--pla-","nodeId":"polylactic-acid--pla-","humanReadableId":"Polylactic Acid (PLA)","label":"Polylactic Acid (PLA)","disabled":true},{"id":"polymer-blend","nodeId":"polymer-blend","humanReadableId":"Polymer Blend","label":"Polymer Blend","disabled":true},{"id":"polyolefin--po-","nodeId":"polyolefin--po-","humanReadableId":"Polyolefin (PO)","label":"Polyolefin (PO)","disabled":true,"children":[{"id":"polybutene--pb-","nodeId":"polybutene--pb-","humanReadableId":"Polybutene (PB)","label":"Polybutene (PB)","disabled":true},{"id":"polyethylene--pe-","nodeId":"polyethylene--pe--","humanReadableId":"Polyethylene (PE)","label":"Polyethylene (PE)","disabled":true,"children":[{"id":"high-density-polyethylene--pe-hd-","nodeId":"high-density-polyethylene--pe-hd-","humanReadableId":"High Density Polyethylene (PE-HD)","label":"High Density Polyethylene (PE-HD)","disabled":true},{"id":"high-molecular-weight-polyethylene--pe-hmw-","nodeId":"high-molecular-weight-polyethylene--pe-hmw-","humanReadableId":"High Molecular Weight Polyethylene (PE-HMW)","label":"High Molecular Weight Polyethylene (PE-HMW)","disabled":true},{"id":"linear-low-density-polyethylene--pe-lld-","nodeId":"linear-low-density-polyethylene--pe-lld-","humanReadableId":"Linear Low Density Polyethylene (PE-LLD)","label":"Linear Low Density Polyethylene (PE-LLD)","disabled":true},{"id":"low-density-polyethylene--pe-ld-","nodeId":"low-density-polyethylene--pe-ld-","humanReadableId":"Low Density Polyethylene (PE-LD)","label":"Low Density Polyethylene (PE-LD)","disabled":true},{"id":"medium-density-polyethylene--pe-md-","nodeId":"medium-density-polyethylene--pe-md-","humanReadableId":"Medium Density Polyethylene (PE-MD)","label":"Medium Density Polyethylene (PE-MD)","disabled":true},{"id":"ultra-high-molecular-weight-polyethylene--pe-uhmw-","nodeId":"ultra-high-molecular-weight-polyethylene--pe-uhmw-","humanReadableId":"Ultra High Molecular Weight Polyethylene (PE-UHMW)","label":"Ultra High Molecular Weight Polyethylene (PE-UHMW)","disabled":true},{"id":"very-low-density-polyethylene--pe-vld-","nodeId":"very-low-density-polyethylene--pe-vld-","humanReadableId":"Very Low Density Polyethylene (PE-VLD)","label":"Very Low Density Polyethylene (PE-VLD)","disabled":true}]},{"id":"polymethylpentene--pmp-","nodeId":"polymethylpentene--pmp-","humanReadableId":"Polymethylpentene (PMP)","label":"Polymethylpentene (PMP)","disabled":true},{"id":"polypropylene--pp-","nodeId":"polypropylene--pp-","humanReadableId":"Polypropylene (PP)","label":"Polypropylene (PP)","disabled":true}]},{"id":"polyoxymethylene--pom-","nodeId":"polyoxymethylene--pom-","humanReadableId":"Polyoxymethylene (POM)","label":"Polyoxymethylene (POM)","disabled":true},{"id":"polyphenyl","nodeId":"polyphenyl","humanReadableId":"Polyphenyl","label":"Polyphenyl","disabled":true,"children":[{"id":"polyphenyl-ether--ppe-","nodeId":"polyphenyl-ether--ppe-","humanReadableId":"Polyphenyl Ether (PPE)","label":"Polyphenyl Ether (PPE)","disabled":true},{"id":"polyphenylene-oxide--ppo-","nodeId":"polyphenylene-oxide--ppo-","humanReadableId":"Polyphenylene Oxide (PPO)","label":"Polyphenylene Oxide (PPO)","disabled":true},{"id":"polyphenylene-sulfide--pps-","nodeId":"polyphenylene-sulfide--pps-","humanReadableId":"Polyphenylene Sulfide (PPS)","label":"Polyphenylene Sulfide (PPS)","disabled":true}]},{"id":"polysaccharide","nodeId":"polysaccharide","humanReadableId":"Polysaccharide","label":"Polysaccharide","disabled":true},{"id":"polysulphones","nodeId":"polysulphones","humanReadableId":"Polysulphones","label":"Polysulphones","disabled":true,"children":[{"id":"polyether-sulfone--pes-","nodeId":"polyether-sulfone--pes-","humanReadableId":"Polyether Sulfone (PES)","label":"Polyether Sulfone (PES)","disabled":true},{"id":"polyphenylsulphone--ppsu-","nodeId":"polyphenylsulphone--ppsu-","humanReadableId":"Polyphenylsulphone (PPSU)","label":"Polyphenylsulphone (PPSU)","disabled":true},{"id":"polysulphone--psu-","nodeId":"polysulphone--psu-","humanReadableId":"Polysulphone (PSU)","label":"Polysulphone (PSU)","disabled":true},{"id":"polysulphone-general--psu-","nodeId":"polysulphone-general--psu-","humanReadableId":"Polysulphone General (PSU)","label":"Polysulphone General (PSU)","disabled":true}]},{"id":"styrene","nodeId":"styrene","humanReadableId":"Styrene","label":"Styrene","disabled":true,"children":[{"id":"acrylonitrile-butadiene-styrene--abs-","nodeId":"acrylonitrile-butadiene-styrene--abs-","humanReadableId":"Acrylonitrile Butadiene Styrene (ABS)","label":"Acrylonitrile Butadiene Styrene (ABS)","disabled":true},{"id":"acrylonitrile-styrene-acrylate--asa-","nodeId":"acrylonitrile-styrene-acrylate--asa-","humanReadableId":"Acrylonitrile Styrene Acrylate (ASA)","label":"Acrylonitrile Styrene Acrylate (ASA)","disabled":true},{"id":"high-impact-polystyrene--hips-","nodeId":"high-impact-polystyrene--hips-","humanReadableId":"High Impact Polystyrene (HIPS)","label":"High Impact Polystyrene (HIPS)","disabled":true},{"id":"methacrylate-butadiene-styrene--mbs-","nodeId":"methacrylate-butadiene-styrene--mbs-","humanReadableId":"Methacrylate Butadiene Styrene (MBS)","label":"Methacrylate Butadiene Styrene (MBS)","disabled":true},{"id":"polystyrene--ps-","nodeId":"polystyrene--ps-","humanReadableId":"Polystyrene (PS)","label":"Polystyrene (PS)","disabled":true},{"id":"styrene-acrylonitrile--san-","nodeId":"styrene-acrylonitrile--san-","humanReadableId":"Styrene Acrylonitrile (SAN)","label":"Styrene Acrylonitrile (SAN)","disabled":true}]},{"id":"vinyl","nodeId":"vinyl","humanReadableId":"Vinyl","label":"Vinyl","disabled":true,"children":[{"id":"ethylene-vinyl-acetate--evac-","nodeId":"ethylene-vinyl-acetate--evac-","humanReadableId":"Ethylene Vinyl Acetate (EVAC)","label":"Ethylene Vinyl Acetate (EVAC)","disabled":true},{"id":"polyvinyl-chloride--pvc-","nodeId":"polyvinyl-chloride--pvc-","humanReadableId":"Polyvinyl Chloride (PVC)","label":"Polyvinyl Chloride (PVC)","disabled":true}]}]},{"id":"thermosetting","nodeId":"thermosetting","humanReadableId":"Thermosetting","label":"Thermosetting","disabled":true,"children":[{"id":"amino-resin","nodeId":"amino-resin","humanReadableId":"Amino Resin","label":"Amino Resin","disabled":true,"children":[{"id":"bismaleimide--bmi-","nodeId":"bismaleimide--bmi-","humanReadableId":"Bismaleimide (BMI)","label":"Bismaleimide (BMI)","disabled":true},{"id":"melamine-formaldehyde--mf-","nodeId":"melamine-formaldehyde--mf-","humanReadableId":"Melamine formaldehyde (MF)","label":"Melamine formaldehyde (MF)","disabled":true}]},{"id":"epoxy-resin--ep-","nodeId":"epoxy-resin--ep-","humanReadableId":"Epoxy Resin (EP)","label":"Epoxy Resin (EP)","disabled":true},{"id":"phenol-formaldehyde-resin--pf-","nodeId":"phenol-formaldehyde-resin--pf-","humanReadableId":"Phenol Formaldehyde Resin (PF)","label":"Phenol Formaldehyde Resin (PF)","disabled":true},{"id":"phthalonitrile--pn-","nodeId":"phthalonitrile--pn-","humanReadableId":"Phthalonitrile (PN)","label":"Phthalonitrile (PN)","disabled":true},{"id":"polyester-resin--up-","nodeId":"polyester-resin--up-","humanReadableId":"Polyester Resin (UP)","label":"Polyester Resin (UP)","disabled":true},{"id":"vinyl-ester-resin--ve-","nodeId":"vinyl-ester-resin--ve-","humanReadableId":"Vinyl Ester Resin (VE)","label":"Vinyl Ester Resin (VE)","disabled":true}]}]}],"propertySections":[],"suppliers":[{"id":"dest","label":"Deutsche Edelstahlwerke (DEW)","materialsCount":93},{"id":"ugit","label":"Ugitech","materialsCount":50},{"id":"sver","label":"Sverdrup Steel AS","materialsCount":20},{"id":"salo","label":"Salomon's Metalen","materialsCount":16},{"id":"hemp","label":"Hempel Special Metals","materialsCount":4},{"id":"vdmm","label":"VDM Metals","materialsCount":1},{"id":"song","label":"Dongguan songshun mould steel Co., Ltd.","materialsCount":13},{"id":"ambi","label":"Ambica Steels Limited","materialsCount":10}],"supplierMaterialsOnly":false,"polymerFilter":{"disabled":true},"tags":[{"id":"form","value":"bar","label":"Bar"}],"specification":{"queryParams":"categories=steel\u0026tags=form:bar","clauses":[{"type":"tags","id":"form","value":"bar","label":"Bar"}]},"context":{"unitsSystem":"metric","categories":[{"id":"biological-material","nodeId":"biological-material","humanReadableId":"Biological Material","label":"Biological Material","disabled":true,"children":[{"id":"wood","nodeId":"wood","humanReadableId":"Wood","label":"Wood","disabled":true}]},{"id":"ceramic","nodeId":"ceramic","humanReadableId":"Ceramic","label":"Ceramic","disabled":true,"children":[{"id":"carbon","nodeId":"carbon","humanReadableId":"Carbon","label":"Carbon","disabled":true,"children":[{"id":"carbon-nanotube","nodeId":"carbon-nanotube","humanReadableId":"Carbon Nanotube","label":"Carbon Nanotube","disabled":true},{"id":"diamond","nodeId":"diamond","humanReadableId":"Diamond","label":"Diamond","disabled":true,"children":[{"id":"natural-diamond","nodeId":"natural-diamond","humanReadableId":"Natural Diamond","label":"Natural Diamond","disabled":true},{"id":"synthetic-diamond","nodeId":"synthetic-diamond","humanReadableId":"Synthetic Diamond","label":"Synthetic Diamond","disabled":true}]},{"id":"graphene","nodeId":"graphene","humanReadableId":"Graphene","label":"Graphene","disabled":true},{"id":"graphite","nodeId":"graphite","humanReadableId":"Graphite","label":"Graphite","disabled":true}]},{"id":"engineering-ceramic","nodeId":"engineering-ceramic","humanReadableId":"Engineering Ceramic","label":"Engineering Ceramic","disabled":true,"children":[{"id":"non-oxide-based","nodeId":"non-oxide-based","humanReadableId":"Non Oxide Based","label":"Non Oxide Based","disabled":true,"children":[{"id":"boride-based","nodeId":"boride-based","humanReadableId":"Boride Based","label":"Boride Based","disabled":true},{"id":"carbide-based","nodeId":"carbide-based","humanReadableId":"Carbide Based","label":"Carbide Based","disabled":true,"children":[{"id":"boron-carbide","nodeId":"boron-carbide","humanReadableId":"Boron Carbide","label":"Boron Carbide","disabled":true},{"id":"silicon-carbide","nodeId":"silicon-carbide","humanReadableId":"Silicon Carbide","label":"Silicon Carbide","disabled":true},{"id":"tantalum-carbide","nodeId":"tantalum-carbide","humanReadableId":"Tantalum Carbide","label":"Tantalum Carbide","disabled":true},{"id":"titanium-carbide","nodeId":"titanium-carbide","humanReadableId":"Titanium Carbide","label":"Titanium Carbide","disabled":true},{"id":"tungsten-carbide","nodeId":"tungsten-carbide","humanReadableId":"Tungsten Carbide","label":"Tungsten Carbide","disabled":true},{"id":"zirconium-carbide","nodeId":"zirconium-carbide","humanReadableId":"Zirconium Carbide","label":"Zirconium Carbide","disabled":true}]},{"id":"nitride-based","nodeId":"nitride-based","humanReadableId":"Nitride Based","label":"Nitride Based","disabled":true,"children":[{"id":"aluminium-nitirde","nodeId":"aluminium-nitirde","humanReadableId":"Aluminium Nitirde","label":"Aluminium Nitirde","disabled":true},{"id":"boron-nitride","nodeId":"boron-nitride","humanReadableId":"Boron Nitride","label":"Boron Nitride","disabled":true},{"id":"silicon-nitride","nodeId":"silicon-nitride","humanReadableId":"Silicon Nitride","label":"Silicon Nitride","disabled":true},{"id":"titanium-nitride","nodeId":"titanium-nitride","humanReadableId":"Titanium Nitride","label":"Titanium Nitride","disabled":true}]},{"id":"silicate-based","nodeId":"silicate-based","humanReadableId":"Silicate Based","label":"Silicate Based","disabled":true},{"id":"sulfide-based","nodeId":"sulfide-based","humanReadableId":"Sulfide Based","label":"Sulfide Based","disabled":true,"children":[{"id":"bismuth-sulfide","nodeId":"bismuth-sulfide","humanReadableId":"Bismuth Sulfide","label":"Bismuth Sulfide","disabled":true},{"id":"copper-sulfide","nodeId":"copper-sulfide","humanReadableId":"Copper Sulfide","label":"Copper Sulfide","disabled":true},{"id":"iron-sulfide","nodeId":"iron-sulfide","humanReadableId":"Iron Sulfide","label":"Iron Sulfide","disabled":true},{"id":"manganese-sulfide","nodeId":"manganese-sulfide","humanReadableId":"Manganese Sulfide","label":"Manganese Sulfide","disabled":true},{"id":"molybdenum-disulfide","nodeId":"molybdenum-disulfide","humanReadableId":"Molybdenum Disulfide","label":"Molybdenum Disulfide","disabled":true},{"id":"multiphase-metal-sulfide","nodeId":"multiphase-metal-sulfide","humanReadableId":"Multiphase Metal Sulfide","label":"Multiphase Metal Sulfide","disabled":true},{"id":"tin-sulfide","nodeId":"tin-sulfide","humanReadableId":"Tin Sulfide","label":"Tin Sulfide","disabled":true},{"id":"tungsten-disulfide","nodeId":"tungsten-disulfide","humanReadableId":"Tungsten Disulfide","label":"Tungsten Disulfide","disabled":true},{"id":"zinc-sulfide","nodeId":"zinc-sulfide","humanReadableId":"Zinc Sulfide","label":"Zinc Sulfide","disabled":true}]}]},{"id":"oxide-based","nodeId":"oxide-based","humanReadableId":"Oxide Based","label":"Oxide Based","disabled":true,"children":[{"id":"advanced-ceramic-oxides","nodeId":"advanced-ceramic-oxides","humanReadableId":"Advanced Ceramic Oxides","label":"Advanced Ceramic Oxides","disabled":true},{"id":"aluminium-oxide","nodeId":"aluminium-oxide","humanReadableId":"Aluminium Oxide","label":"Aluminium Oxide","disabled":true},{"id":"beryllium-oxide","nodeId":"beryllium-oxide","humanReadableId":"Beryllium Oxide","label":"Beryllium Oxide","disabled":true},{"id":"ferrite","nodeId":"ferrite","humanReadableId":"Ferrite","label":"Ferrite","disabled":true},{"id":"silicon-oxide","nodeId":"silicon-oxide","humanReadableId":"Silicon Oxide","label":"Silicon Oxide","disabled":true,"children":[{"id":"aluminium-silicate","nodeId":"aluminium-silicate","humanReadableId":"Aluminium Silicate","label":"Aluminium Silicate","disabled":true},{"id":"magnesium-silicate","nodeId":"magnesium-silicate","humanReadableId":"Magnesium Silicate","label":"Magnesium Silicate","disabled":true},{"id":"zirconium-silicate","nodeId":"zirconium-silicate","humanReadableId":"Zirconium Silicate","label":"Zirconium Silicate","disabled":true}]},{"id":"titanium-oxide","nodeId":"titanium-oxide","humanReadableId":"Titanium Oxide","label":"Titanium Oxide","disabled":true},{"id":"zirconium-oxide","nodeId":"zirconium-oxide","humanReadableId":"Zirconium Oxide","label":"Zirconium Oxide","disabled":true}]},{"id":"oxide-based-ceramic-matrix-composite","nodeId":"oxide-based-ceramic-matrix-composite","humanReadableId":"Oxide Based Ceramic Matrix Composite","label":"Oxide Based Ceramic Matrix Composite","disabled":true,"children":[{"id":"multi-oxide-ceramics","nodeId":"multi-oxide-ceramics","humanReadableId":"Multi-Oxide Ceramics","label":"Multi-Oxide Ceramics","disabled":true},{"id":"silicon-oxide","nodeId":"silicon-oxide-","humanReadableId":"Silicon Oxide","label":"Silicon Oxide","disabled":true},{"id":"ytterbium-oxide","nodeId":"ytterbium-oxide","humanReadableId":"Ytterbium Oxide","label":"Ytterbium Oxide","disabled":true},{"id":"yttrium-oxide","nodeId":"yttrium-oxide","humanReadableId":"Yttrium Oxide","label":"Yttrium Oxide","disabled":true}]}]},{"id":"natural-ceramic","nodeId":"natural-ceramic","humanReadableId":"Natural Ceramic","label":"Natural Ceramic","disabled":true}]},{"id":"composite","nodeId":"composite","humanReadableId":"Composite","label":"Composite","disabled":true,"children":[{"id":"ceramic-matrix-composite","nodeId":"ceramic-matrix-composite","humanReadableId":"Ceramic Matrix Composite","label":"Ceramic Matrix Composite","disabled":true,"children":[{"id":"carbide-based-ceramic-matrix-composite","nodeId":"carbide-based-ceramic-matrix-composite","humanReadableId":"Carbide Based Ceramic Matrix Composite","label":"Carbide Based Ceramic Matrix Composite","disabled":true},{"id":"oxide-based-ceramic-matrix-composite","nodeId":"oxide-based-ceramic-matrix-composite-","humanReadableId":"Oxide Based Ceramic Matrix Composite","label":"Oxide Based Ceramic Matrix Composite","disabled":true}]},{"id":"metal-matrix-composite","nodeId":"metal-matrix-composite","humanReadableId":"Metal Matrix Composite","label":"Metal Matrix Composite","disabled":true,"children":[{"id":"aluminium-matrix-composite","nodeId":"aluminium-matrix-composite","humanReadableId":"Aluminium Matrix Composite","label":"Aluminium Matrix Composite","disabled":true},{"id":"beryllium-matrix-composite","nodeId":"beryllium-matrix-composite","humanReadableId":"Beryllium Matrix Composite","label":"Beryllium Matrix Composite","disabled":true},{"id":"cobalt-matrix-composite","nodeId":"cobalt-matrix-composite","humanReadableId":"Cobalt Matrix Composite","label":"Cobalt Matrix Composite","disabled":true},{"id":"cobalt-and-nickel-matrix-composite","nodeId":"cobalt-and-nickel-matrix-composite","humanReadableId":"Cobalt and Nickel Matrix Composite","label":"Cobalt and Nickel Matrix Composite","disabled":true},{"id":"iron-matrix-composite","nodeId":"iron-matrix-composite","humanReadableId":"Iron Matrix Composite","label":"Iron Matrix Composite","disabled":true},{"id":"nickel-matrix-composite","nodeId":"nickel-matrix-composite","humanReadableId":"Nickel Matrix Composite","label":"Nickel Matrix Composite","disabled":true}]},{"id":"polymer-matrix-composite","nodeId":"polymer-matrix-composite","humanReadableId":"Polymer Matrix Composite","label":"Polymer Matrix Composite","disabled":true,"children":[{"id":"thermoset-polymer-matrix-composite","nodeId":"thermoset-polymer-matrix-composite","humanReadableId":"Thermoset Polymer Matrix Composite","label":"Thermoset Polymer Matrix Composite","disabled":true}]}]},{"id":"glass","nodeId":"glass","humanReadableId":"Glass","label":"Glass","disabled":true,"children":[{"id":"glass-ceramic","nodeId":"glass-ceramic","humanReadableId":"Glass Ceramic","label":"Glass Ceramic","disabled":true,"children":[{"id":"las-glass-ceramic","nodeId":"las-glass-ceramic","humanReadableId":"LAS Glass Ceramic","label":"LAS Glass Ceramic","disabled":true}]},{"id":"lead-glass","nodeId":"lead-glass","humanReadableId":"Lead Glass","label":"Lead Glass","disabled":true},{"id":"silicate-glass","nodeId":"silicate-glass","humanReadableId":"Silicate Glass","label":"Silicate Glass","disabled":true,"children":[{"id":"aluminosilicate","nodeId":"aluminosilicate","humanReadableId":"Aluminosilicate","label":"Aluminosilicate","disabled":true},{"id":"borosilicate","nodeId":"borosilicate","humanReadableId":"Borosilicate","label":"Borosilicate","disabled":true},{"id":"fused-quartz","nodeId":"fused-quartz","humanReadableId":"Fused Quartz","label":"Fused Quartz","disabled":true},{"id":"soda-lime-silicate","nodeId":"soda-lime-silicate","humanReadableId":"Soda Lime Silicate","label":"Soda Lime Silicate","disabled":true}]}]},{"id":"metal","nodeId":"metal","humanReadableId":"Metal","label":"Metal","partiallyChecked":true,"materialsCount":2214,"children":[{"id":"aluminium","nodeId":"aluminium","humanReadableId":"Aluminium","label":"Aluminium","disabled":true,"children":[{"id":"aluminium-master-alloy","nodeId":"aluminium-master-alloy","humanReadableId":"Aluminium Master Alloy","label":"Aluminium Master Alloy","disabled":true},{"id":"cast-aluminium","nodeId":"cast-aluminium","humanReadableId":"Cast Aluminium","label":"Cast Aluminium","disabled":true,"children":[{"id":"1xx-x","nodeId":"1xx-x","humanReadableId":"1xx.x","label":"1xx.x","disabled":true},{"id":"2xx-x","nodeId":"2xx-x","humanReadableId":"2xx.x","label":"2xx.x","disabled":true},{"id":"3xx-x","nodeId":"3xx-x","humanReadableId":"3xx.x","label":"3xx.x","disabled":true},{"id":"4xx-x","nodeId":"4xx-x","humanReadableId":"4xx.x","label":"4xx.x","disabled":true},{"id":"5xx-x","nodeId":"5xx-x","humanReadableId":"5xx.x","label":"5xx.x","disabled":true},{"id":"7xx-x","nodeId":"7xx-x","humanReadableId":"7xx.x","label":"7xx.x","disabled":true},{"id":"8xx-x","nodeId":"8xx-x","humanReadableId":"8xx.x","label":"8xx.x","disabled":true}]},{"id":"wrought-aluminium","nodeId":"wrought-aluminium","humanReadableId":"Wrought Aluminium","label":"Wrought Aluminium","disabled":true,"children":[{"id":"1000-series","nodeId":"1000-series","humanReadableId":"1000 Series","label":"1000 Series","disabled":true},{"id":"2000-series","nodeId":"2000-series","humanReadableId":"2000 Series","label":"2000 Series","disabled":true},{"id":"3000-series","nodeId":"3000-series","humanReadableId":"3000 Series","label":"3000 Series","disabled":true},{"id":"4000-series","nodeId":"4000-series","humanReadableId":"4000 Series","label":"4000 Series","disabled":true},{"id":"5000-series","nodeId":"5000-series","humanReadableId":"5000 Series","label":"5000 Series","disabled":true},{"id":"6000-series","nodeId":"6000-series","humanReadableId":"6000 Series","label":"6000 Series","disabled":true},{"id":"7000-series","nodeId":"7000-series","humanReadableId":"7000 Series","label":"7000 Series","disabled":true},{"id":"8000-series","nodeId":"8000-series","humanReadableId":"8000 Series","label":"8000 Series","disabled":true}]}]},{"id":"clad---bimetal","nodeId":"clad---bimetal","humanReadableId":"Clad / Bimetal","label":"Clad / Bimetal","disabled":true},{"id":"cobalt","nodeId":"cobalt","humanReadableId":"Cobalt","label":"Cobalt","disabled":true,"children":[{"id":"cobalt-chromium","nodeId":"cobalt-chromium","humanReadableId":"Cobalt Chromium","label":"Cobalt Chromium","disabled":true},{"id":"cobalt-chromium-molybdenum","nodeId":"cobalt-chromium-molybdenum","humanReadableId":"Cobalt Chromium Molybdenum","label":"Cobalt Chromium Molybdenum","disabled":true},{"id":"cobalt-chromium-nickel-tungsten","nodeId":"cobalt-chromium-nickel-tungsten","humanReadableId":"Cobalt Chromium Nickel Tungsten","label":"Cobalt Chromium Nickel Tungsten","disabled":true},{"id":"cobalt-chromium-tungsten","nodeId":"cobalt-chromium-tungsten","humanReadableId":"Cobalt Chromium Tungsten","label":"Cobalt Chromium Tungsten","disabled":true},{"id":"cobalt-nickel-chromium-molybdenum","nodeId":"cobalt-nickel-chromium-molybdenum","humanReadableId":"Cobalt Nickel Chromium Molybdenum","label":"Cobalt Nickel Chromium Molybdenum","disabled":true},{"id":"cobalt-superalloy","nodeId":"cobalt-superalloy","humanReadableId":"Cobalt Superalloy","label":"Cobalt Superalloy","disabled":true},{"id":"unclassified-cobalt-alloy","nodeId":"unclassified-cobalt-alloy","humanReadableId":"Unclassified Cobalt Alloy","label":"Unclassified Cobalt Alloy","disabled":true}]},{"id":"copper","nodeId":"copper","humanReadableId":"Copper","label":"Copper","disabled":true,"children":[{"id":"cast-copper","nodeId":"cast-copper","humanReadableId":"Cast Copper","label":"Cast Copper","disabled":true,"children":[{"id":"cast-copper-brass","nodeId":"cast-copper-brass","humanReadableId":"Cast Copper Brass","label":"Cast Copper Brass","disabled":true,"children":[{"id":"cast-copper-brass-yellow-brass","nodeId":"cast-copper-brass-yellow-brass","humanReadableId":"Cast Copper Brass Yellow Brass","label":"Cast Copper Brass Yellow Brass","disabled":true},{"id":"cast-copper-silicon-brass","nodeId":"cast-copper-silicon-brass","humanReadableId":"Cast Copper Silicon Brass","label":"Cast Copper Silicon Brass","disabled":true},{"id":"copper-bismuth-alloy","nodeId":"copper-bismuth-alloy","humanReadableId":"Copper Bismuth Alloy","label":"Copper Bismuth Alloy","disabled":true},{"id":"red-brass","nodeId":"red-brass","humanReadableId":"Red Brass","label":"Red Brass","disabled":true}]},{"id":"cast-copper-bronze","nodeId":"cast-copper-bronze","humanReadableId":"Cast Copper Bronze","label":"Cast Copper Bronze","disabled":true,"children":[{"id":"cast-copper-bronze-aluminium-bronze","nodeId":"cast-copper-bronze-aluminium-bronze","humanReadableId":"Cast Copper Bronze Aluminium Bronze","label":"Cast Copper Bronze Aluminium Bronze","disabled":true},{"id":"leaded-tin-bronze","nodeId":"leaded-tin-bronze","humanReadableId":"Leaded Tin Bronze","label":"Leaded Tin Bronze","disabled":true},{"id":"nickel-tin-bronze","nodeId":"nickel-tin-bronze","humanReadableId":"Nickel Tin Bronze","label":"Nickel Tin Bronze","disabled":true},{"id":"tin-bronze","nodeId":"tin-bronze","humanReadableId":"Tin Bronze","label":"Tin Bronze","disabled":true}]},{"id":"cast-copper-high-copper-alloy","nodeId":"cast-copper-high-copper-alloy","humanReadableId":"Cast Copper High Copper Alloy","label":"Cast Copper High Copper Alloy","disabled":true},{"id":"cast-copper-nickel-grade","nodeId":"cast-copper-nickel-grade","humanReadableId":"Cast Copper Nickel Grade","label":"Cast Copper Nickel Grade","disabled":true},{"id":"cast-copper-nickel-silver-grade","nodeId":"cast-copper-nickel-silver-grade","humanReadableId":"Cast Copper Nickel Silver Grade","label":"Cast Copper Nickel Silver Grade","disabled":true},{"id":"cast-copper-pure---low-alloyed-copper","nodeId":"cast-copper-pure---low-alloyed-copper","humanReadableId":"Cast Copper Pure / Low Alloyed Copper","label":"Cast Copper Pure / Low Alloyed Copper","disabled":true},{"id":"copper-lead-alloy","nodeId":"copper-lead-alloy","humanReadableId":"Copper-Lead Alloy","label":"Copper-Lead Alloy","disabled":true},{"id":"special-alloy","nodeId":"special-alloy","humanReadableId":"Special Alloy","label":"Special Alloy","disabled":true}]},{"id":"welding","nodeId":"welding","humanReadableId":"Welding","label":"Welding","disabled":true},{"id":"wrought-copper","nodeId":"wrought-copper","humanReadableId":"Wrought Copper","label":"Wrought Copper","disabled":true,"children":[{"id":"unclassified-wrought-copper","nodeId":"unclassified-wrought-copper","humanReadableId":"Unclassified Wrought Copper","label":"Unclassified Wrought Copper","disabled":true},{"id":"wrought-copper-brass","nodeId":"wrought-copper-brass","humanReadableId":"Wrought Copper Brass","label":"Wrought Copper Brass","disabled":true,"children":[{"id":"leaded-brass","nodeId":"leaded-brass","humanReadableId":"Leaded Brass","label":"Leaded Brass","disabled":true},{"id":"other-copper-zinc-alloy","nodeId":"other-copper-zinc-alloy","humanReadableId":"Other Copper Zinc Alloy","label":"Other Copper Zinc Alloy","disabled":true},{"id":"tin-brass","nodeId":"tin-brass","humanReadableId":"Tin Brass","label":"Tin Brass","disabled":true},{"id":"wrought-copper-brass-yellow-brass","nodeId":"wrought-copper-brass-yellow-brass","humanReadableId":"Wrought Copper Brass Yellow Brass","label":"Wrought Copper Brass Yellow Brass","disabled":true},{"id":"yellow-wrought-brass","nodeId":"yellow-wrought-brass","humanReadableId":"Yellow Wrought Brass","label":"Yellow Wrought Brass","disabled":true}]},{"id":"wrought-copper-bronze","nodeId":"wrought-copper-bronze","humanReadableId":"Wrought Copper Bronze","label":"Wrought Copper Bronze","disabled":true,"children":[{"id":"copper-silver-zinc-alloy","nodeId":"copper-silver-zinc-alloy","humanReadableId":"Copper Silver Zinc Alloy","label":"Copper Silver Zinc Alloy","disabled":true},{"id":"leaded-phosphor-bronze","nodeId":"leaded-phosphor-bronze","humanReadableId":"Leaded Phosphor Bronze","label":"Leaded Phosphor Bronze","disabled":true},{"id":"other-copper-zinc-alloy","nodeId":"other-copper-zinc-alloy-","humanReadableId":"Other Copper Zinc Alloy","label":"Other Copper Zinc Alloy","disabled":true},{"id":"phosphor-bronze","nodeId":"phosphor-bronze","humanReadableId":"Phosphor Bronze","label":"Phosphor Bronze","disabled":true},{"id":"wrought-copper-bronze-aluminium-bronze","nodeId":"wrought-copper-bronze-aluminium-bronze","humanReadableId":"Wrought Copper Bronze Aluminium Bronze","label":"Wrought Copper Bronze Aluminium Bronze","disabled":true},{"id":"wrought-copper-bronze-silicon-bronze","nodeId":"wrought-copper-bronze-silicon-bronze","humanReadableId":"Wrought Copper Bronze Silicon Bronze","label":"Wrought Copper Bronze Silicon Bronze","disabled":true}]},{"id":"wrought-copper-high-copper-alloy","nodeId":"wrought-copper-high-copper-alloy","humanReadableId":"Wrought Copper High Copper Alloy","label":"Wrought Copper High Copper Alloy","disabled":true},{"id":"wrought-copper-nickel-grade","nodeId":"wrought-copper-nickel-grade","humanReadableId":"Wrought Copper Nickel Grade","label":"Wrought Copper Nickel Grade","disabled":true},{"id":"wrought-copper-nickel-silver-grade","nodeId":"wrought-copper-nickel-silver-grade","humanReadableId":"Wrought Copper Nickel Silver Grade","label":"Wrought Copper Nickel Silver Grade","disabled":true},{"id":"wrought-copper-pure---low-alloyed-copper","nodeId":"wrought-copper-pure---low-alloyed-copper","humanReadableId":"Wrought Copper Pure / Low Alloyed Copper","label":"Wrought Copper Pure / Low Alloyed Copper","disabled":true}]}]},{"id":"iron","nodeId":"iron","humanReadableId":"Iron","label":"Iron","disabled":true,"children":[{"id":"alloy-iron","nodeId":"alloy-iron","humanReadableId":"Alloy Iron","label":"Alloy Iron","disabled":true},{"id":"cast-iron","nodeId":"cast-iron","humanReadableId":"Cast Iron","label":"Cast Iron","disabled":true,"children":[{"id":"ductile--nodular--cast-iron","nodeId":"ductile--nodular--cast-iron","humanReadableId":"Ductile (Nodular) Cast Iron","label":"Ductile (Nodular) Cast Iron","disabled":true},{"id":"grey-cast-iron","nodeId":"grey-cast-iron","humanReadableId":"Grey Cast Iron","label":"Grey Cast Iron","disabled":true},{"id":"malleable-cast-iron","nodeId":"malleable-cast-iron","humanReadableId":"Malleable Cast Iron","label":"Malleable Cast Iron","disabled":true},{"id":"other-cast-iron-alloy","nodeId":"other-cast-iron-alloy","humanReadableId":"Other Cast Iron Alloy","label":"Other Cast Iron Alloy","disabled":true},{"id":"white-cast-iron","nodeId":"white-cast-iron","humanReadableId":"White Cast Iron","label":"White Cast Iron","disabled":true}]},{"id":"ferromolybdenum","nodeId":"ferromolybdenum","humanReadableId":"Ferromolybdenum","label":"Ferromolybdenum","disabled":true},{"id":"ferrosilicon","nodeId":"ferrosilicon","humanReadableId":"Ferrosilicon","label":"Ferrosilicon","disabled":true},{"id":"ferrovanadium","nodeId":"ferrovanadium","humanReadableId":"Ferrovanadium","label":"Ferrovanadium","disabled":true},{"id":"iron-alloy","nodeId":"iron-alloy","humanReadableId":"Iron Alloy","label":"Iron Alloy","disabled":true,"children":[{"id":"aluminium-nickel-cobalt-iron-alloy","nodeId":"aluminium-nickel-cobalt-iron-alloy","humanReadableId":"Aluminium Nickel Cobalt Iron Alloy","label":"Aluminium Nickel Cobalt Iron Alloy","disabled":true},{"id":"miscellaneous-iron-alloy","nodeId":"miscellaneous-iron-alloy","humanReadableId":"Miscellaneous Iron Alloy","label":"Miscellaneous Iron Alloy","disabled":true},{"id":"soft-magnetic-iron","nodeId":"soft-magnetic-iron","humanReadableId":"Soft Magnetic Iron","label":"Soft Magnetic Iron","disabled":true}]},{"id":"malleable-cast-iron","nodeId":"malleable-cast-iron-","humanReadableId":"Malleable Cast Iron","label":"Malleable Cast Iron","disabled":true}]},{"id":"magnesium","nodeId":"magnesium","humanReadableId":"Magnesium","label":"Magnesium","disabled":true,"children":[{"id":"aluminium-grade","nodeId":"aluminium-grade","humanReadableId":"Aluminium Grade","label":"Aluminium Grade","disabled":true},{"id":"cast-aluminium-manganese-grade","nodeId":"cast-aluminium-manganese-grade","humanReadableId":"Cast Aluminium Manganese Grade","label":"Cast Aluminium Manganese Grade","disabled":true},{"id":"cast-rare-earth-grade","nodeId":"cast-rare-earth-grade","humanReadableId":"Cast Rare Earth Grade","label":"Cast Rare Earth Grade","disabled":true},{"id":"cast-wrought-aluminium-zinc-grade","nodeId":"cast-wrought-aluminium-zinc-grade","humanReadableId":"Cast/Wrought Aluminium Zinc Grade","label":"Cast/Wrought Aluminium Zinc Grade","disabled":true},{"id":"cast-wrought-unclassified-grade","nodeId":"cast-wrought-unclassified-grade","humanReadableId":"Cast/Wrought Unclassified Grade","label":"Cast/Wrought Unclassified Grade","disabled":true},{"id":"pure-magnesium","nodeId":"pure-magnesium","humanReadableId":"Pure Magnesium","label":"Pure Magnesium","disabled":true},{"id":"rare-earth-grade","nodeId":"rare-earth-grade","humanReadableId":"Rare Earth Grade","label":"Rare Earth Grade","disabled":true},{"id":"wrought-zinc-grade","nodeId":"wrought-zinc-grade","humanReadableId":"Wrought Zinc Grade","label":"Wrought Zinc Grade","disabled":true},{"id":"yttrium-grade","nodeId":"yttrium-grade","humanReadableId":"Yttrium Grade","label":"Yttrium Grade","disabled":true},{"id":"zinc-grade","nodeId":"zinc-grade","humanReadableId":"Zinc Grade","label":"Zinc Grade","disabled":true}]},{"id":"manganese","nodeId":"manganese","humanReadableId":"Manganese","label":"Manganese","disabled":true},{"id":"nickel","nodeId":"nickel","humanReadableId":"Nickel","label":"Nickel","disabled":true,"children":[{"id":"nickel-chromium-alloy","nodeId":"nickel-chromium-alloy","humanReadableId":"Nickel Chromium Alloy","label":"Nickel Chromium Alloy","disabled":true},{"id":"nickel-chromium-cobalt-alloy","nodeId":"nickel-chromium-cobalt-alloy","humanReadableId":"Nickel Chromium Cobalt Alloy","label":"Nickel Chromium Cobalt Alloy","disabled":true},{"id":"nickel-chromium-iron-alloy","nodeId":"nickel-chromium-iron-alloy","humanReadableId":"Nickel Chromium Iron Alloy","label":"Nickel Chromium Iron Alloy","disabled":true},{"id":"nickel-chromium-molybdenum-alloy","nodeId":"nickel-chromium-molybdenum-alloy","humanReadableId":"Nickel Chromium Molybdenum Alloy","label":"Nickel Chromium Molybdenum Alloy","disabled":true},{"id":"nickel-cobalt-alloy","nodeId":"nickel-cobalt-alloy","humanReadableId":"Nickel Cobalt Alloy","label":"Nickel Cobalt Alloy","disabled":true},{"id":"nickel-copper-alloy","nodeId":"nickel-copper-alloy","humanReadableId":"Nickel Copper Alloy","label":"Nickel Copper Alloy","disabled":true},{"id":"nickel-iron-alloy","nodeId":"nickel-iron-alloy","humanReadableId":"Nickel Iron Alloy","label":"Nickel Iron Alloy","disabled":true},{"id":"nickel-molybdenum-alloy","nodeId":"nickel-molybdenum-alloy","humanReadableId":"Nickel Molybdenum Alloy","label":"Nickel Molybdenum Alloy","disabled":true},{"id":"nickel-superalloy","nodeId":"nickel-superalloy","humanReadableId":"Nickel Superalloy","label":"Nickel Superalloy","disabled":true},{"id":"nickel-welding-filler","nodeId":"nickel-welding-filler","humanReadableId":"Nickel Welding Filler","label":"Nickel Welding Filler","disabled":true},{"id":"other-nickel-alloy","nodeId":"other-nickel-alloy","humanReadableId":"Other Nickel Alloy","label":"Other Nickel Alloy","disabled":true},{"id":"pure-low-nickel-alloy","nodeId":"pure-low-nickel-alloy","humanReadableId":"Pure/Low Nickel Alloy","label":"Pure/Low Nickel Alloy","disabled":true}]},{"id":"noble-metal","nodeId":"noble-metal","humanReadableId":"Noble Metal","label":"Noble Metal","disabled":true,"children":[{"id":"gold","nodeId":"gold","humanReadableId":"Gold","label":"Gold","disabled":true},{"id":"iridium","nodeId":"iridium","humanReadableId":"Iridium","label":"Iridium","disabled":true},{"id":"palladium","nodeId":"palladium","humanReadableId":"Palladium","label":"Palladium","disabled":true},{"id":"platinum","nodeId":"platinum","humanReadableId":"Platinum","label":"Platinum","disabled":true},{"id":"rhodium","nodeId":"rhodium","humanReadableId":"Rhodium","label":"Rhodium","disabled":true},{"id":"silver","nodeId":"silver","humanReadableId":"Silver","label":"Silver","disabled":true}]},{"id":"other-metal","nodeId":"other-metal","humanReadableId":"Other Metal","label":"Other Metal","disabled":true,"children":[{"id":"beryllium","nodeId":"beryllium","humanReadableId":"Beryllium","label":"Beryllium","disabled":true},{"id":"cadmium","nodeId":"cadmium","humanReadableId":"Cadmium","label":"Cadmium","disabled":true},{"id":"chromium","nodeId":"chromium","humanReadableId":"Chromium","label":"Chromium","disabled":true},{"id":"lead","nodeId":"lead","humanReadableId":"Lead","label":"Lead","disabled":true,"children":[{"id":"lead-antimony","nodeId":"lead-antimony","humanReadableId":"Lead Antimony","label":"Lead Antimony","disabled":true},{"id":"lead-tin","nodeId":"lead-tin","humanReadableId":"Lead Tin","label":"Lead Tin","disabled":true},{"id":"pure-low-alloyed-lead","nodeId":"pure-low-alloyed-lead","humanReadableId":"Pure/Low Alloyed Lead","label":"Pure/Low Alloyed Lead","disabled":true}]},{"id":"lithium","nodeId":"lithium","humanReadableId":"Lithium","label":"Lithium","disabled":true},{"id":"neodymium","nodeId":"neodymium","humanReadableId":"Neodymium","label":"Neodymium","disabled":true,"children":[{"id":"neodymium-iron-boron-alloy","nodeId":"neodymium-iron-boron-alloy","humanReadableId":"Neodymium Iron Boron Alloy","label":"Neodymium Iron Boron Alloy","disabled":true}]},{"id":"samarium","nodeId":"samarium","humanReadableId":"Samarium","label":"Samarium","disabled":true,"children":[{"id":"samarium-cobalt-alloy","nodeId":"samarium-cobalt-alloy","humanReadableId":"Samarium Cobalt Alloy","label":"Samarium Cobalt Alloy","disabled":true}]},{"id":"tin","nodeId":"tin","humanReadableId":"Tin","label":"Tin","disabled":true,"children":[{"id":"pure-low-alloyed-tin","nodeId":"pure-low-alloyed-tin","humanReadableId":"Pure/Low Alloyed Tin","label":"Pure/Low Alloyed Tin","disabled":true},{"id":"tin-antimony","nodeId":"tin-antimony","humanReadableId":"Tin Antimony","label":"Tin Antimony","disabled":true},{"id":"tin-lead","nodeId":"tin-lead","humanReadableId":"Tin Lead","label":"Tin Lead","disabled":true},{"id":"unclassified-tin","nodeId":"unclassified-tin","humanReadableId":"Unclassified Tin","label":"Unclassified Tin","disabled":true}]},{"id":"zinc","nodeId":"zinc","humanReadableId":"Zinc","label":"Zinc","disabled":true,"children":[{"id":"unalloyed-zinc","nodeId":"unalloyed-zinc","humanReadableId":"Unalloyed Zinc","label":"Unalloyed Zinc","disabled":true},{"id":"unclassified-zinc","nodeId":"unclassified-zinc","humanReadableId":"Unclassified Zinc","label":"Unclassified Zinc","disabled":true},{"id":"zinc-aluminium","nodeId":"zinc-aluminium","humanReadableId":"Zinc Aluminium","label":"Zinc Aluminium","disabled":true}]}]},{"id":"refractory-metal","nodeId":"refractory-metal","humanReadableId":"Refractory Metal","label":"Refractory Metal","disabled":true,"children":[{"id":"hafnium","nodeId":"hafnium","humanReadableId":"Hafnium","label":"Hafnium","disabled":true},{"id":"molybdenum","nodeId":"molybdenum","humanReadableId":"Molybdenum","label":"Molybdenum","disabled":true},{"id":"niobium","nodeId":"niobium","humanReadableId":"Niobium","label":"Niobium","disabled":true},{"id":"rhenium","nodeId":"rhenium","humanReadableId":"Rhenium","label":"Rhenium","disabled":true},{"id":"tantalum","nodeId":"tantalum","humanReadableId":"Tantalum","label":"Tantalum","disabled":true},{"id":"tungsten","nodeId":"tungsten","humanReadableId":"Tungsten","label":"Tungsten","disabled":true},{"id":"vanadium","nodeId":"vanadium","humanReadableId":"Vanadium","label":"Vanadium","disabled":true},{"id":"zirconium","nodeId":"zirconium","humanReadableId":"Zirconium","label":"Zirconium","disabled":true}]},{"id":"steel","nodeId":"steel","humanReadableId":"Steel","label":"Steel","checked":true,"children":[{"id":"alloy-steel","nodeId":"alloy-steel","humanReadableId":"Alloy Steel","label":"Alloy Steel","checked":true,"children":[{"id":"chromium-molybdenum-steel","nodeId":"chromium-molybdenum-steel","humanReadableId":"Chromium Molybdenum Steel","label":"Chromium Molybdenum Steel","checked":true},{"id":"chromium-molybdenum-vanadium-steel","nodeId":"chromium-molybdenum-vanadium-steel","humanReadableId":"Chromium Molybdenum Vanadium Steel","label":"Chromium Molybdenum Vanadium Steel","checked":true},{"id":"chromium-steel","nodeId":"chromium-steel","humanReadableId":"Chromium Steel","label":"Chromium Steel","checked":true},{"id":"chromium-vanadium-steel","nodeId":"chromium-vanadium-steel","humanReadableId":"Chromium Vanadium Steel","label":"Chromium Vanadium Steel","checked":true},{"id":"manganese-steel","nodeId":"manganese-steel","humanReadableId":"Manganese Steel","label":"Manganese Steel","checked":true},{"id":"molybdenum-steel","nodeId":"molybdenum-steel","humanReadableId":"Molybdenum Steel","label":"Molybdenum Steel","checked":true},{"id":"nickel-chromium-molybdenum-steel","nodeId":"nickel-chromium-molybdenum-steel","humanReadableId":"Nickel Chromium Molybdenum Steel","label":"Nickel Chromium Molybdenum Steel","checked":true},{"id":"nickel-chromium-steel","nodeId":"nickel-chromium-steel","humanReadableId":"Nickel Chromium Steel","label":"Nickel Chromium Steel","checked":true},{"id":"nickel-molybdenum-steel","nodeId":"nickel-molybdenum-steel","humanReadableId":"Nickel Molybdenum Steel","label":"Nickel Molybdenum Steel","checked":true,"disabled":true},{"id":"nickel-steel","nodeId":"nickel-steel","humanReadableId":"Nickel Steel","label":"Nickel Steel","checked":true},{"id":"nitriding-steel","nodeId":"nitriding-steel","humanReadableId":"Nitriding Steel","label":"Nitriding Steel","checked":true},{"id":"silicon-manganese-steel","nodeId":"silicon-manganese-steel","humanReadableId":"Silicon Manganese Steel","label":"Silicon Manganese Steel","checked":true,"disabled":true},{"id":"silicon-steel","nodeId":"silicon-steel","humanReadableId":"Silicon Steel","label":"Silicon Steel","checked":true,"disabled":true},{"id":"unclassified-low-alloy-steel","nodeId":"unclassified-low-alloy-steel","humanReadableId":"Unclassified Low Alloy Steel","label":"Unclassified Low Alloy Steel","checked":true}]},{"id":"carbon-steel","nodeId":"carbon-steel","humanReadableId":"Carbon Steel","label":"Carbon Steel","checked":true,"children":[{"id":"high-carbon-steel","nodeId":"high-carbon-steel","humanReadableId":"High Carbon Steel","label":"High Carbon Steel","checked":true},{"id":"low-carbon-steel","nodeId":"low-carbon-steel","humanReadableId":"Low Carbon Steel","label":"Low Carbon Steel","checked":true},{"id":"medium-carbon-steel","nodeId":"medium-carbon-steel","humanReadableId":"Medium Carbon Steel","label":"Medium Carbon Steel","checked":true},{"id":"unclassified-carbon-steel","nodeId":"unclassified-carbon-steel","humanReadableId":"Unclassified Carbon Steel","label":"Unclassified Carbon Steel","checked":true}]},{"id":"low-alloy-steel","nodeId":"low-alloy-steel","humanReadableId":"Low Alloy Steel","label":"Low Alloy Steel","checked":true,"disabled":true,"children":[{"id":"low-carbon-steel","nodeId":"low-carbon-steel-","humanReadableId":"Low Carbon Steel","label":"Low Carbon Steel","checked":true,"disabled":true}]},{"id":"maraging-steel","nodeId":"maraging-steel","humanReadableId":"Maraging Steel","label":"Maraging Steel","checked":true,"disabled":true},{"id":"stainless-steel","nodeId":"stainless-steel","humanReadableId":"Stainless Steel","label":"Stainless Steel","checked":true,"children":[{"id":"austenitic-stainless-steel","nodeId":"austenitic-stainless-steel","humanReadableId":"Austenitic Stainless Steel","label":"Austenitic Stainless Steel","checked":true},{"id":"duplex-stainless-steel","nodeId":"duplex-stainless-steel","humanReadableId":"Duplex Stainless Steel","label":"Duplex Stainless Steel","checked":true},{"id":"ferritic-stainless-steel","nodeId":"ferritic-stainless-steel","humanReadableId":"Ferritic Stainless Steel","label":"Ferritic Stainless Steel","checked":true},{"id":"martensitic-stainless-steel","nodeId":"martensitic-stainless-steel","humanReadableId":"Martensitic Stainless Steel","label":"Martensitic Stainless Steel","checked":true},{"id":"precipitation-hardening-stainless-steel","nodeId":"precipitation-hardening-stainless-steel","humanReadableId":"Precipitation Hardening Stainless Steel","label":"Precipitation Hardening Stainless Steel","checked":true},{"id":"superaustenitic-stainless-steel","nodeId":"superaustenitic-stainless-steel","humanReadableId":"Superaustenitic Stainless Steel","label":"Superaustenitic Stainless Steel","checked":true},{"id":"unclassified-stainless-steel","nodeId":"unclassified-stainless-steel","humanReadableId":"Unclassified Stainless Steel","label":"Unclassified Stainless Steel","checked":true}]},{"id":"tool-and-machining-steel","nodeId":"tool-and-machining-steel","humanReadableId":"Tool And Machining Steel","label":"Tool And Machining Steel","checked":true}]},{"id":"titanium","nodeId":"titanium","humanReadableId":"Titanium","label":"Titanium","disabled":true,"children":[{"id":"alpha-alloy","nodeId":"alpha-alloy","humanReadableId":"Alpha Alloy","label":"Alpha Alloy","disabled":true},{"id":"alpha-beta-alloy","nodeId":"alpha-beta-alloy","humanReadableId":"Alpha Beta Alloy","label":"Alpha Beta Alloy","disabled":true},{"id":"beta-alloy","nodeId":"beta-alloy","humanReadableId":"Beta Alloy","label":"Beta Alloy","disabled":true},{"id":"low-alloy-titanium","nodeId":"low-alloy-titanium","humanReadableId":"Low Alloy Titanium","label":"Low Alloy Titanium","disabled":true},{"id":"near-alpha-alloy","nodeId":"near-alpha-alloy","humanReadableId":"Near Alpha Alloy","label":"Near Alpha Alloy","disabled":true},{"id":"pure-titanium","nodeId":"pure-titanium","humanReadableId":"Pure Titanium","label":"Pure Titanium","disabled":true}]}]},{"id":"polymer","nodeId":"polymer","humanReadableId":"Polymer","label":"Polymer","disabled":true,"children":[{"id":"elastomer","nodeId":"elastomer","humanReadableId":"Elastomer","label":"Elastomer","disabled":true,"children":[{"id":"butadiene-rubber--br-","nodeId":"butadiene-rubber--br-","humanReadableId":"Butadiene Rubber (BR)","label":"Butadiene Rubber (BR)","disabled":true},{"id":"chloroprene-rubber--cr-","nodeId":"chloroprene-rubber--cr-","humanReadableId":"Chloroprene Rubber (CR)","label":"Chloroprene Rubber (CR)","disabled":true},{"id":"ethylene-propylene-diene-rubber--epdm-","nodeId":"ethylene-propylene-diene-rubber--epdm-","humanReadableId":"Ethylene Propylene Diene Rubber (EPDM)","label":"Ethylene Propylene Diene Rubber (EPDM)","disabled":true},{"id":"ethylene-propylene-rubber--epr-","nodeId":"ethylene-propylene-rubber--epr-","humanReadableId":"Ethylene Propylene Rubber (EPR)","label":"Ethylene Propylene Rubber (EPR)","disabled":true},{"id":"fluorosilicone-rubber--fvmq-","nodeId":"fluorosilicone-rubber--fvmq-","humanReadableId":"Fluorosilicone Rubber (FVMQ)","label":"Fluorosilicone Rubber (FVMQ)","disabled":true},{"id":"natural-rubber--nr-","nodeId":"natural-rubber--nr-","humanReadableId":"Natural Rubber (NR)","label":"Natural Rubber (NR)","disabled":true},{"id":"nitrile-rubber--nbr-","nodeId":"nitrile-rubber--nbr-","humanReadableId":"Nitrile Rubber (NBR)","label":"Nitrile Rubber (NBR)","disabled":true},{"id":"styrene-butadiene-rubber--sbr-","nodeId":"styrene-butadiene-rubber--sbr-","humanReadableId":"Styrene Butadiene Rubber (SBR)","label":"Styrene Butadiene Rubber (SBR)","disabled":true},{"id":"thermoplastic-elastomer--tpe-","nodeId":"thermoplastic-elastomer--tpe-","humanReadableId":"Thermoplastic Elastomer (TPE)","label":"Thermoplastic Elastomer (TPE)","disabled":true,"children":[{"id":"elastomeric-alloy--tpv-","nodeId":"elastomeric-alloy--tpv-","humanReadableId":"Elastomeric Alloy (TPV)","label":"Elastomeric Alloy (TPV)","disabled":true},{"id":"styrene-butadiene-styrene--sbs-","nodeId":"styrene-butadiene-styrene--sbs-","humanReadableId":"Styrene Butadiene Styrene (SBS)","label":"Styrene Butadiene Styrene (SBS)","disabled":true},{"id":"thermoplastic-copolyester--tpc-","nodeId":"thermoplastic-copolyester--tpc-","humanReadableId":"Thermoplastic Copolyester (TPC)","label":"Thermoplastic Copolyester (TPC)","disabled":true},{"id":"thermoplastic-polyamide--tpa-","nodeId":"thermoplastic-polyamide--tpa-","humanReadableId":"Thermoplastic Polyamide (TPA)","label":"Thermoplastic Polyamide (TPA)","disabled":true},{"id":"thermoplastic-polyester-elastomer--tpee-","nodeId":"thermoplastic-polyester-elastomer--tpee-","humanReadableId":"Thermoplastic Polyester Elastomer (TPEE)","label":"Thermoplastic Polyester Elastomer (TPEE)","disabled":true},{"id":"thermoplastic-polyolefin--tpo-","nodeId":"thermoplastic-polyolefin--tpo-","humanReadableId":"Thermoplastic Polyolefin (TPO)","label":"Thermoplastic Polyolefin (TPO)","disabled":true},{"id":"thermoplastic-polyurethane--tpu-","nodeId":"thermoplastic-polyurethane--tpu-","humanReadableId":"Thermoplastic Polyurethane (TPU)","label":"Thermoplastic Polyurethane (TPU)","disabled":true},{"id":"thermoplastic-styrenic-block-copolymer--tps-","nodeId":"thermoplastic-styrenic-block-copolymer--tps-","humanReadableId":"Thermoplastic Styrenic Block Copolymer (TPS)","label":"Thermoplastic Styrenic Block Copolymer (TPS)","disabled":true}]}]},{"id":"thermoplastic","nodeId":"thermoplastic","humanReadableId":"Thermoplastic","label":"Thermoplastic","disabled":true,"children":[{"id":"acrylic","nodeId":"acrylic","humanReadableId":"Acrylic","label":"Acrylic","disabled":true,"children":[{"id":"polyacrylonitrile--pan-","nodeId":"polyacrylonitrile--pan-","humanReadableId":"Polyacrylonitrile (PAN)","label":"Polyacrylonitrile (PAN)","disabled":true},{"id":"polymethyl-methacrylate--pmma-","nodeId":"polymethyl-methacrylate--pmma-","humanReadableId":"Polymethyl methacrylate (PMMA)","label":"Polymethyl methacrylate (PMMA)","disabled":true}]},{"id":"fluoropolymer","nodeId":"fluoropolymer","humanReadableId":"Fluoropolymer","label":"Fluoropolymer","disabled":true,"children":[{"id":"ethylene-tetrafluoroethylene-copolymer--etfe-","nodeId":"ethylene-tetrafluoroethylene-copolymer--etfe-","humanReadableId":"Ethylene Tetrafluoroethylene Copolymer (ETFE)","label":"Ethylene Tetrafluoroethylene Copolymer (ETFE)","disabled":true},{"id":"fluorinated-ethylene-propylene--fep-","nodeId":"fluorinated-ethylene-propylene--fep-","humanReadableId":"Fluorinated ethylene propylene (FEP)","label":"Fluorinated ethylene propylene (FEP)","disabled":true},{"id":"polytetrafluoroethylene--ptfe-","nodeId":"polytetrafluoroethylene--ptfe-","humanReadableId":"Polytetrafluoroethylene (PTFE)","label":"Polytetrafluoroethylene (PTFE)","disabled":true},{"id":"polyvinylidenefluoride--pvdf-","nodeId":"polyvinylidenefluoride--pvdf-","humanReadableId":"Polyvinylidenefluoride (PVDF)","label":"Polyvinylidenefluoride (PVDF)","disabled":true}]},{"id":"liquid-crystal-polymers--lcp-","nodeId":"liquid-crystal-polymers--lcp-","humanReadableId":"Liquid Crystal Polymers (LCP)","label":"Liquid Crystal Polymers (LCP)","disabled":true},{"id":"polyamide--pa-","nodeId":"polyamide--pa-","humanReadableId":"Polyamide (PA)","label":"Polyamide (PA)","disabled":true,"children":[{"id":"aramide","nodeId":"aramide","humanReadableId":"Aramide","label":"Aramide","disabled":true},{"id":"copolyamide-6-66--pa6-66-","nodeId":"copolyamide-6-66--pa6-66-","humanReadableId":"Copolyamide 6/66 (PA6/66)","label":"Copolyamide 6/66 (PA6/66)","disabled":true},{"id":"other-polyamide--pa-","nodeId":"other-polyamide--pa-","humanReadableId":"Other Polyamide (PA)","label":"Other Polyamide (PA)","disabled":true},{"id":"polyamide-1010--pa1010-","nodeId":"polyamide-1010--pa1010-","humanReadableId":"Polyamide 1010 (PA1010)","label":"Polyamide 1010 (PA1010)","disabled":true},{"id":"polyamide-1012--pa1012-","nodeId":"polyamide-1012--pa1012-","humanReadableId":"Polyamide 1012 (PA1012)","label":"Polyamide 1012 (PA1012)","disabled":true},{"id":"polyamide-11--pa11-","nodeId":"polyamide-11--pa11-","humanReadableId":"Polyamide 11 (PA11)","label":"Polyamide 11 (PA11)","disabled":true},{"id":"polyamide-12--pa12-","nodeId":"polyamide-12--pa12-","humanReadableId":"Polyamide 12 (PA12)","label":"Polyamide 12 (PA12)","disabled":true},{"id":"polyamide-410--pa410-","nodeId":"polyamide-410--pa410-","humanReadableId":"Polyamide 410 (PA410)","label":"Polyamide 410 (PA410)","disabled":true},{"id":"polyamide-46--pa46-","nodeId":"polyamide-46--pa46-","humanReadableId":"Polyamide 46 (PA46)","label":"Polyamide 46 (PA46)","disabled":true},{"id":"polyamide-6--pa6-","nodeId":"polyamide-6--pa6-","humanReadableId":"Polyamide 6 (PA6)","label":"Polyamide 6 (PA6)","disabled":true,"children":[{"id":"polyamide-4t--pa4t-","nodeId":"polyamide-4t--pa4t-","humanReadableId":"Polyamide 4T (PA4T)","label":"Polyamide 4T (PA4T)","disabled":true}]},{"id":"polyamide-6-66--pa6-66-","nodeId":"polyamide-6-66--pa6-66-","humanReadableId":"Polyamide 6/66 (PA6/66)","label":"Polyamide 6/66 (PA6/66)","disabled":true},{"id":"polyamide-610--pa610-","nodeId":"polyamide-610--pa610-","humanReadableId":"Polyamide 610 (PA610)","label":"Polyamide 610 (PA610)","disabled":true},{"id":"polyamide-612--pa612-","nodeId":"polyamide-612--pa612-","humanReadableId":"Polyamide 612 (PA612)","label":"Polyamide 612 (PA612)","disabled":true},{"id":"polyamide-66--pa66-","nodeId":"polyamide-66--pa66-","humanReadableId":"Polyamide 66 (PA66)","label":"Polyamide 66 (PA66)","disabled":true},{"id":"polyphthalamide--ppa-","nodeId":"polyphthalamide--ppa-","humanReadableId":"Polyphthalamide (PPA)","label":"Polyphthalamide (PPA)","disabled":true,"children":[{"id":"copolyamide-66-6i--pa66-6i-","nodeId":"copolyamide-66-6i--pa66-6i-","humanReadableId":"Copolyamide 66/6I (PA66/6I)","label":"Copolyamide 66/6I (PA66/6I)","disabled":true},{"id":"copolyamide-6t-66--pa6t-66-","nodeId":"copolyamide-6t-66--pa6t-66-","humanReadableId":"Copolyamide 6T/66 (PA6T/66)","label":"Copolyamide 6T/66 (PA6T/66)","disabled":true},{"id":"copolyamide-6t-6i-66--pa6t-6i-66-","nodeId":"copolyamide-6t-6i-66--pa6t-6i-66-","humanReadableId":"Copolyamide 6T/6I/66 (PA6T/6I/66)","label":"Copolyamide 6T/6I/66 (PA6T/6I/66)","disabled":true},{"id":"copolyamide-pa6i-6t--pa6i-6t-","nodeId":"copolyamide-pa6i-6t--pa6i-6t-","humanReadableId":"Copolyamide PA6I/6T (PA6I/6T)","label":"Copolyamide PA6I/6T (PA6I/6T)","disabled":true},{"id":"polyamide-4t--pa4t-","nodeId":"polyamide-4t--pa4t--","humanReadableId":"Polyamide 4T (PA4T)","label":"Polyamide 4T (PA4T)","disabled":true},{"id":"polyamide-6t--pa6t-","nodeId":"polyamide-6t--pa6t-","humanReadableId":"Polyamide 6T (PA6T)","label":"Polyamide 6T (PA6T)","disabled":true},{"id":"polyamide-mxd6--pamxd6-","nodeId":"polyamide-mxd6--pamxd6-","humanReadableId":"Polyamide MXD6 (PAMXD6)","label":"Polyamide MXD6 (PAMXD6)","disabled":true},{"id":"polyamide-pa6-6t--pa6-6t-","nodeId":"polyamide-pa6-6t--pa6-6t-","humanReadableId":"Polyamide PA6/6T (PA6/6T)","label":"Polyamide PA6/6T (PA6/6T)","disabled":true}]}]},{"id":"polyaryletherketone--paek-","nodeId":"polyaryletherketone--paek-","humanReadableId":"Polyaryletherketone (PAEK)","label":"Polyaryletherketone (PAEK)","disabled":true,"children":[{"id":"polyether-ketone--pek-","nodeId":"polyether-ketone--pek-","humanReadableId":"Polyether Ketone (PEK)","label":"Polyether Ketone (PEK)","disabled":true},{"id":"polyetherether-ketone--peek-","nodeId":"polyetherether-ketone--peek-","humanReadableId":"Polyetherether Ketone (PEEK)","label":"Polyetherether Ketone (PEEK)","disabled":true},{"id":"polyetherketoneketone--pekk-","nodeId":"polyetherketoneketone--pekk-","humanReadableId":"Polyetherketoneketone (PEKK)","label":"Polyetherketoneketone (PEKK)","disabled":true}]},{"id":"polycarbonate--pc-","nodeId":"polycarbonate--pc-","humanReadableId":"Polycarbonate (PC)","label":"Polycarbonate (PC)","disabled":true},{"id":"polyester","nodeId":"polyester","humanReadableId":"Polyester","label":"Polyester","disabled":true,"children":[{"id":"polybutylene-terephthalate--pbt-","nodeId":"polybutylene-terephthalate--pbt-","humanReadableId":"Polybutylene Terephthalate (PBT)","label":"Polybutylene Terephthalate (PBT)","disabled":true},{"id":"polyethylene-terephthalate--pet-","nodeId":"polyethylene-terephthalate--pet-","humanReadableId":"Polyethylene Terephthalate (PET)","label":"Polyethylene Terephthalate (PET)","disabled":true},{"id":"polyethylene-terephthalate-glycol--petg-","nodeId":"polyethylene-terephthalate-glycol--petg-","humanReadableId":"Polyethylene Terephthalate Glycol (PETG)","label":"Polyethylene Terephthalate Glycol (PETG)","disabled":true},{"id":"polyglycolicide--pga-","nodeId":"polyglycolicide--pga-","humanReadableId":"Polyglycolicide (PGA)","label":"Polyglycolicide (PGA)","disabled":true},{"id":"polytrimethylene-terephthalate--ptt-","nodeId":"polytrimethylene-terephthalate--ptt-","humanReadableId":"Polytrimethylene Terephthalate (PTT)","label":"Polytrimethylene Terephthalate (PTT)","disabled":true}]},{"id":"polyethylene--pe-","nodeId":"polyethylene--pe-","humanReadableId":"Polyethylene (PE)","label":"Polyethylene (PE)","disabled":true},{"id":"polyimide--pi-","nodeId":"polyimide--pi-","humanReadableId":"Polyimide (PI)","label":"Polyimide (PI)","disabled":true,"children":[{"id":"polyamidimide--pai-","nodeId":"polyamidimide--pai-","humanReadableId":"Polyamidimide (PAI)","label":"Polyamidimide (PAI)","disabled":true},{"id":"polybenzimidazole--pbi-","nodeId":"polybenzimidazole--pbi-","humanReadableId":"Polybenzimidazole (PBI)","label":"Polybenzimidazole (PBI)","disabled":true},{"id":"polyetherimide--pei-","nodeId":"polyetherimide--pei-","humanReadableId":"Polyetherimide (PEI)","label":"Polyetherimide (PEI)","disabled":true}]},{"id":"polyketone--pk-","nodeId":"polyketone--pk-","humanReadableId":"Polyketone (PK)","label":"Polyketone (PK)","disabled":true},{"id":"polylactic-acid--pla-","nodeId":"polylactic-acid--pla-","humanReadableId":"Polylactic Acid (PLA)","label":"Polylactic Acid (PLA)","disabled":true},{"id":"polymer-blend","nodeId":"polymer-blend","humanReadableId":"Polymer Blend","label":"Polymer Blend","disabled":true},{"id":"polyolefin--po-","nodeId":"polyolefin--po-","humanReadableId":"Polyolefin (PO)","label":"Polyolefin (PO)","disabled":true,"children":[{"id":"polybutene--pb-","nodeId":"polybutene--pb-","humanReadableId":"Polybutene (PB)","label":"Polybutene (PB)","disabled":true},{"id":"polyethylene--pe-","nodeId":"polyethylene--pe--","humanReadableId":"Polyethylene (PE)","label":"Polyethylene (PE)","disabled":true,"children":[{"id":"high-density-polyethylene--pe-hd-","nodeId":"high-density-polyethylene--pe-hd-","humanReadableId":"High Density Polyethylene (PE-HD)","label":"High Density Polyethylene (PE-HD)","disabled":true},{"id":"high-molecular-weight-polyethylene--pe-hmw-","nodeId":"high-molecular-weight-polyethylene--pe-hmw-","humanReadableId":"High Molecular Weight Polyethylene (PE-HMW)","label":"High Molecular Weight Polyethylene (PE-HMW)","disabled":true},{"id":"linear-low-density-polyethylene--pe-lld-","nodeId":"linear-low-density-polyethylene--pe-lld-","humanReadableId":"Linear Low Density Polyethylene (PE-LLD)","label":"Linear Low Density Polyethylene (PE-LLD)","disabled":true},{"id":"low-density-polyethylene--pe-ld-","nodeId":"low-density-polyethylene--pe-ld-","humanReadableId":"Low Density Polyethylene (PE-LD)","label":"Low Density Polyethylene (PE-LD)","disabled":true},{"id":"medium-density-polyethylene--pe-md-","nodeId":"medium-density-polyethylene--pe-md-","humanReadableId":"Medium Density Polyethylene (PE-MD)","label":"Medium Density Polyethylene (PE-MD)","disabled":true},{"id":"ultra-high-molecular-weight-polyethylene--pe-uhmw-","nodeId":"ultra-high-molecular-weight-polyethylene--pe-uhmw-","humanReadableId":"Ultra High Molecular Weight Polyethylene (PE-UHMW)","label":"Ultra High Molecular Weight Polyethylene (PE-UHMW)","disabled":true},{"id":"very-low-density-polyethylene--pe-vld-","nodeId":"very-low-density-polyethylene--pe-vld-","humanReadableId":"Very Low Density Polyethylene (PE-VLD)","label":"Very Low Density Polyethylene (PE-VLD)","disabled":true}]},{"id":"polymethylpentene--pmp-","nodeId":"polymethylpentene--pmp-","humanReadableId":"Polymethylpentene (PMP)","label":"Polymethylpentene (PMP)","disabled":true},{"id":"polypropylene--pp-","nodeId":"polypropylene--pp-","humanReadableId":"Polypropylene (PP)","label":"Polypropylene (PP)","disabled":true}]},{"id":"polyoxymethylene--pom-","nodeId":"polyoxymethylene--pom-","humanReadableId":"Polyoxymethylene (POM)","label":"Polyoxymethylene (POM)","disabled":true},{"id":"polyphenyl","nodeId":"polyphenyl","humanReadableId":"Polyphenyl","label":"Polyphenyl","disabled":true,"children":[{"id":"polyphenyl-ether--ppe-","nodeId":"polyphenyl-ether--ppe-","humanReadableId":"Polyphenyl Ether (PPE)","label":"Polyphenyl Ether (PPE)","disabled":true},{"id":"polyphenylene-oxide--ppo-","nodeId":"polyphenylene-oxide--ppo-","humanReadableId":"Polyphenylene Oxide (PPO)","label":"Polyphenylene Oxide (PPO)","disabled":true},{"id":"polyphenylene-sulfide--pps-","nodeId":"polyphenylene-sulfide--pps-","humanReadableId":"Polyphenylene Sulfide (PPS)","label":"Polyphenylene Sulfide (PPS)","disabled":true}]},{"id":"polysaccharide","nodeId":"polysaccharide","humanReadableId":"Polysaccharide","label":"Polysaccharide","disabled":true},{"id":"polysulphones","nodeId":"polysulphones","humanReadableId":"Polysulphones","label":"Polysulphones","disabled":true,"children":[{"id":"polyether-sulfone--pes-","nodeId":"polyether-sulfone--pes-","humanReadableId":"Polyether Sulfone (PES)","label":"Polyether Sulfone (PES)","disabled":true},{"id":"polyphenylsulphone--ppsu-","nodeId":"polyphenylsulphone--ppsu-","humanReadableId":"Polyphenylsulphone (PPSU)","label":"Polyphenylsulphone (PPSU)","disabled":true},{"id":"polysulphone--psu-","nodeId":"polysulphone--psu-","humanReadableId":"Polysulphone (PSU)","label":"Polysulphone (PSU)","disabled":true},{"id":"polysulphone-general--psu-","nodeId":"polysulphone-general--psu-","humanReadableId":"Polysulphone General (PSU)","label":"Polysulphone General (PSU)","disabled":true}]},{"id":"styrene","nodeId":"styrene","humanReadableId":"Styrene","label":"Styrene","disabled":true,"children":[{"id":"acrylonitrile-butadiene-styrene--abs-","nodeId":"acrylonitrile-butadiene-styrene--abs-","humanReadableId":"Acrylonitrile Butadiene Styrene (ABS)","label":"Acrylonitrile Butadiene Styrene (ABS)","disabled":true},{"id":"acrylonitrile-styrene-acrylate--asa-","nodeId":"acrylonitrile-styrene-acrylate--asa-","humanReadableId":"Acrylonitrile Styrene Acrylate (ASA)","label":"Acrylonitrile Styrene Acrylate (ASA)","disabled":true},{"id":"high-impact-polystyrene--hips-","nodeId":"high-impact-polystyrene--hips-","humanReadableId":"High Impact Polystyrene (HIPS)","label":"High Impact Polystyrene (HIPS)","disabled":true},{"id":"methacrylate-butadiene-styrene--mbs-","nodeId":"methacrylate-butadiene-styrene--mbs-","humanReadableId":"Methacrylate Butadiene Styrene (MBS)","label":"Methacrylate Butadiene Styrene (MBS)","disabled":true},{"id":"polystyrene--ps-","nodeId":"polystyrene--ps-","humanReadableId":"Polystyrene (PS)","label":"Polystyrene (PS)","disabled":true},{"id":"styrene-acrylonitrile--san-","nodeId":"styrene-acrylonitrile--san-","humanReadableId":"Styrene Acrylonitrile (SAN)","label":"Styrene Acrylonitrile (SAN)","disabled":true}]},{"id":"vinyl","nodeId":"vinyl","humanReadableId":"Vinyl","label":"Vinyl","disabled":true,"children":[{"id":"ethylene-vinyl-acetate--evac-","nodeId":"ethylene-vinyl-acetate--evac-","humanReadableId":"Ethylene Vinyl Acetate (EVAC)","label":"Ethylene Vinyl Acetate (EVAC)","disabled":true},{"id":"polyvinyl-chloride--pvc-","nodeId":"polyvinyl-chloride--pvc-","humanReadableId":"Polyvinyl Chloride (PVC)","label":"Polyvinyl Chloride (PVC)","disabled":true}]}]},{"id":"thermosetting","nodeId":"thermosetting","humanReadableId":"Thermosetting","label":"Thermosetting","disabled":true,"children":[{"id":"amino-resin","nodeId":"amino-resin","humanReadableId":"Amino Resin","label":"Amino Resin","disabled":true,"children":[{"id":"bismaleimide--bmi-","nodeId":"bismaleimide--bmi-","humanReadableId":"Bismaleimide (BMI)","label":"Bismaleimide (BMI)","disabled":true},{"id":"melamine-formaldehyde--mf-","nodeId":"melamine-formaldehyde--mf-","humanReadableId":"Melamine formaldehyde (MF)","label":"Melamine formaldehyde (MF)","disabled":true}]},{"id":"epoxy-resin--ep-","nodeId":"epoxy-resin--ep-","humanReadableId":"Epoxy Resin (EP)","label":"Epoxy Resin (EP)","disabled":true},{"id":"phenol-formaldehyde-resin--pf-","nodeId":"phenol-formaldehyde-resin--pf-","humanReadableId":"Phenol Formaldehyde Resin (PF)","label":"Phenol Formaldehyde Resin (PF)","disabled":true},{"id":"phthalonitrile--pn-","nodeId":"phthalonitrile--pn-","humanReadableId":"Phthalonitrile (PN)","label":"Phthalonitrile (PN)","disabled":true},{"id":"polyester-resin--up-","nodeId":"polyester-resin--up-","humanReadableId":"Polyester Resin (UP)","label":"Polyester Resin (UP)","disabled":true},{"id":"vinyl-ester-resin--ve-","nodeId":"vinyl-ester-resin--ve-","humanReadableId":"Vinyl Ester Resin (VE)","label":"Vinyl Ester Resin (VE)","disabled":true}]}]}],"categorySpecificFilter":{"name":"metal","disabled":false,"forms":[{"id":"bar","label":"Bar","checked":true},{"id":"billet","label":"Billet"},{"id":"casting","label":"Casting","disabled":true},{"id":"coil","label":"Coil"},{"id":"disc","label":"Disc","disabled":true},{"id":"flat","label":"Flat"},{"id":"flat-bar","label":"Flat Bar"},{"id":"foil","label":"Foil"},{"id":"forging","label":"Forging"},{"id":"full-section","label":"Full Section","disabled":true},{"id":"half-round-bar","label":"Half Round Bar","disabled":true},{"id":"hexagonal-bar","label":"Hexagonal Bar"},{"id":"hexagonal-bright-bar","label":"Hexagonal Bright Bar","disabled":true},{"id":"hexagonal-rod","label":"Hexagonal Rod"},{"id":"hexagonal-wire","label":"Hexagonal Wire"},{"id":"hollow-bar","label":"Hollow Bar","disabled":true},{"id":"ingot","label":"Ingot","disabled":true},{"id":"pipe","label":"Pipe","disabled":true},{"id":"plate","label":"Plate"},{"id":"powder","label":"Powder","disabled":true},{"id":"profile","label":"Profile"},{"id":"profile-wire","label":"Profile Wire","disabled":true},{"id":"rod","label":"Rod"},{"id":"round-bar","label":"Round Bar"},{"id":"round-bright-bar","label":"Round Bright Bar","disabled":true},{"id":"round-rod","label":"Round Rod"},{"id":"round-wire","label":"Round Wire"},{"id":"seamless-tube","label":"Seamless Tube"},{"id":"sheet","label":"Sheet"},{"id":"spring","label":"Spring","disabled":true},{"id":"squar-bar","label":"Squar Bar","disabled":true},{"id":"square-bar","label":"Square Bar"},{"id":"strip","label":"Strip"},{"id":"tube","label":"Tube"},{"id":"welded-tube","label":"Welded Tube","disabled":true},{"id":"wire","label":"Wire"}],"fillers":[],"modifications":[],"processing":[],"certifications":[],"primaryPhase":[],"secondaryPhase":[]},"tags":[{"id":"form","value":"bar","label":"Bar"}],"suppliers":[{"id":"dest","label":"Deutsche Edelstahlwerke (DEW)","materialsCount":93},{"id":"ugit","label":"Ugitech","materialsCount":50},{"id":"sver","label":"Sverdrup Steel AS","materialsCount":20},{"id":"salo","label":"Salomon's Metalen","materialsCount":16},{"id":"hemp","label":"Hempel Special Metals","materialsCount":4},{"id":"vdmm","label":"VDM Metals","materialsCount":1},{"id":"song","label":"Dongguan songshun mould steel Co., Ltd.","materialsCount":13},{"id":"ambi","label":"Ambica Steels Limited","materialsCount":10}]},"results":{"materials":{"data":[{"id":"DESTB19","label":"Acidur 4529","url":"/materials/destb19-acidur-4529","category":{"id":"superaustenitic-stainless-steel","label":"Superaustenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS11","label":"Acidur 4401 +AT ","url":"/materials/dests11-acidur-4401-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS12","label":"Acidur 4435 +AT ","url":"/materials/dests12-acidur-4435-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS13","label":"Acidur 4541 +AT ","url":"/materials/dests13-acidur-4541-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS14","label":"Acidur 4571 +AT ","url":"/materials/dests14-acidur-4571-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS11A","label":"Acidur 4404 +AT ","url":"/materials/dests11a-acidur-4404-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS9","label":"Acidur 4301 +AT ","url":"/materials/dests9-acidur-4301-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS9A","label":"Acidur 4307 +AT ","url":"/materials/dests9a-acidur-4307-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS10","label":"Acidur 4305 +AT ","url":"/materials/dests10-acidur-4305-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"VDMM023","label":"VDM® Alloy 926","url":"/materials/vdmm023-vdm-alloy-926","category":{"id":"superaustenitic-stainless-steel","label":"Superaustenitic Stainless Steel"},"supplier":{"id":"VDMM","label":"VDM Metals","url":"/suppliers/vdmm-vdm-metals"}},{"id":"DESTS7","label":"Acidur 4418 QT900 ","url":"/materials/dests7-acidur-4418-qt900-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS15","label":"Acidur 4462 +AT ","url":"/materials/dests15-acidur-4462-at-","category":{"id":"duplex-stainless-steel","label":"Duplex Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS7A","label":"Acidur 4418 QT760 ","url":"/materials/dests7a-acidur-4418-qt760-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"UGIT0076","label":"UGIMA® 4460 Cold Finished","url":"/materials/ugit0076-ugima-4460-cold-finished","category":{"id":"duplex-stainless-steel","label":"Duplex Stainless Steel"},"supplier":{"id":"UGIT","label":"Ugitech","url":"/suppliers/ugit-ugitech"}},{"id":"UGIT0077","label":"UGIMA® 4460 Cold Finished and Drawn","url":"/materials/ugit0077-ugima-4460-cold-finished-and-drawn","category":{"id":"duplex-stainless-steel","label":"Duplex Stainless Steel"},"supplier":{"id":"UGIT","label":"Ugitech","url":"/suppliers/ugit-ugitech"}},{"id":"UGIT0129","label":"UGI® 4545 AIR H1025","url":"/materials/ugit0129-ugi-4545-air-h1025","category":{"id":"precipitation-hardening-stainless-steel","label":"Precipitation Hardening Stainless Steel"},"supplier":{"id":"UGIT","label":"Ugitech","url":"/suppliers/ugit-ugitech"}},{"id":"DESTS1","label":"Corrodur 4021 QT800 ","url":"/materials/dests1-corrodur-4021-qt800-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS3","label":"Corrodur 4034 Annealed ","url":"/materials/dests3-corrodur-4034-annealed-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS4","label":"Acidur 4057 QT800 ","url":"/materials/dests4-acidur-4057-qt800-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS8","label":"Acidur 4542 P800 ","url":"/materials/dests8-acidur-4542-p800-","category":{"id":"precipitation-hardening-stainless-steel","label":"Precipitation Hardening Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}}],"materialsCount":2214,"page":1}}},"namespacesRequired":["account","common","navigation","sign-in-up","advanced-search","search-and-filters","ashby-chart"]},"pathname":"/advanced-search","host":"matmatch.com","auth":{"oauth2Google":false,"oauth2Linkedin":false,"promotionalEmails":false,"acceptedTerms":false}},"initialState":{"company":{},"actionMessage":{"messageCode":null,"messageType":null,"messageText":"","messageTranslationKey":"","errorObj":null,"showPopup":false,"showMessage":false,"endPoint":null},"user":{"oauth2Google":false,"oauth2Linkedin":false,"promotionalEmails":false,"acceptedTerms":false},"companyUser":{},"companyUsers":[],"roles":[],"form":{},"popup":{"open":false,"popupComponent":"","info":{},"companyCodes":[],"fieldsValues":{},"formConfiguration":{},"prePopulatedDataFetched":false,"signupEmail":null},"auth":{"isAuthenticated":false,"isLoginPopupVisible":false,"isRequestingLogin":false,"loginError":"","isSignupPopupVisible":false,"isRequestingSignup":false,"isSignupSuccessPopupVisible":false,"signupError":"","signupEmail":"","isAuthPopupVisible":false,"form":"","autoActionParams":null,"activePremiumFeature":""},"targetUrl":null,"deviceWidth":null,"navigation":{"openOverlay":false,"categoriesTree":[{"id":"biological-material","nodeId":"biological-material","name":"Material category","label":"Biological Material","children":[{"id":"wood","nodeId":"wood","name":"Material category","label":"Wood"}],"materialsCount":1},{"id":"ceramic","nodeId":"ceramic","name":"Material category","label":"Ceramic","children":[{"id":"carbon","nodeId":"carbon","name":"Material category","label":"Carbon"},{"id":"engineering-ceramic","nodeId":"engineering-ceramic","name":"Material category","label":"Engineering Ceramic"},{"id":"natural-ceramic","nodeId":"natural-ceramic","name":"Material category","label":"Natural Ceramic"}],"materialsCount":305},{"id":"composite","nodeId":"composite","name":"Material category","label":"Composite","children":[{"id":"ceramic-matrix-composite","nodeId":"ceramic-matrix-composite","name":"Material category","label":"Ceramic Matrix Composite"},{"id":"metal-matrix-composite","nodeId":"metal-matrix-composite","name":"Material category","label":"Metal Matrix Composite"},{"id":"polymer-matrix-composite","nodeId":"polymer-matrix-composite","name":"Material category","label":"Polymer Matrix Composite"}],"materialsCount":367},{"id":"glass","nodeId":"glass","name":"Material category","label":"Glass","children":[{"id":"glass-ceramic","nodeId":"glass-ceramic","name":"Material category","label":"Glass Ceramic"},{"id":"lead-glass","nodeId":"lead-glass","name":"Material category","label":"Lead Glass"},{"id":"silicate-glass","nodeId":"silicate-glass","name":"Material category","label":"Silicate Glass"}],"materialsCount":364},{"id":"metal","nodeId":"metal","name":"Material category","label":"Metal","children":[{"id":"aluminium","nodeId":"aluminium","name":"Material category","label":"Aluminium"},{"id":"clad---bimetal","nodeId":"clad---bimetal","name":"Material category","label":"Clad / Bimetal"},{"id":"cobalt","nodeId":"cobalt","name":"Material category","label":"Cobalt"},{"id":"copper","nodeId":"copper","name":"Material category","label":"Copper"},{"id":"iron","nodeId":"iron","name":"Material category","label":"Iron"},{"id":"magnesium","nodeId":"magnesium","name":"Material category","label":"Magnesium"},{"id":"manganese","nodeId":"manganese","name":"Material category","label":"Manganese"},{"id":"nickel","nodeId":"nickel","name":"Material category","label":"Nickel"},{"id":"noble-metal","nodeId":"noble-metal","name":"Material category","label":"Noble Metal"},{"id":"other-metal","nodeId":"other-metal","name":"Material category","label":"Other Metal"},{"id":"refractory-metal","nodeId":"refractory-metal","name":"Material category","label":"Refractory Metal"},{"id":"steel","nodeId":"steel","name":"Material category","label":"Steel"},{"id":"titanium","nodeId":"titanium","name":"Material category","label":"Titanium"}],"materialsCount":23895},{"id":"polymer","nodeId":"polymer","name":"Material category","label":"Polymer","children":[{"id":"elastomer","nodeId":"elastomer","name":"Material category","label":"Elastomer"},{"id":"thermoplastic","nodeId":"thermoplastic","name":"Material category","label":"Thermoplastic"},{"id":"thermosetting","nodeId":"thermosetting","name":"Material category","label":"Thermosetting"}],"materialsCount":6385}],"expandedMenuIds":[]},"footerCompanies":{"loggedInSupplier":{},"suppliers":[]},"dynamicFilters":{"query":"","appliedFilters":[],"filterDefinition":{"name":"root","children":[]}},"autoSuggestions":[],"contactFormSuccess":{"formSubmitted":false,"success":false,"done":false},"newsletter":{"userSubscribed":false},"comparison":{"orderCounter":0,"selection":{}},"experiment":null,"previewMaterial":null,"supplierMaterials":{"report":null,"materials":[],"publishedCount":0,"approvalStatus":"unpublished","showPublishAllTriggeredPopup":false},"reviewCompany":null,"applications":{"applicationListView":[],"materialsView":{"query":"","materials":[],"filters":[],"appliedFilters":[],"breadcrumbs":[],"filterGroups":[]},"visualisedMaterials":[],"visualisedProperties":[],"selectedMaterialsForComparison":[],"selectedPropertiesForCharts":[],"selectedPropertiesForChartsLegendData":[],"selectedMaterialsForCharts":[],"chartType":"","chartData":{},"compareData":{},"selectedApplication":"","totalResults":0,"comparisonId":""},"autoAction":{"apiUrl":[],"infoMessageTranslationKey":"","successRedirect":"","successApiUrl":"","successApiMethod":"","failedRedirect":"","failedAction":"","successAction":"","eventsAnalyticsObj":null},"savedSuppliers":{"items":[],"openAuthPopup":false,"savingItem":null},"advancedSearch":{"labels":[],"queryParams":"categories=steel\u0026tags=form:bar","categories":[{"id":"biological-material","nodeId":"biological-material","humanReadableId":"Biological Material","label":"Biological Material","disabled":true,"children":[{"id":"wood","nodeId":"wood","humanReadableId":"Wood","label":"Wood","disabled":true}]},{"id":"ceramic","nodeId":"ceramic","humanReadableId":"Ceramic","label":"Ceramic","disabled":true,"children":[{"id":"carbon","nodeId":"carbon","humanReadableId":"Carbon","label":"Carbon","disabled":true,"children":[{"id":"carbon-nanotube","nodeId":"carbon-nanotube","humanReadableId":"Carbon Nanotube","label":"Carbon Nanotube","disabled":true},{"id":"diamond","nodeId":"diamond","humanReadableId":"Diamond","label":"Diamond","disabled":true,"children":[{"id":"natural-diamond","nodeId":"natural-diamond","humanReadableId":"Natural Diamond","label":"Natural Diamond","disabled":true},{"id":"synthetic-diamond","nodeId":"synthetic-diamond","humanReadableId":"Synthetic Diamond","label":"Synthetic Diamond","disabled":true}]},{"id":"graphene","nodeId":"graphene","humanReadableId":"Graphene","label":"Graphene","disabled":true},{"id":"graphite","nodeId":"graphite","humanReadableId":"Graphite","label":"Graphite","disabled":true}]},{"id":"engineering-ceramic","nodeId":"engineering-ceramic","humanReadableId":"Engineering Ceramic","label":"Engineering Ceramic","disabled":true,"children":[{"id":"non-oxide-based","nodeId":"non-oxide-based","humanReadableId":"Non Oxide Based","label":"Non Oxide Based","disabled":true,"children":[{"id":"boride-based","nodeId":"boride-based","humanReadableId":"Boride Based","label":"Boride Based","disabled":true},{"id":"carbide-based","nodeId":"carbide-based","humanReadableId":"Carbide Based","label":"Carbide Based","disabled":true,"children":[{"id":"boron-carbide","nodeId":"boron-carbide","humanReadableId":"Boron Carbide","label":"Boron Carbide","disabled":true},{"id":"silicon-carbide","nodeId":"silicon-carbide","humanReadableId":"Silicon Carbide","label":"Silicon Carbide","disabled":true},{"id":"tantalum-carbide","nodeId":"tantalum-carbide","humanReadableId":"Tantalum Carbide","label":"Tantalum Carbide","disabled":true},{"id":"titanium-carbide","nodeId":"titanium-carbide","humanReadableId":"Titanium Carbide","label":"Titanium Carbide","disabled":true},{"id":"tungsten-carbide","nodeId":"tungsten-carbide","humanReadableId":"Tungsten Carbide","label":"Tungsten Carbide","disabled":true},{"id":"zirconium-carbide","nodeId":"zirconium-carbide","humanReadableId":"Zirconium Carbide","label":"Zirconium Carbide","disabled":true}]},{"id":"nitride-based","nodeId":"nitride-based","humanReadableId":"Nitride Based","label":"Nitride Based","disabled":true,"children":[{"id":"aluminium-nitirde","nodeId":"aluminium-nitirde","humanReadableId":"Aluminium Nitirde","label":"Aluminium Nitirde","disabled":true},{"id":"boron-nitride","nodeId":"boron-nitride","humanReadableId":"Boron Nitride","label":"Boron Nitride","disabled":true},{"id":"silicon-nitride","nodeId":"silicon-nitride","humanReadableId":"Silicon Nitride","label":"Silicon Nitride","disabled":true},{"id":"titanium-nitride","nodeId":"titanium-nitride","humanReadableId":"Titanium Nitride","label":"Titanium Nitride","disabled":true}]},{"id":"silicate-based","nodeId":"silicate-based","humanReadableId":"Silicate Based","label":"Silicate Based","disabled":true},{"id":"sulfide-based","nodeId":"sulfide-based","humanReadableId":"Sulfide Based","label":"Sulfide Based","disabled":true,"children":[{"id":"bismuth-sulfide","nodeId":"bismuth-sulfide","humanReadableId":"Bismuth Sulfide","label":"Bismuth Sulfide","disabled":true},{"id":"copper-sulfide","nodeId":"copper-sulfide","humanReadableId":"Copper Sulfide","label":"Copper Sulfide","disabled":true},{"id":"iron-sulfide","nodeId":"iron-sulfide","humanReadableId":"Iron Sulfide","label":"Iron Sulfide","disabled":true},{"id":"manganese-sulfide","nodeId":"manganese-sulfide","humanReadableId":"Manganese Sulfide","label":"Manganese Sulfide","disabled":true},{"id":"molybdenum-disulfide","nodeId":"molybdenum-disulfide","humanReadableId":"Molybdenum Disulfide","label":"Molybdenum Disulfide","disabled":true},{"id":"multiphase-metal-sulfide","nodeId":"multiphase-metal-sulfide","humanReadableId":"Multiphase Metal Sulfide","label":"Multiphase Metal Sulfide","disabled":true},{"id":"tin-sulfide","nodeId":"tin-sulfide","humanReadableId":"Tin Sulfide","label":"Tin Sulfide","disabled":true},{"id":"tungsten-disulfide","nodeId":"tungsten-disulfide","humanReadableId":"Tungsten Disulfide","label":"Tungsten Disulfide","disabled":true},{"id":"zinc-sulfide","nodeId":"zinc-sulfide","humanReadableId":"Zinc Sulfide","label":"Zinc Sulfide","disabled":true}]}]},{"id":"oxide-based","nodeId":"oxide-based","humanReadableId":"Oxide Based","label":"Oxide Based","disabled":true,"children":[{"id":"advanced-ceramic-oxides","nodeId":"advanced-ceramic-oxides","humanReadableId":"Advanced Ceramic Oxides","label":"Advanced Ceramic Oxides","disabled":true},{"id":"aluminium-oxide","nodeId":"aluminium-oxide","humanReadableId":"Aluminium Oxide","label":"Aluminium Oxide","disabled":true},{"id":"beryllium-oxide","nodeId":"beryllium-oxide","humanReadableId":"Beryllium Oxide","label":"Beryllium Oxide","disabled":true},{"id":"ferrite","nodeId":"ferrite","humanReadableId":"Ferrite","label":"Ferrite","disabled":true},{"id":"silicon-oxide","nodeId":"silicon-oxide","humanReadableId":"Silicon Oxide","label":"Silicon Oxide","disabled":true,"children":[{"id":"aluminium-silicate","nodeId":"aluminium-silicate","humanReadableId":"Aluminium Silicate","label":"Aluminium Silicate","disabled":true},{"id":"magnesium-silicate","nodeId":"magnesium-silicate","humanReadableId":"Magnesium Silicate","label":"Magnesium Silicate","disabled":true},{"id":"zirconium-silicate","nodeId":"zirconium-silicate","humanReadableId":"Zirconium Silicate","label":"Zirconium Silicate","disabled":true}]},{"id":"titanium-oxide","nodeId":"titanium-oxide","humanReadableId":"Titanium Oxide","label":"Titanium Oxide","disabled":true},{"id":"zirconium-oxide","nodeId":"zirconium-oxide","humanReadableId":"Zirconium Oxide","label":"Zirconium Oxide","disabled":true}]},{"id":"oxide-based-ceramic-matrix-composite","nodeId":"oxide-based-ceramic-matrix-composite","humanReadableId":"Oxide Based Ceramic Matrix Composite","label":"Oxide Based Ceramic Matrix Composite","disabled":true,"children":[{"id":"multi-oxide-ceramics","nodeId":"multi-oxide-ceramics","humanReadableId":"Multi-Oxide Ceramics","label":"Multi-Oxide Ceramics","disabled":true},{"id":"silicon-oxide","nodeId":"silicon-oxide-","humanReadableId":"Silicon Oxide","label":"Silicon Oxide","disabled":true},{"id":"ytterbium-oxide","nodeId":"ytterbium-oxide","humanReadableId":"Ytterbium Oxide","label":"Ytterbium Oxide","disabled":true},{"id":"yttrium-oxide","nodeId":"yttrium-oxide","humanReadableId":"Yttrium Oxide","label":"Yttrium Oxide","disabled":true}]}]},{"id":"natural-ceramic","nodeId":"natural-ceramic","humanReadableId":"Natural Ceramic","label":"Natural Ceramic","disabled":true}]},{"id":"composite","nodeId":"composite","humanReadableId":"Composite","label":"Composite","disabled":true,"children":[{"id":"ceramic-matrix-composite","nodeId":"ceramic-matrix-composite","humanReadableId":"Ceramic Matrix Composite","label":"Ceramic Matrix Composite","disabled":true,"children":[{"id":"carbide-based-ceramic-matrix-composite","nodeId":"carbide-based-ceramic-matrix-composite","humanReadableId":"Carbide Based Ceramic Matrix Composite","label":"Carbide Based Ceramic Matrix Composite","disabled":true},{"id":"oxide-based-ceramic-matrix-composite","nodeId":"oxide-based-ceramic-matrix-composite-","humanReadableId":"Oxide Based Ceramic Matrix Composite","label":"Oxide Based Ceramic Matrix Composite","disabled":true}]},{"id":"metal-matrix-composite","nodeId":"metal-matrix-composite","humanReadableId":"Metal Matrix Composite","label":"Metal Matrix Composite","disabled":true,"children":[{"id":"aluminium-matrix-composite","nodeId":"aluminium-matrix-composite","humanReadableId":"Aluminium Matrix Composite","label":"Aluminium Matrix Composite","disabled":true},{"id":"beryllium-matrix-composite","nodeId":"beryllium-matrix-composite","humanReadableId":"Beryllium Matrix Composite","label":"Beryllium Matrix Composite","disabled":true},{"id":"cobalt-matrix-composite","nodeId":"cobalt-matrix-composite","humanReadableId":"Cobalt Matrix Composite","label":"Cobalt Matrix Composite","disabled":true},{"id":"cobalt-and-nickel-matrix-composite","nodeId":"cobalt-and-nickel-matrix-composite","humanReadableId":"Cobalt and Nickel Matrix Composite","label":"Cobalt and Nickel Matrix Composite","disabled":true},{"id":"iron-matrix-composite","nodeId":"iron-matrix-composite","humanReadableId":"Iron Matrix Composite","label":"Iron Matrix Composite","disabled":true},{"id":"nickel-matrix-composite","nodeId":"nickel-matrix-composite","humanReadableId":"Nickel Matrix Composite","label":"Nickel Matrix Composite","disabled":true}]},{"id":"polymer-matrix-composite","nodeId":"polymer-matrix-composite","humanReadableId":"Polymer Matrix Composite","label":"Polymer Matrix Composite","disabled":true,"children":[{"id":"thermoset-polymer-matrix-composite","nodeId":"thermoset-polymer-matrix-composite","humanReadableId":"Thermoset Polymer Matrix Composite","label":"Thermoset Polymer Matrix Composite","disabled":true}]}]},{"id":"glass","nodeId":"glass","humanReadableId":"Glass","label":"Glass","disabled":true,"children":[{"id":"glass-ceramic","nodeId":"glass-ceramic","humanReadableId":"Glass Ceramic","label":"Glass Ceramic","disabled":true,"children":[{"id":"las-glass-ceramic","nodeId":"las-glass-ceramic","humanReadableId":"LAS Glass Ceramic","label":"LAS Glass Ceramic","disabled":true}]},{"id":"lead-glass","nodeId":"lead-glass","humanReadableId":"Lead Glass","label":"Lead Glass","disabled":true},{"id":"silicate-glass","nodeId":"silicate-glass","humanReadableId":"Silicate Glass","label":"Silicate Glass","disabled":true,"children":[{"id":"aluminosilicate","nodeId":"aluminosilicate","humanReadableId":"Aluminosilicate","label":"Aluminosilicate","disabled":true},{"id":"borosilicate","nodeId":"borosilicate","humanReadableId":"Borosilicate","label":"Borosilicate","disabled":true},{"id":"fused-quartz","nodeId":"fused-quartz","humanReadableId":"Fused Quartz","label":"Fused Quartz","disabled":true},{"id":"soda-lime-silicate","nodeId":"soda-lime-silicate","humanReadableId":"Soda Lime Silicate","label":"Soda Lime Silicate","disabled":true}]}]},{"id":"metal","nodeId":"metal","humanReadableId":"Metal","label":"Metal","partiallyChecked":true,"materialsCount":2214,"children":[{"id":"aluminium","nodeId":"aluminium","humanReadableId":"Aluminium","label":"Aluminium","disabled":true,"children":[{"id":"aluminium-master-alloy","nodeId":"aluminium-master-alloy","humanReadableId":"Aluminium Master Alloy","label":"Aluminium Master Alloy","disabled":true},{"id":"cast-aluminium","nodeId":"cast-aluminium","humanReadableId":"Cast Aluminium","label":"Cast Aluminium","disabled":true,"children":[{"id":"1xx-x","nodeId":"1xx-x","humanReadableId":"1xx.x","label":"1xx.x","disabled":true},{"id":"2xx-x","nodeId":"2xx-x","humanReadableId":"2xx.x","label":"2xx.x","disabled":true},{"id":"3xx-x","nodeId":"3xx-x","humanReadableId":"3xx.x","label":"3xx.x","disabled":true},{"id":"4xx-x","nodeId":"4xx-x","humanReadableId":"4xx.x","label":"4xx.x","disabled":true},{"id":"5xx-x","nodeId":"5xx-x","humanReadableId":"5xx.x","label":"5xx.x","disabled":true},{"id":"7xx-x","nodeId":"7xx-x","humanReadableId":"7xx.x","label":"7xx.x","disabled":true},{"id":"8xx-x","nodeId":"8xx-x","humanReadableId":"8xx.x","label":"8xx.x","disabled":true}]},{"id":"wrought-aluminium","nodeId":"wrought-aluminium","humanReadableId":"Wrought Aluminium","label":"Wrought Aluminium","disabled":true,"children":[{"id":"1000-series","nodeId":"1000-series","humanReadableId":"1000 Series","label":"1000 Series","disabled":true},{"id":"2000-series","nodeId":"2000-series","humanReadableId":"2000 Series","label":"2000 Series","disabled":true},{"id":"3000-series","nodeId":"3000-series","humanReadableId":"3000 Series","label":"3000 Series","disabled":true},{"id":"4000-series","nodeId":"4000-series","humanReadableId":"4000 Series","label":"4000 Series","disabled":true},{"id":"5000-series","nodeId":"5000-series","humanReadableId":"5000 Series","label":"5000 Series","disabled":true},{"id":"6000-series","nodeId":"6000-series","humanReadableId":"6000 Series","label":"6000 Series","disabled":true},{"id":"7000-series","nodeId":"7000-series","humanReadableId":"7000 Series","label":"7000 Series","disabled":true},{"id":"8000-series","nodeId":"8000-series","humanReadableId":"8000 Series","label":"8000 Series","disabled":true}]}]},{"id":"clad---bimetal","nodeId":"clad---bimetal","humanReadableId":"Clad / Bimetal","label":"Clad / Bimetal","disabled":true},{"id":"cobalt","nodeId":"cobalt","humanReadableId":"Cobalt","label":"Cobalt","disabled":true,"children":[{"id":"cobalt-chromium","nodeId":"cobalt-chromium","humanReadableId":"Cobalt Chromium","label":"Cobalt Chromium","disabled":true},{"id":"cobalt-chromium-molybdenum","nodeId":"cobalt-chromium-molybdenum","humanReadableId":"Cobalt Chromium Molybdenum","label":"Cobalt Chromium Molybdenum","disabled":true},{"id":"cobalt-chromium-nickel-tungsten","nodeId":"cobalt-chromium-nickel-tungsten","humanReadableId":"Cobalt Chromium Nickel Tungsten","label":"Cobalt Chromium Nickel Tungsten","disabled":true},{"id":"cobalt-chromium-tungsten","nodeId":"cobalt-chromium-tungsten","humanReadableId":"Cobalt Chromium Tungsten","label":"Cobalt Chromium Tungsten","disabled":true},{"id":"cobalt-nickel-chromium-molybdenum","nodeId":"cobalt-nickel-chromium-molybdenum","humanReadableId":"Cobalt Nickel Chromium Molybdenum","label":"Cobalt Nickel Chromium Molybdenum","disabled":true},{"id":"cobalt-superalloy","nodeId":"cobalt-superalloy","humanReadableId":"Cobalt Superalloy","label":"Cobalt Superalloy","disabled":true},{"id":"unclassified-cobalt-alloy","nodeId":"unclassified-cobalt-alloy","humanReadableId":"Unclassified Cobalt Alloy","label":"Unclassified Cobalt Alloy","disabled":true}]},{"id":"copper","nodeId":"copper","humanReadableId":"Copper","label":"Copper","disabled":true,"children":[{"id":"cast-copper","nodeId":"cast-copper","humanReadableId":"Cast Copper","label":"Cast Copper","disabled":true,"children":[{"id":"cast-copper-brass","nodeId":"cast-copper-brass","humanReadableId":"Cast Copper Brass","label":"Cast Copper Brass","disabled":true,"children":[{"id":"cast-copper-brass-yellow-brass","nodeId":"cast-copper-brass-yellow-brass","humanReadableId":"Cast Copper Brass Yellow Brass","label":"Cast Copper Brass Yellow Brass","disabled":true},{"id":"cast-copper-silicon-brass","nodeId":"cast-copper-silicon-brass","humanReadableId":"Cast Copper Silicon Brass","label":"Cast Copper Silicon Brass","disabled":true},{"id":"copper-bismuth-alloy","nodeId":"copper-bismuth-alloy","humanReadableId":"Copper Bismuth Alloy","label":"Copper Bismuth Alloy","disabled":true},{"id":"red-brass","nodeId":"red-brass","humanReadableId":"Red Brass","label":"Red Brass","disabled":true}]},{"id":"cast-copper-bronze","nodeId":"cast-copper-bronze","humanReadableId":"Cast Copper Bronze","label":"Cast Copper Bronze","disabled":true,"children":[{"id":"cast-copper-bronze-aluminium-bronze","nodeId":"cast-copper-bronze-aluminium-bronze","humanReadableId":"Cast Copper Bronze Aluminium Bronze","label":"Cast Copper Bronze Aluminium Bronze","disabled":true},{"id":"leaded-tin-bronze","nodeId":"leaded-tin-bronze","humanReadableId":"Leaded Tin Bronze","label":"Leaded Tin Bronze","disabled":true},{"id":"nickel-tin-bronze","nodeId":"nickel-tin-bronze","humanReadableId":"Nickel Tin Bronze","label":"Nickel Tin Bronze","disabled":true},{"id":"tin-bronze","nodeId":"tin-bronze","humanReadableId":"Tin Bronze","label":"Tin Bronze","disabled":true}]},{"id":"cast-copper-high-copper-alloy","nodeId":"cast-copper-high-copper-alloy","humanReadableId":"Cast Copper High Copper Alloy","label":"Cast Copper High Copper Alloy","disabled":true},{"id":"cast-copper-nickel-grade","nodeId":"cast-copper-nickel-grade","humanReadableId":"Cast Copper Nickel Grade","label":"Cast Copper Nickel Grade","disabled":true},{"id":"cast-copper-nickel-silver-grade","nodeId":"cast-copper-nickel-silver-grade","humanReadableId":"Cast Copper Nickel Silver Grade","label":"Cast Copper Nickel Silver Grade","disabled":true},{"id":"cast-copper-pure---low-alloyed-copper","nodeId":"cast-copper-pure---low-alloyed-copper","humanReadableId":"Cast Copper Pure / Low Alloyed Copper","label":"Cast Copper Pure / Low Alloyed Copper","disabled":true},{"id":"copper-lead-alloy","nodeId":"copper-lead-alloy","humanReadableId":"Copper-Lead Alloy","label":"Copper-Lead Alloy","disabled":true},{"id":"special-alloy","nodeId":"special-alloy","humanReadableId":"Special Alloy","label":"Special Alloy","disabled":true}]},{"id":"welding","nodeId":"welding","humanReadableId":"Welding","label":"Welding","disabled":true},{"id":"wrought-copper","nodeId":"wrought-copper","humanReadableId":"Wrought Copper","label":"Wrought Copper","disabled":true,"children":[{"id":"unclassified-wrought-copper","nodeId":"unclassified-wrought-copper","humanReadableId":"Unclassified Wrought Copper","label":"Unclassified Wrought Copper","disabled":true},{"id":"wrought-copper-brass","nodeId":"wrought-copper-brass","humanReadableId":"Wrought Copper Brass","label":"Wrought Copper Brass","disabled":true,"children":[{"id":"leaded-brass","nodeId":"leaded-brass","humanReadableId":"Leaded Brass","label":"Leaded Brass","disabled":true},{"id":"other-copper-zinc-alloy","nodeId":"other-copper-zinc-alloy","humanReadableId":"Other Copper Zinc Alloy","label":"Other Copper Zinc Alloy","disabled":true},{"id":"tin-brass","nodeId":"tin-brass","humanReadableId":"Tin Brass","label":"Tin Brass","disabled":true},{"id":"wrought-copper-brass-yellow-brass","nodeId":"wrought-copper-brass-yellow-brass","humanReadableId":"Wrought Copper Brass Yellow Brass","label":"Wrought Copper Brass Yellow Brass","disabled":true},{"id":"yellow-wrought-brass","nodeId":"yellow-wrought-brass","humanReadableId":"Yellow Wrought Brass","label":"Yellow Wrought Brass","disabled":true}]},{"id":"wrought-copper-bronze","nodeId":"wrought-copper-bronze","humanReadableId":"Wrought Copper Bronze","label":"Wrought Copper Bronze","disabled":true,"children":[{"id":"copper-silver-zinc-alloy","nodeId":"copper-silver-zinc-alloy","humanReadableId":"Copper Silver Zinc Alloy","label":"Copper Silver Zinc Alloy","disabled":true},{"id":"leaded-phosphor-bronze","nodeId":"leaded-phosphor-bronze","humanReadableId":"Leaded Phosphor Bronze","label":"Leaded Phosphor Bronze","disabled":true},{"id":"other-copper-zinc-alloy","nodeId":"other-copper-zinc-alloy-","humanReadableId":"Other Copper Zinc Alloy","label":"Other Copper Zinc Alloy","disabled":true},{"id":"phosphor-bronze","nodeId":"phosphor-bronze","humanReadableId":"Phosphor Bronze","label":"Phosphor Bronze","disabled":true},{"id":"wrought-copper-bronze-aluminium-bronze","nodeId":"wrought-copper-bronze-aluminium-bronze","humanReadableId":"Wrought Copper Bronze Aluminium Bronze","label":"Wrought Copper Bronze Aluminium Bronze","disabled":true},{"id":"wrought-copper-bronze-silicon-bronze","nodeId":"wrought-copper-bronze-silicon-bronze","humanReadableId":"Wrought Copper Bronze Silicon Bronze","label":"Wrought Copper Bronze Silicon Bronze","disabled":true}]},{"id":"wrought-copper-high-copper-alloy","nodeId":"wrought-copper-high-copper-alloy","humanReadableId":"Wrought Copper High Copper Alloy","label":"Wrought Copper High Copper Alloy","disabled":true},{"id":"wrought-copper-nickel-grade","nodeId":"wrought-copper-nickel-grade","humanReadableId":"Wrought Copper Nickel Grade","label":"Wrought Copper Nickel Grade","disabled":true},{"id":"wrought-copper-nickel-silver-grade","nodeId":"wrought-copper-nickel-silver-grade","humanReadableId":"Wrought Copper Nickel Silver Grade","label":"Wrought Copper Nickel Silver Grade","disabled":true},{"id":"wrought-copper-pure---low-alloyed-copper","nodeId":"wrought-copper-pure---low-alloyed-copper","humanReadableId":"Wrought Copper Pure / Low Alloyed Copper","label":"Wrought Copper Pure / Low Alloyed Copper","disabled":true}]}]},{"id":"iron","nodeId":"iron","humanReadableId":"Iron","label":"Iron","disabled":true,"children":[{"id":"alloy-iron","nodeId":"alloy-iron","humanReadableId":"Alloy Iron","label":"Alloy Iron","disabled":true},{"id":"cast-iron","nodeId":"cast-iron","humanReadableId":"Cast Iron","label":"Cast Iron","disabled":true,"children":[{"id":"ductile--nodular--cast-iron","nodeId":"ductile--nodular--cast-iron","humanReadableId":"Ductile (Nodular) Cast Iron","label":"Ductile (Nodular) Cast Iron","disabled":true},{"id":"grey-cast-iron","nodeId":"grey-cast-iron","humanReadableId":"Grey Cast Iron","label":"Grey Cast Iron","disabled":true},{"id":"malleable-cast-iron","nodeId":"malleable-cast-iron","humanReadableId":"Malleable Cast Iron","label":"Malleable Cast Iron","disabled":true},{"id":"other-cast-iron-alloy","nodeId":"other-cast-iron-alloy","humanReadableId":"Other Cast Iron Alloy","label":"Other Cast Iron Alloy","disabled":true},{"id":"white-cast-iron","nodeId":"white-cast-iron","humanReadableId":"White Cast Iron","label":"White Cast Iron","disabled":true}]},{"id":"ferromolybdenum","nodeId":"ferromolybdenum","humanReadableId":"Ferromolybdenum","label":"Ferromolybdenum","disabled":true},{"id":"ferrosilicon","nodeId":"ferrosilicon","humanReadableId":"Ferrosilicon","label":"Ferrosilicon","disabled":true},{"id":"ferrovanadium","nodeId":"ferrovanadium","humanReadableId":"Ferrovanadium","label":"Ferrovanadium","disabled":true},{"id":"iron-alloy","nodeId":"iron-alloy","humanReadableId":"Iron Alloy","label":"Iron Alloy","disabled":true,"children":[{"id":"aluminium-nickel-cobalt-iron-alloy","nodeId":"aluminium-nickel-cobalt-iron-alloy","humanReadableId":"Aluminium Nickel Cobalt Iron Alloy","label":"Aluminium Nickel Cobalt Iron Alloy","disabled":true},{"id":"miscellaneous-iron-alloy","nodeId":"miscellaneous-iron-alloy","humanReadableId":"Miscellaneous Iron Alloy","label":"Miscellaneous Iron Alloy","disabled":true},{"id":"soft-magnetic-iron","nodeId":"soft-magnetic-iron","humanReadableId":"Soft Magnetic Iron","label":"Soft Magnetic Iron","disabled":true}]},{"id":"malleable-cast-iron","nodeId":"malleable-cast-iron-","humanReadableId":"Malleable Cast Iron","label":"Malleable Cast Iron","disabled":true}]},{"id":"magnesium","nodeId":"magnesium","humanReadableId":"Magnesium","label":"Magnesium","disabled":true,"children":[{"id":"aluminium-grade","nodeId":"aluminium-grade","humanReadableId":"Aluminium Grade","label":"Aluminium Grade","disabled":true},{"id":"cast-aluminium-manganese-grade","nodeId":"cast-aluminium-manganese-grade","humanReadableId":"Cast Aluminium Manganese Grade","label":"Cast Aluminium Manganese Grade","disabled":true},{"id":"cast-rare-earth-grade","nodeId":"cast-rare-earth-grade","humanReadableId":"Cast Rare Earth Grade","label":"Cast Rare Earth Grade","disabled":true},{"id":"cast-wrought-aluminium-zinc-grade","nodeId":"cast-wrought-aluminium-zinc-grade","humanReadableId":"Cast/Wrought Aluminium Zinc Grade","label":"Cast/Wrought Aluminium Zinc Grade","disabled":true},{"id":"cast-wrought-unclassified-grade","nodeId":"cast-wrought-unclassified-grade","humanReadableId":"Cast/Wrought Unclassified Grade","label":"Cast/Wrought Unclassified Grade","disabled":true},{"id":"pure-magnesium","nodeId":"pure-magnesium","humanReadableId":"Pure Magnesium","label":"Pure Magnesium","disabled":true},{"id":"rare-earth-grade","nodeId":"rare-earth-grade","humanReadableId":"Rare Earth Grade","label":"Rare Earth Grade","disabled":true},{"id":"wrought-zinc-grade","nodeId":"wrought-zinc-grade","humanReadableId":"Wrought Zinc Grade","label":"Wrought Zinc Grade","disabled":true},{"id":"yttrium-grade","nodeId":"yttrium-grade","humanReadableId":"Yttrium Grade","label":"Yttrium Grade","disabled":true},{"id":"zinc-grade","nodeId":"zinc-grade","humanReadableId":"Zinc Grade","label":"Zinc Grade","disabled":true}]},{"id":"manganese","nodeId":"manganese","humanReadableId":"Manganese","label":"Manganese","disabled":true},{"id":"nickel","nodeId":"nickel","humanReadableId":"Nickel","label":"Nickel","disabled":true,"children":[{"id":"nickel-chromium-alloy","nodeId":"nickel-chromium-alloy","humanReadableId":"Nickel Chromium Alloy","label":"Nickel Chromium Alloy","disabled":true},{"id":"nickel-chromium-cobalt-alloy","nodeId":"nickel-chromium-cobalt-alloy","humanReadableId":"Nickel Chromium Cobalt Alloy","label":"Nickel Chromium Cobalt Alloy","disabled":true},{"id":"nickel-chromium-iron-alloy","nodeId":"nickel-chromium-iron-alloy","humanReadableId":"Nickel Chromium Iron Alloy","label":"Nickel Chromium Iron Alloy","disabled":true},{"id":"nickel-chromium-molybdenum-alloy","nodeId":"nickel-chromium-molybdenum-alloy","humanReadableId":"Nickel Chromium Molybdenum Alloy","label":"Nickel Chromium Molybdenum Alloy","disabled":true},{"id":"nickel-cobalt-alloy","nodeId":"nickel-cobalt-alloy","humanReadableId":"Nickel Cobalt Alloy","label":"Nickel Cobalt Alloy","disabled":true},{"id":"nickel-copper-alloy","nodeId":"nickel-copper-alloy","humanReadableId":"Nickel Copper Alloy","label":"Nickel Copper Alloy","disabled":true},{"id":"nickel-iron-alloy","nodeId":"nickel-iron-alloy","humanReadableId":"Nickel Iron Alloy","label":"Nickel Iron Alloy","disabled":true},{"id":"nickel-molybdenum-alloy","nodeId":"nickel-molybdenum-alloy","humanReadableId":"Nickel Molybdenum Alloy","label":"Nickel Molybdenum Alloy","disabled":true},{"id":"nickel-superalloy","nodeId":"nickel-superalloy","humanReadableId":"Nickel Superalloy","label":"Nickel Superalloy","disabled":true},{"id":"nickel-welding-filler","nodeId":"nickel-welding-filler","humanReadableId":"Nickel Welding Filler","label":"Nickel Welding Filler","disabled":true},{"id":"other-nickel-alloy","nodeId":"other-nickel-alloy","humanReadableId":"Other Nickel Alloy","label":"Other Nickel Alloy","disabled":true},{"id":"pure-low-nickel-alloy","nodeId":"pure-low-nickel-alloy","humanReadableId":"Pure/Low Nickel Alloy","label":"Pure/Low Nickel Alloy","disabled":true}]},{"id":"noble-metal","nodeId":"noble-metal","humanReadableId":"Noble Metal","label":"Noble Metal","disabled":true,"children":[{"id":"gold","nodeId":"gold","humanReadableId":"Gold","label":"Gold","disabled":true},{"id":"iridium","nodeId":"iridium","humanReadableId":"Iridium","label":"Iridium","disabled":true},{"id":"palladium","nodeId":"palladium","humanReadableId":"Palladium","label":"Palladium","disabled":true},{"id":"platinum","nodeId":"platinum","humanReadableId":"Platinum","label":"Platinum","disabled":true},{"id":"rhodium","nodeId":"rhodium","humanReadableId":"Rhodium","label":"Rhodium","disabled":true},{"id":"silver","nodeId":"silver","humanReadableId":"Silver","label":"Silver","disabled":true}]},{"id":"other-metal","nodeId":"other-metal","humanReadableId":"Other Metal","label":"Other Metal","disabled":true,"children":[{"id":"beryllium","nodeId":"beryllium","humanReadableId":"Beryllium","label":"Beryllium","disabled":true},{"id":"cadmium","nodeId":"cadmium","humanReadableId":"Cadmium","label":"Cadmium","disabled":true},{"id":"chromium","nodeId":"chromium","humanReadableId":"Chromium","label":"Chromium","disabled":true},{"id":"lead","nodeId":"lead","humanReadableId":"Lead","label":"Lead","disabled":true,"children":[{"id":"lead-antimony","nodeId":"lead-antimony","humanReadableId":"Lead Antimony","label":"Lead Antimony","disabled":true},{"id":"lead-tin","nodeId":"lead-tin","humanReadableId":"Lead Tin","label":"Lead Tin","disabled":true},{"id":"pure-low-alloyed-lead","nodeId":"pure-low-alloyed-lead","humanReadableId":"Pure/Low Alloyed Lead","label":"Pure/Low Alloyed Lead","disabled":true}]},{"id":"lithium","nodeId":"lithium","humanReadableId":"Lithium","label":"Lithium","disabled":true},{"id":"neodymium","nodeId":"neodymium","humanReadableId":"Neodymium","label":"Neodymium","disabled":true,"children":[{"id":"neodymium-iron-boron-alloy","nodeId":"neodymium-iron-boron-alloy","humanReadableId":"Neodymium Iron Boron Alloy","label":"Neodymium Iron Boron Alloy","disabled":true}]},{"id":"samarium","nodeId":"samarium","humanReadableId":"Samarium","label":"Samarium","disabled":true,"children":[{"id":"samarium-cobalt-alloy","nodeId":"samarium-cobalt-alloy","humanReadableId":"Samarium Cobalt Alloy","label":"Samarium Cobalt Alloy","disabled":true}]},{"id":"tin","nodeId":"tin","humanReadableId":"Tin","label":"Tin","disabled":true,"children":[{"id":"pure-low-alloyed-tin","nodeId":"pure-low-alloyed-tin","humanReadableId":"Pure/Low Alloyed Tin","label":"Pure/Low Alloyed Tin","disabled":true},{"id":"tin-antimony","nodeId":"tin-antimony","humanReadableId":"Tin Antimony","label":"Tin Antimony","disabled":true},{"id":"tin-lead","nodeId":"tin-lead","humanReadableId":"Tin Lead","label":"Tin Lead","disabled":true},{"id":"unclassified-tin","nodeId":"unclassified-tin","humanReadableId":"Unclassified Tin","label":"Unclassified Tin","disabled":true}]},{"id":"zinc","nodeId":"zinc","humanReadableId":"Zinc","label":"Zinc","disabled":true,"children":[{"id":"unalloyed-zinc","nodeId":"unalloyed-zinc","humanReadableId":"Unalloyed Zinc","label":"Unalloyed Zinc","disabled":true},{"id":"unclassified-zinc","nodeId":"unclassified-zinc","humanReadableId":"Unclassified Zinc","label":"Unclassified Zinc","disabled":true},{"id":"zinc-aluminium","nodeId":"zinc-aluminium","humanReadableId":"Zinc Aluminium","label":"Zinc Aluminium","disabled":true}]}]},{"id":"refractory-metal","nodeId":"refractory-metal","humanReadableId":"Refractory Metal","label":"Refractory Metal","disabled":true,"children":[{"id":"hafnium","nodeId":"hafnium","humanReadableId":"Hafnium","label":"Hafnium","disabled":true},{"id":"molybdenum","nodeId":"molybdenum","humanReadableId":"Molybdenum","label":"Molybdenum","disabled":true},{"id":"niobium","nodeId":"niobium","humanReadableId":"Niobium","label":"Niobium","disabled":true},{"id":"rhenium","nodeId":"rhenium","humanReadableId":"Rhenium","label":"Rhenium","disabled":true},{"id":"tantalum","nodeId":"tantalum","humanReadableId":"Tantalum","label":"Tantalum","disabled":true},{"id":"tungsten","nodeId":"tungsten","humanReadableId":"Tungsten","label":"Tungsten","disabled":true},{"id":"vanadium","nodeId":"vanadium","humanReadableId":"Vanadium","label":"Vanadium","disabled":true},{"id":"zirconium","nodeId":"zirconium","humanReadableId":"Zirconium","label":"Zirconium","disabled":true}]},{"id":"steel","nodeId":"steel","humanReadableId":"Steel","label":"Steel","checked":true,"children":[{"id":"alloy-steel","nodeId":"alloy-steel","humanReadableId":"Alloy Steel","label":"Alloy Steel","checked":true,"children":[{"id":"chromium-molybdenum-steel","nodeId":"chromium-molybdenum-steel","humanReadableId":"Chromium Molybdenum Steel","label":"Chromium Molybdenum Steel","checked":true},{"id":"chromium-molybdenum-vanadium-steel","nodeId":"chromium-molybdenum-vanadium-steel","humanReadableId":"Chromium Molybdenum Vanadium Steel","label":"Chromium Molybdenum Vanadium Steel","checked":true},{"id":"chromium-steel","nodeId":"chromium-steel","humanReadableId":"Chromium Steel","label":"Chromium Steel","checked":true},{"id":"chromium-vanadium-steel","nodeId":"chromium-vanadium-steel","humanReadableId":"Chromium Vanadium Steel","label":"Chromium Vanadium Steel","checked":true},{"id":"manganese-steel","nodeId":"manganese-steel","humanReadableId":"Manganese Steel","label":"Manganese Steel","checked":true},{"id":"molybdenum-steel","nodeId":"molybdenum-steel","humanReadableId":"Molybdenum Steel","label":"Molybdenum Steel","checked":true},{"id":"nickel-chromium-molybdenum-steel","nodeId":"nickel-chromium-molybdenum-steel","humanReadableId":"Nickel Chromium Molybdenum Steel","label":"Nickel Chromium Molybdenum Steel","checked":true},{"id":"nickel-chromium-steel","nodeId":"nickel-chromium-steel","humanReadableId":"Nickel Chromium Steel","label":"Nickel Chromium Steel","checked":true},{"id":"nickel-molybdenum-steel","nodeId":"nickel-molybdenum-steel","humanReadableId":"Nickel Molybdenum Steel","label":"Nickel Molybdenum Steel","checked":true,"disabled":true},{"id":"nickel-steel","nodeId":"nickel-steel","humanReadableId":"Nickel Steel","label":"Nickel Steel","checked":true},{"id":"nitriding-steel","nodeId":"nitriding-steel","humanReadableId":"Nitriding Steel","label":"Nitriding Steel","checked":true},{"id":"silicon-manganese-steel","nodeId":"silicon-manganese-steel","humanReadableId":"Silicon Manganese Steel","label":"Silicon Manganese Steel","checked":true,"disabled":true},{"id":"silicon-steel","nodeId":"silicon-steel","humanReadableId":"Silicon Steel","label":"Silicon Steel","checked":true,"disabled":true},{"id":"unclassified-low-alloy-steel","nodeId":"unclassified-low-alloy-steel","humanReadableId":"Unclassified Low Alloy Steel","label":"Unclassified Low Alloy Steel","checked":true}]},{"id":"carbon-steel","nodeId":"carbon-steel","humanReadableId":"Carbon Steel","label":"Carbon Steel","checked":true,"children":[{"id":"high-carbon-steel","nodeId":"high-carbon-steel","humanReadableId":"High Carbon Steel","label":"High Carbon Steel","checked":true},{"id":"low-carbon-steel","nodeId":"low-carbon-steel","humanReadableId":"Low Carbon Steel","label":"Low Carbon Steel","checked":true},{"id":"medium-carbon-steel","nodeId":"medium-carbon-steel","humanReadableId":"Medium Carbon Steel","label":"Medium Carbon Steel","checked":true},{"id":"unclassified-carbon-steel","nodeId":"unclassified-carbon-steel","humanReadableId":"Unclassified Carbon Steel","label":"Unclassified Carbon Steel","checked":true}]},{"id":"low-alloy-steel","nodeId":"low-alloy-steel","humanReadableId":"Low Alloy Steel","label":"Low Alloy Steel","checked":true,"disabled":true,"children":[{"id":"low-carbon-steel","nodeId":"low-carbon-steel-","humanReadableId":"Low Carbon Steel","label":"Low Carbon Steel","checked":true,"disabled":true}]},{"id":"maraging-steel","nodeId":"maraging-steel","humanReadableId":"Maraging Steel","label":"Maraging Steel","checked":true,"disabled":true},{"id":"stainless-steel","nodeId":"stainless-steel","humanReadableId":"Stainless Steel","label":"Stainless Steel","checked":true,"children":[{"id":"austenitic-stainless-steel","nodeId":"austenitic-stainless-steel","humanReadableId":"Austenitic Stainless Steel","label":"Austenitic Stainless Steel","checked":true},{"id":"duplex-stainless-steel","nodeId":"duplex-stainless-steel","humanReadableId":"Duplex Stainless Steel","label":"Duplex Stainless Steel","checked":true},{"id":"ferritic-stainless-steel","nodeId":"ferritic-stainless-steel","humanReadableId":"Ferritic Stainless Steel","label":"Ferritic Stainless Steel","checked":true},{"id":"martensitic-stainless-steel","nodeId":"martensitic-stainless-steel","humanReadableId":"Martensitic Stainless Steel","label":"Martensitic Stainless Steel","checked":true},{"id":"precipitation-hardening-stainless-steel","nodeId":"precipitation-hardening-stainless-steel","humanReadableId":"Precipitation Hardening Stainless Steel","label":"Precipitation Hardening Stainless Steel","checked":true},{"id":"superaustenitic-stainless-steel","nodeId":"superaustenitic-stainless-steel","humanReadableId":"Superaustenitic Stainless Steel","label":"Superaustenitic Stainless Steel","checked":true},{"id":"unclassified-stainless-steel","nodeId":"unclassified-stainless-steel","humanReadableId":"Unclassified Stainless Steel","label":"Unclassified Stainless Steel","checked":true}]},{"id":"tool-and-machining-steel","nodeId":"tool-and-machining-steel","humanReadableId":"Tool And Machining Steel","label":"Tool And Machining Steel","checked":true}]},{"id":"titanium","nodeId":"titanium","humanReadableId":"Titanium","label":"Titanium","disabled":true,"children":[{"id":"alpha-alloy","nodeId":"alpha-alloy","humanReadableId":"Alpha Alloy","label":"Alpha Alloy","disabled":true},{"id":"alpha-beta-alloy","nodeId":"alpha-beta-alloy","humanReadableId":"Alpha Beta Alloy","label":"Alpha Beta Alloy","disabled":true},{"id":"beta-alloy","nodeId":"beta-alloy","humanReadableId":"Beta Alloy","label":"Beta Alloy","disabled":true},{"id":"low-alloy-titanium","nodeId":"low-alloy-titanium","humanReadableId":"Low Alloy Titanium","label":"Low Alloy Titanium","disabled":true},{"id":"near-alpha-alloy","nodeId":"near-alpha-alloy","humanReadableId":"Near Alpha Alloy","label":"Near Alpha Alloy","disabled":true},{"id":"pure-titanium","nodeId":"pure-titanium","humanReadableId":"Pure Titanium","label":"Pure Titanium","disabled":true}]}]},{"id":"polymer","nodeId":"polymer","humanReadableId":"Polymer","label":"Polymer","disabled":true,"children":[{"id":"elastomer","nodeId":"elastomer","humanReadableId":"Elastomer","label":"Elastomer","disabled":true,"children":[{"id":"butadiene-rubber--br-","nodeId":"butadiene-rubber--br-","humanReadableId":"Butadiene Rubber (BR)","label":"Butadiene Rubber (BR)","disabled":true},{"id":"chloroprene-rubber--cr-","nodeId":"chloroprene-rubber--cr-","humanReadableId":"Chloroprene Rubber (CR)","label":"Chloroprene Rubber (CR)","disabled":true},{"id":"ethylene-propylene-diene-rubber--epdm-","nodeId":"ethylene-propylene-diene-rubber--epdm-","humanReadableId":"Ethylene Propylene Diene Rubber (EPDM)","label":"Ethylene Propylene Diene Rubber (EPDM)","disabled":true},{"id":"ethylene-propylene-rubber--epr-","nodeId":"ethylene-propylene-rubber--epr-","humanReadableId":"Ethylene Propylene Rubber (EPR)","label":"Ethylene Propylene Rubber (EPR)","disabled":true},{"id":"fluorosilicone-rubber--fvmq-","nodeId":"fluorosilicone-rubber--fvmq-","humanReadableId":"Fluorosilicone Rubber (FVMQ)","label":"Fluorosilicone Rubber (FVMQ)","disabled":true},{"id":"natural-rubber--nr-","nodeId":"natural-rubber--nr-","humanReadableId":"Natural Rubber (NR)","label":"Natural Rubber (NR)","disabled":true},{"id":"nitrile-rubber--nbr-","nodeId":"nitrile-rubber--nbr-","humanReadableId":"Nitrile Rubber (NBR)","label":"Nitrile Rubber (NBR)","disabled":true},{"id":"styrene-butadiene-rubber--sbr-","nodeId":"styrene-butadiene-rubber--sbr-","humanReadableId":"Styrene Butadiene Rubber (SBR)","label":"Styrene Butadiene Rubber (SBR)","disabled":true},{"id":"thermoplastic-elastomer--tpe-","nodeId":"thermoplastic-elastomer--tpe-","humanReadableId":"Thermoplastic Elastomer (TPE)","label":"Thermoplastic Elastomer (TPE)","disabled":true,"children":[{"id":"elastomeric-alloy--tpv-","nodeId":"elastomeric-alloy--tpv-","humanReadableId":"Elastomeric Alloy (TPV)","label":"Elastomeric Alloy (TPV)","disabled":true},{"id":"styrene-butadiene-styrene--sbs-","nodeId":"styrene-butadiene-styrene--sbs-","humanReadableId":"Styrene Butadiene Styrene (SBS)","label":"Styrene Butadiene Styrene (SBS)","disabled":true},{"id":"thermoplastic-copolyester--tpc-","nodeId":"thermoplastic-copolyester--tpc-","humanReadableId":"Thermoplastic Copolyester (TPC)","label":"Thermoplastic Copolyester (TPC)","disabled":true},{"id":"thermoplastic-polyamide--tpa-","nodeId":"thermoplastic-polyamide--tpa-","humanReadableId":"Thermoplastic Polyamide (TPA)","label":"Thermoplastic Polyamide (TPA)","disabled":true},{"id":"thermoplastic-polyester-elastomer--tpee-","nodeId":"thermoplastic-polyester-elastomer--tpee-","humanReadableId":"Thermoplastic Polyester Elastomer (TPEE)","label":"Thermoplastic Polyester Elastomer (TPEE)","disabled":true},{"id":"thermoplastic-polyolefin--tpo-","nodeId":"thermoplastic-polyolefin--tpo-","humanReadableId":"Thermoplastic Polyolefin (TPO)","label":"Thermoplastic Polyolefin (TPO)","disabled":true},{"id":"thermoplastic-polyurethane--tpu-","nodeId":"thermoplastic-polyurethane--tpu-","humanReadableId":"Thermoplastic Polyurethane (TPU)","label":"Thermoplastic Polyurethane (TPU)","disabled":true},{"id":"thermoplastic-styrenic-block-copolymer--tps-","nodeId":"thermoplastic-styrenic-block-copolymer--tps-","humanReadableId":"Thermoplastic Styrenic Block Copolymer (TPS)","label":"Thermoplastic Styrenic Block Copolymer (TPS)","disabled":true}]}]},{"id":"thermoplastic","nodeId":"thermoplastic","humanReadableId":"Thermoplastic","label":"Thermoplastic","disabled":true,"children":[{"id":"acrylic","nodeId":"acrylic","humanReadableId":"Acrylic","label":"Acrylic","disabled":true,"children":[{"id":"polyacrylonitrile--pan-","nodeId":"polyacrylonitrile--pan-","humanReadableId":"Polyacrylonitrile (PAN)","label":"Polyacrylonitrile (PAN)","disabled":true},{"id":"polymethyl-methacrylate--pmma-","nodeId":"polymethyl-methacrylate--pmma-","humanReadableId":"Polymethyl methacrylate (PMMA)","label":"Polymethyl methacrylate (PMMA)","disabled":true}]},{"id":"fluoropolymer","nodeId":"fluoropolymer","humanReadableId":"Fluoropolymer","label":"Fluoropolymer","disabled":true,"children":[{"id":"ethylene-tetrafluoroethylene-copolymer--etfe-","nodeId":"ethylene-tetrafluoroethylene-copolymer--etfe-","humanReadableId":"Ethylene Tetrafluoroethylene Copolymer (ETFE)","label":"Ethylene Tetrafluoroethylene Copolymer (ETFE)","disabled":true},{"id":"fluorinated-ethylene-propylene--fep-","nodeId":"fluorinated-ethylene-propylene--fep-","humanReadableId":"Fluorinated ethylene propylene (FEP)","label":"Fluorinated ethylene propylene (FEP)","disabled":true},{"id":"polytetrafluoroethylene--ptfe-","nodeId":"polytetrafluoroethylene--ptfe-","humanReadableId":"Polytetrafluoroethylene (PTFE)","label":"Polytetrafluoroethylene (PTFE)","disabled":true},{"id":"polyvinylidenefluoride--pvdf-","nodeId":"polyvinylidenefluoride--pvdf-","humanReadableId":"Polyvinylidenefluoride (PVDF)","label":"Polyvinylidenefluoride (PVDF)","disabled":true}]},{"id":"liquid-crystal-polymers--lcp-","nodeId":"liquid-crystal-polymers--lcp-","humanReadableId":"Liquid Crystal Polymers (LCP)","label":"Liquid Crystal Polymers (LCP)","disabled":true},{"id":"polyamide--pa-","nodeId":"polyamide--pa-","humanReadableId":"Polyamide (PA)","label":"Polyamide (PA)","disabled":true,"children":[{"id":"aramide","nodeId":"aramide","humanReadableId":"Aramide","label":"Aramide","disabled":true},{"id":"copolyamide-6-66--pa6-66-","nodeId":"copolyamide-6-66--pa6-66-","humanReadableId":"Copolyamide 6/66 (PA6/66)","label":"Copolyamide 6/66 (PA6/66)","disabled":true},{"id":"other-polyamide--pa-","nodeId":"other-polyamide--pa-","humanReadableId":"Other Polyamide (PA)","label":"Other Polyamide (PA)","disabled":true},{"id":"polyamide-1010--pa1010-","nodeId":"polyamide-1010--pa1010-","humanReadableId":"Polyamide 1010 (PA1010)","label":"Polyamide 1010 (PA1010)","disabled":true},{"id":"polyamide-1012--pa1012-","nodeId":"polyamide-1012--pa1012-","humanReadableId":"Polyamide 1012 (PA1012)","label":"Polyamide 1012 (PA1012)","disabled":true},{"id":"polyamide-11--pa11-","nodeId":"polyamide-11--pa11-","humanReadableId":"Polyamide 11 (PA11)","label":"Polyamide 11 (PA11)","disabled":true},{"id":"polyamide-12--pa12-","nodeId":"polyamide-12--pa12-","humanReadableId":"Polyamide 12 (PA12)","label":"Polyamide 12 (PA12)","disabled":true},{"id":"polyamide-410--pa410-","nodeId":"polyamide-410--pa410-","humanReadableId":"Polyamide 410 (PA410)","label":"Polyamide 410 (PA410)","disabled":true},{"id":"polyamide-46--pa46-","nodeId":"polyamide-46--pa46-","humanReadableId":"Polyamide 46 (PA46)","label":"Polyamide 46 (PA46)","disabled":true},{"id":"polyamide-6--pa6-","nodeId":"polyamide-6--pa6-","humanReadableId":"Polyamide 6 (PA6)","label":"Polyamide 6 (PA6)","disabled":true,"children":[{"id":"polyamide-4t--pa4t-","nodeId":"polyamide-4t--pa4t-","humanReadableId":"Polyamide 4T (PA4T)","label":"Polyamide 4T (PA4T)","disabled":true}]},{"id":"polyamide-6-66--pa6-66-","nodeId":"polyamide-6-66--pa6-66-","humanReadableId":"Polyamide 6/66 (PA6/66)","label":"Polyamide 6/66 (PA6/66)","disabled":true},{"id":"polyamide-610--pa610-","nodeId":"polyamide-610--pa610-","humanReadableId":"Polyamide 610 (PA610)","label":"Polyamide 610 (PA610)","disabled":true},{"id":"polyamide-612--pa612-","nodeId":"polyamide-612--pa612-","humanReadableId":"Polyamide 612 (PA612)","label":"Polyamide 612 (PA612)","disabled":true},{"id":"polyamide-66--pa66-","nodeId":"polyamide-66--pa66-","humanReadableId":"Polyamide 66 (PA66)","label":"Polyamide 66 (PA66)","disabled":true},{"id":"polyphthalamide--ppa-","nodeId":"polyphthalamide--ppa-","humanReadableId":"Polyphthalamide (PPA)","label":"Polyphthalamide (PPA)","disabled":true,"children":[{"id":"copolyamide-66-6i--pa66-6i-","nodeId":"copolyamide-66-6i--pa66-6i-","humanReadableId":"Copolyamide 66/6I (PA66/6I)","label":"Copolyamide 66/6I (PA66/6I)","disabled":true},{"id":"copolyamide-6t-66--pa6t-66-","nodeId":"copolyamide-6t-66--pa6t-66-","humanReadableId":"Copolyamide 6T/66 (PA6T/66)","label":"Copolyamide 6T/66 (PA6T/66)","disabled":true},{"id":"copolyamide-6t-6i-66--pa6t-6i-66-","nodeId":"copolyamide-6t-6i-66--pa6t-6i-66-","humanReadableId":"Copolyamide 6T/6I/66 (PA6T/6I/66)","label":"Copolyamide 6T/6I/66 (PA6T/6I/66)","disabled":true},{"id":"copolyamide-pa6i-6t--pa6i-6t-","nodeId":"copolyamide-pa6i-6t--pa6i-6t-","humanReadableId":"Copolyamide PA6I/6T (PA6I/6T)","label":"Copolyamide PA6I/6T (PA6I/6T)","disabled":true},{"id":"polyamide-4t--pa4t-","nodeId":"polyamide-4t--pa4t--","humanReadableId":"Polyamide 4T (PA4T)","label":"Polyamide 4T (PA4T)","disabled":true},{"id":"polyamide-6t--pa6t-","nodeId":"polyamide-6t--pa6t-","humanReadableId":"Polyamide 6T (PA6T)","label":"Polyamide 6T (PA6T)","disabled":true},{"id":"polyamide-mxd6--pamxd6-","nodeId":"polyamide-mxd6--pamxd6-","humanReadableId":"Polyamide MXD6 (PAMXD6)","label":"Polyamide MXD6 (PAMXD6)","disabled":true},{"id":"polyamide-pa6-6t--pa6-6t-","nodeId":"polyamide-pa6-6t--pa6-6t-","humanReadableId":"Polyamide PA6/6T (PA6/6T)","label":"Polyamide PA6/6T (PA6/6T)","disabled":true}]}]},{"id":"polyaryletherketone--paek-","nodeId":"polyaryletherketone--paek-","humanReadableId":"Polyaryletherketone (PAEK)","label":"Polyaryletherketone (PAEK)","disabled":true,"children":[{"id":"polyether-ketone--pek-","nodeId":"polyether-ketone--pek-","humanReadableId":"Polyether Ketone (PEK)","label":"Polyether Ketone (PEK)","disabled":true},{"id":"polyetherether-ketone--peek-","nodeId":"polyetherether-ketone--peek-","humanReadableId":"Polyetherether Ketone (PEEK)","label":"Polyetherether Ketone (PEEK)","disabled":true},{"id":"polyetherketoneketone--pekk-","nodeId":"polyetherketoneketone--pekk-","humanReadableId":"Polyetherketoneketone (PEKK)","label":"Polyetherketoneketone (PEKK)","disabled":true}]},{"id":"polycarbonate--pc-","nodeId":"polycarbonate--pc-","humanReadableId":"Polycarbonate (PC)","label":"Polycarbonate (PC)","disabled":true},{"id":"polyester","nodeId":"polyester","humanReadableId":"Polyester","label":"Polyester","disabled":true,"children":[{"id":"polybutylene-terephthalate--pbt-","nodeId":"polybutylene-terephthalate--pbt-","humanReadableId":"Polybutylene Terephthalate (PBT)","label":"Polybutylene Terephthalate (PBT)","disabled":true},{"id":"polyethylene-terephthalate--pet-","nodeId":"polyethylene-terephthalate--pet-","humanReadableId":"Polyethylene Terephthalate (PET)","label":"Polyethylene Terephthalate (PET)","disabled":true},{"id":"polyethylene-terephthalate-glycol--petg-","nodeId":"polyethylene-terephthalate-glycol--petg-","humanReadableId":"Polyethylene Terephthalate Glycol (PETG)","label":"Polyethylene Terephthalate Glycol (PETG)","disabled":true},{"id":"polyglycolicide--pga-","nodeId":"polyglycolicide--pga-","humanReadableId":"Polyglycolicide (PGA)","label":"Polyglycolicide (PGA)","disabled":true},{"id":"polytrimethylene-terephthalate--ptt-","nodeId":"polytrimethylene-terephthalate--ptt-","humanReadableId":"Polytrimethylene Terephthalate (PTT)","label":"Polytrimethylene Terephthalate (PTT)","disabled":true}]},{"id":"polyethylene--pe-","nodeId":"polyethylene--pe-","humanReadableId":"Polyethylene (PE)","label":"Polyethylene (PE)","disabled":true},{"id":"polyimide--pi-","nodeId":"polyimide--pi-","humanReadableId":"Polyimide (PI)","label":"Polyimide (PI)","disabled":true,"children":[{"id":"polyamidimide--pai-","nodeId":"polyamidimide--pai-","humanReadableId":"Polyamidimide (PAI)","label":"Polyamidimide (PAI)","disabled":true},{"id":"polybenzimidazole--pbi-","nodeId":"polybenzimidazole--pbi-","humanReadableId":"Polybenzimidazole (PBI)","label":"Polybenzimidazole (PBI)","disabled":true},{"id":"polyetherimide--pei-","nodeId":"polyetherimide--pei-","humanReadableId":"Polyetherimide (PEI)","label":"Polyetherimide (PEI)","disabled":true}]},{"id":"polyketone--pk-","nodeId":"polyketone--pk-","humanReadableId":"Polyketone (PK)","label":"Polyketone (PK)","disabled":true},{"id":"polylactic-acid--pla-","nodeId":"polylactic-acid--pla-","humanReadableId":"Polylactic Acid (PLA)","label":"Polylactic Acid (PLA)","disabled":true},{"id":"polymer-blend","nodeId":"polymer-blend","humanReadableId":"Polymer Blend","label":"Polymer Blend","disabled":true},{"id":"polyolefin--po-","nodeId":"polyolefin--po-","humanReadableId":"Polyolefin (PO)","label":"Polyolefin (PO)","disabled":true,"children":[{"id":"polybutene--pb-","nodeId":"polybutene--pb-","humanReadableId":"Polybutene (PB)","label":"Polybutene (PB)","disabled":true},{"id":"polyethylene--pe-","nodeId":"polyethylene--pe--","humanReadableId":"Polyethylene (PE)","label":"Polyethylene (PE)","disabled":true,"children":[{"id":"high-density-polyethylene--pe-hd-","nodeId":"high-density-polyethylene--pe-hd-","humanReadableId":"High Density Polyethylene (PE-HD)","label":"High Density Polyethylene (PE-HD)","disabled":true},{"id":"high-molecular-weight-polyethylene--pe-hmw-","nodeId":"high-molecular-weight-polyethylene--pe-hmw-","humanReadableId":"High Molecular Weight Polyethylene (PE-HMW)","label":"High Molecular Weight Polyethylene (PE-HMW)","disabled":true},{"id":"linear-low-density-polyethylene--pe-lld-","nodeId":"linear-low-density-polyethylene--pe-lld-","humanReadableId":"Linear Low Density Polyethylene (PE-LLD)","label":"Linear Low Density Polyethylene (PE-LLD)","disabled":true},{"id":"low-density-polyethylene--pe-ld-","nodeId":"low-density-polyethylene--pe-ld-","humanReadableId":"Low Density Polyethylene (PE-LD)","label":"Low Density Polyethylene (PE-LD)","disabled":true},{"id":"medium-density-polyethylene--pe-md-","nodeId":"medium-density-polyethylene--pe-md-","humanReadableId":"Medium Density Polyethylene (PE-MD)","label":"Medium Density Polyethylene (PE-MD)","disabled":true},{"id":"ultra-high-molecular-weight-polyethylene--pe-uhmw-","nodeId":"ultra-high-molecular-weight-polyethylene--pe-uhmw-","humanReadableId":"Ultra High Molecular Weight Polyethylene (PE-UHMW)","label":"Ultra High Molecular Weight Polyethylene (PE-UHMW)","disabled":true},{"id":"very-low-density-polyethylene--pe-vld-","nodeId":"very-low-density-polyethylene--pe-vld-","humanReadableId":"Very Low Density Polyethylene (PE-VLD)","label":"Very Low Density Polyethylene (PE-VLD)","disabled":true}]},{"id":"polymethylpentene--pmp-","nodeId":"polymethylpentene--pmp-","humanReadableId":"Polymethylpentene (PMP)","label":"Polymethylpentene (PMP)","disabled":true},{"id":"polypropylene--pp-","nodeId":"polypropylene--pp-","humanReadableId":"Polypropylene (PP)","label":"Polypropylene (PP)","disabled":true}]},{"id":"polyoxymethylene--pom-","nodeId":"polyoxymethylene--pom-","humanReadableId":"Polyoxymethylene (POM)","label":"Polyoxymethylene (POM)","disabled":true},{"id":"polyphenyl","nodeId":"polyphenyl","humanReadableId":"Polyphenyl","label":"Polyphenyl","disabled":true,"children":[{"id":"polyphenyl-ether--ppe-","nodeId":"polyphenyl-ether--ppe-","humanReadableId":"Polyphenyl Ether (PPE)","label":"Polyphenyl Ether (PPE)","disabled":true},{"id":"polyphenylene-oxide--ppo-","nodeId":"polyphenylene-oxide--ppo-","humanReadableId":"Polyphenylene Oxide (PPO)","label":"Polyphenylene Oxide (PPO)","disabled":true},{"id":"polyphenylene-sulfide--pps-","nodeId":"polyphenylene-sulfide--pps-","humanReadableId":"Polyphenylene Sulfide (PPS)","label":"Polyphenylene Sulfide (PPS)","disabled":true}]},{"id":"polysaccharide","nodeId":"polysaccharide","humanReadableId":"Polysaccharide","label":"Polysaccharide","disabled":true},{"id":"polysulphones","nodeId":"polysulphones","humanReadableId":"Polysulphones","label":"Polysulphones","disabled":true,"children":[{"id":"polyether-sulfone--pes-","nodeId":"polyether-sulfone--pes-","humanReadableId":"Polyether Sulfone (PES)","label":"Polyether Sulfone (PES)","disabled":true},{"id":"polyphenylsulphone--ppsu-","nodeId":"polyphenylsulphone--ppsu-","humanReadableId":"Polyphenylsulphone (PPSU)","label":"Polyphenylsulphone (PPSU)","disabled":true},{"id":"polysulphone--psu-","nodeId":"polysulphone--psu-","humanReadableId":"Polysulphone (PSU)","label":"Polysulphone (PSU)","disabled":true},{"id":"polysulphone-general--psu-","nodeId":"polysulphone-general--psu-","humanReadableId":"Polysulphone General (PSU)","label":"Polysulphone General (PSU)","disabled":true}]},{"id":"styrene","nodeId":"styrene","humanReadableId":"Styrene","label":"Styrene","disabled":true,"children":[{"id":"acrylonitrile-butadiene-styrene--abs-","nodeId":"acrylonitrile-butadiene-styrene--abs-","humanReadableId":"Acrylonitrile Butadiene Styrene (ABS)","label":"Acrylonitrile Butadiene Styrene (ABS)","disabled":true},{"id":"acrylonitrile-styrene-acrylate--asa-","nodeId":"acrylonitrile-styrene-acrylate--asa-","humanReadableId":"Acrylonitrile Styrene Acrylate (ASA)","label":"Acrylonitrile Styrene Acrylate (ASA)","disabled":true},{"id":"high-impact-polystyrene--hips-","nodeId":"high-impact-polystyrene--hips-","humanReadableId":"High Impact Polystyrene (HIPS)","label":"High Impact Polystyrene (HIPS)","disabled":true},{"id":"methacrylate-butadiene-styrene--mbs-","nodeId":"methacrylate-butadiene-styrene--mbs-","humanReadableId":"Methacrylate Butadiene Styrene (MBS)","label":"Methacrylate Butadiene Styrene (MBS)","disabled":true},{"id":"polystyrene--ps-","nodeId":"polystyrene--ps-","humanReadableId":"Polystyrene (PS)","label":"Polystyrene (PS)","disabled":true},{"id":"styrene-acrylonitrile--san-","nodeId":"styrene-acrylonitrile--san-","humanReadableId":"Styrene Acrylonitrile (SAN)","label":"Styrene Acrylonitrile (SAN)","disabled":true}]},{"id":"vinyl","nodeId":"vinyl","humanReadableId":"Vinyl","label":"Vinyl","disabled":true,"children":[{"id":"ethylene-vinyl-acetate--evac-","nodeId":"ethylene-vinyl-acetate--evac-","humanReadableId":"Ethylene Vinyl Acetate (EVAC)","label":"Ethylene Vinyl Acetate (EVAC)","disabled":true},{"id":"polyvinyl-chloride--pvc-","nodeId":"polyvinyl-chloride--pvc-","humanReadableId":"Polyvinyl Chloride (PVC)","label":"Polyvinyl Chloride (PVC)","disabled":true}]}]},{"id":"thermosetting","nodeId":"thermosetting","humanReadableId":"Thermosetting","label":"Thermosetting","disabled":true,"children":[{"id":"amino-resin","nodeId":"amino-resin","humanReadableId":"Amino Resin","label":"Amino Resin","disabled":true,"children":[{"id":"bismaleimide--bmi-","nodeId":"bismaleimide--bmi-","humanReadableId":"Bismaleimide (BMI)","label":"Bismaleimide (BMI)","disabled":true},{"id":"melamine-formaldehyde--mf-","nodeId":"melamine-formaldehyde--mf-","humanReadableId":"Melamine formaldehyde (MF)","label":"Melamine formaldehyde (MF)","disabled":true}]},{"id":"epoxy-resin--ep-","nodeId":"epoxy-resin--ep-","humanReadableId":"Epoxy Resin (EP)","label":"Epoxy Resin (EP)","disabled":true},{"id":"phenol-formaldehyde-resin--pf-","nodeId":"phenol-formaldehyde-resin--pf-","humanReadableId":"Phenol Formaldehyde Resin (PF)","label":"Phenol Formaldehyde Resin (PF)","disabled":true},{"id":"phthalonitrile--pn-","nodeId":"phthalonitrile--pn-","humanReadableId":"Phthalonitrile (PN)","label":"Phthalonitrile (PN)","disabled":true},{"id":"polyester-resin--up-","nodeId":"polyester-resin--up-","humanReadableId":"Polyester Resin (UP)","label":"Polyester Resin (UP)","disabled":true},{"id":"vinyl-ester-resin--ve-","nodeId":"vinyl-ester-resin--ve-","humanReadableId":"Vinyl Ester Resin (VE)","label":"Vinyl Ester Resin (VE)","disabled":true}]}]}],"propertySections":[],"suppliers":[{"id":"dest","label":"Deutsche Edelstahlwerke (DEW)","materialsCount":93},{"id":"ugit","label":"Ugitech","materialsCount":50},{"id":"sver","label":"Sverdrup Steel AS","materialsCount":20},{"id":"salo","label":"Salomon's Metalen","materialsCount":16},{"id":"hemp","label":"Hempel Special Metals","materialsCount":4},{"id":"vdmm","label":"VDM Metals","materialsCount":1},{"id":"song","label":"Dongguan songshun mould steel Co., Ltd.","materialsCount":13},{"id":"ambi","label":"Ambica Steels Limited","materialsCount":10}],"supplierMaterialsOnly":false,"text":"","results":{"materials":{"data":[{"id":"DESTB19","label":"Acidur 4529","url":"/materials/destb19-acidur-4529","category":{"id":"superaustenitic-stainless-steel","label":"Superaustenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS11","label":"Acidur 4401 +AT ","url":"/materials/dests11-acidur-4401-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS12","label":"Acidur 4435 +AT ","url":"/materials/dests12-acidur-4435-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS13","label":"Acidur 4541 +AT ","url":"/materials/dests13-acidur-4541-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS14","label":"Acidur 4571 +AT ","url":"/materials/dests14-acidur-4571-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS11A","label":"Acidur 4404 +AT ","url":"/materials/dests11a-acidur-4404-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS9","label":"Acidur 4301 +AT ","url":"/materials/dests9-acidur-4301-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS9A","label":"Acidur 4307 +AT ","url":"/materials/dests9a-acidur-4307-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS10","label":"Acidur 4305 +AT ","url":"/materials/dests10-acidur-4305-at-","category":{"id":"austenitic-stainless-steel","label":"Austenitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"VDMM023","label":"VDM® Alloy 926","url":"/materials/vdmm023-vdm-alloy-926","category":{"id":"superaustenitic-stainless-steel","label":"Superaustenitic Stainless Steel"},"supplier":{"id":"VDMM","label":"VDM Metals","url":"/suppliers/vdmm-vdm-metals"}},{"id":"DESTS7","label":"Acidur 4418 QT900 ","url":"/materials/dests7-acidur-4418-qt900-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS15","label":"Acidur 4462 +AT ","url":"/materials/dests15-acidur-4462-at-","category":{"id":"duplex-stainless-steel","label":"Duplex Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS7A","label":"Acidur 4418 QT760 ","url":"/materials/dests7a-acidur-4418-qt760-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"UGIT0076","label":"UGIMA® 4460 Cold Finished","url":"/materials/ugit0076-ugima-4460-cold-finished","category":{"id":"duplex-stainless-steel","label":"Duplex Stainless Steel"},"supplier":{"id":"UGIT","label":"Ugitech","url":"/suppliers/ugit-ugitech"}},{"id":"UGIT0077","label":"UGIMA® 4460 Cold Finished and Drawn","url":"/materials/ugit0077-ugima-4460-cold-finished-and-drawn","category":{"id":"duplex-stainless-steel","label":"Duplex Stainless Steel"},"supplier":{"id":"UGIT","label":"Ugitech","url":"/suppliers/ugit-ugitech"}},{"id":"UGIT0129","label":"UGI® 4545 AIR H1025","url":"/materials/ugit0129-ugi-4545-air-h1025","category":{"id":"precipitation-hardening-stainless-steel","label":"Precipitation Hardening Stainless Steel"},"supplier":{"id":"UGIT","label":"Ugitech","url":"/suppliers/ugit-ugitech"}},{"id":"DESTS1","label":"Corrodur 4021 QT800 ","url":"/materials/dests1-corrodur-4021-qt800-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS3","label":"Corrodur 4034 Annealed ","url":"/materials/dests3-corrodur-4034-annealed-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS4","label":"Acidur 4057 QT800 ","url":"/materials/dests4-acidur-4057-qt800-","category":{"id":"martensitic-stainless-steel","label":"Martensitic Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}},{"id":"DESTS8","label":"Acidur 4542 P800 ","url":"/materials/dests8-acidur-4542-p800-","category":{"id":"precipitation-hardening-stainless-steel","label":"Precipitation Hardening Stainless Steel"},"supplier":{"id":"DEST","label":"Deutsche Edelstahlwerke (DEW)","url":"/suppliers/dest-deutsche-edelstahlwerke-dew-"}}],"materialsCount":2214,"page":1}},"alerts":["advanced-search-alert-compare-hint"],"context":{"unitsSystem":"metric","categories":[{"id":"biological-material","nodeId":"biological-material","humanReadableId":"Biological Material","label":"Biological Material","disabled":true,"children":[{"id":"wood","nodeId":"wood","humanReadableId":"Wood","label":"Wood","disabled":true,"ancestors":["biological-material"],"rootNode":"biological-material"}],"rootNode":"biological-material","childrenNr":1,"checked":false},{"id":"ceramic","nodeId":"ceramic","humanReadableId":"Ceramic","label":"Ceramic","disabled":true,"children":[{"id":"carbon","nodeId":"carbon","humanReadableId":"Carbon","label":"Carbon","disabled":true,"children":[{"id":"carbon-nanotube","nodeId":"carbon-nanotube","humanReadableId":"Carbon Nanotube","label":"Carbon Nanotube","disabled":true,"ancestors":["ceramic","carbon"],"rootNode":"ceramic"},{"id":"diamond","nodeId":"diamond","humanReadableId":"Diamond","label":"Diamond","disabled":true,"children":[{"id":"natural-diamond","nodeId":"natural-diamond","humanReadableId":"Natural Diamond","label":"Natural Diamond","disabled":true,"ancestors":["ceramic","carbon","diamond"],"rootNode":"ceramic"},{"id":"synthetic-diamond","nodeId":"synthetic-diamond","humanReadableId":"Synthetic Diamond","label":"Synthetic Diamond","disabled":true,"ancestors":["ceramic","carbon","diamond"],"rootNode":"ceramic"}],"ancestors":["ceramic","carbon"],"rootNode":"ceramic","childrenNr":2},{"id":"graphene","nodeId":"graphene","humanReadableId":"Graphene","label":"Graphene","disabled":true,"ancestors":["ceramic","carbon"],"rootNode":"ceramic"},{"id":"graphite","nodeId":"graphite","humanReadableId":"Graphite","label":"Graphite","disabled":true,"ancestors":["ceramic","carbon"],"rootNode":"ceramic"}],"ancestors":["ceramic"],"rootNode":"ceramic","childrenNr":4},{"id":"engineering-ceramic","nodeId":"engineering-ceramic","humanReadableId":"Engineering Ceramic","label":"Engineering Ceramic","disabled":true,"children":[{"id":"non-oxide-based","nodeId":"non-oxide-based","humanReadableId":"Non Oxide Based","label":"Non Oxide Based","disabled":true,"children":[{"id":"boride-based","nodeId":"boride-based","humanReadableId":"Boride Based","label":"Boride Based","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based"],"rootNode":"ceramic"},{"id":"carbide-based","nodeId":"carbide-based","humanReadableId":"Carbide Based","label":"Carbide Based","disabled":true,"children":[{"id":"boron-carbide","nodeId":"boron-carbide","humanReadableId":"Boron Carbide","label":"Boron Carbide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","carbide-based"],"rootNode":"ceramic"},{"id":"silicon-carbide","nodeId":"silicon-carbide","humanReadableId":"Silicon Carbide","label":"Silicon Carbide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","carbide-based"],"rootNode":"ceramic"},{"id":"tantalum-carbide","nodeId":"tantalum-carbide","humanReadableId":"Tantalum Carbide","label":"Tantalum Carbide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","carbide-based"],"rootNode":"ceramic"},{"id":"titanium-carbide","nodeId":"titanium-carbide","humanReadableId":"Titanium Carbide","label":"Titanium Carbide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","carbide-based"],"rootNode":"ceramic"},{"id":"tungsten-carbide","nodeId":"tungsten-carbide","humanReadableId":"Tungsten Carbide","label":"Tungsten Carbide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","carbide-based"],"rootNode":"ceramic"},{"id":"zirconium-carbide","nodeId":"zirconium-carbide","humanReadableId":"Zirconium Carbide","label":"Zirconium Carbide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","carbide-based"],"rootNode":"ceramic"}],"ancestors":["ceramic","engineering-ceramic","non-oxide-based"],"rootNode":"ceramic","childrenNr":6},{"id":"nitride-based","nodeId":"nitride-based","humanReadableId":"Nitride Based","label":"Nitride Based","disabled":true,"children":[{"id":"aluminium-nitirde","nodeId":"aluminium-nitirde","humanReadableId":"Aluminium Nitirde","label":"Aluminium Nitirde","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","nitride-based"],"rootNode":"ceramic"},{"id":"boron-nitride","nodeId":"boron-nitride","humanReadableId":"Boron Nitride","label":"Boron Nitride","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","nitride-based"],"rootNode":"ceramic"},{"id":"silicon-nitride","nodeId":"silicon-nitride","humanReadableId":"Silicon Nitride","label":"Silicon Nitride","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","nitride-based"],"rootNode":"ceramic"},{"id":"titanium-nitride","nodeId":"titanium-nitride","humanReadableId":"Titanium Nitride","label":"Titanium Nitride","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","nitride-based"],"rootNode":"ceramic"}],"ancestors":["ceramic","engineering-ceramic","non-oxide-based"],"rootNode":"ceramic","childrenNr":4},{"id":"silicate-based","nodeId":"silicate-based","humanReadableId":"Silicate Based","label":"Silicate Based","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based"],"rootNode":"ceramic"},{"id":"sulfide-based","nodeId":"sulfide-based","humanReadableId":"Sulfide Based","label":"Sulfide Based","disabled":true,"children":[{"id":"bismuth-sulfide","nodeId":"bismuth-sulfide","humanReadableId":"Bismuth Sulfide","label":"Bismuth Sulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"},{"id":"copper-sulfide","nodeId":"copper-sulfide","humanReadableId":"Copper Sulfide","label":"Copper Sulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"},{"id":"iron-sulfide","nodeId":"iron-sulfide","humanReadableId":"Iron Sulfide","label":"Iron Sulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"},{"id":"manganese-sulfide","nodeId":"manganese-sulfide","humanReadableId":"Manganese Sulfide","label":"Manganese Sulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"},{"id":"molybdenum-disulfide","nodeId":"molybdenum-disulfide","humanReadableId":"Molybdenum Disulfide","label":"Molybdenum Disulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"},{"id":"multiphase-metal-sulfide","nodeId":"multiphase-metal-sulfide","humanReadableId":"Multiphase Metal Sulfide","label":"Multiphase Metal Sulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"},{"id":"tin-sulfide","nodeId":"tin-sulfide","humanReadableId":"Tin Sulfide","label":"Tin Sulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"},{"id":"tungsten-disulfide","nodeId":"tungsten-disulfide","humanReadableId":"Tungsten Disulfide","label":"Tungsten Disulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"},{"id":"zinc-sulfide","nodeId":"zinc-sulfide","humanReadableId":"Zinc Sulfide","label":"Zinc Sulfide","disabled":true,"ancestors":["ceramic","engineering-ceramic","non-oxide-based","sulfide-based"],"rootNode":"ceramic"}],"ancestors":["ceramic","engineering-ceramic","non-oxide-based"],"rootNode":"ceramic","childrenNr":9}],"ancestors":["ceramic","engineering-ceramic"],"rootNode":"ceramic","childrenNr":5},{"id":"oxide-based","nodeId":"oxide-based","humanReadableId":"Oxide Based","label":"Oxide Based","disabled":true,"children":[{"id":"advanced-ceramic-oxides","nodeId":"advanced-ceramic-oxides","humanReadableId":"Advanced Ceramic Oxides","label":"Advanced Ceramic Oxides","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based"],"rootNode":"ceramic"},{"id":"aluminium-oxide","nodeId":"aluminium-oxide","humanReadableId":"Aluminium Oxide","label":"Aluminium Oxide","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based"],"rootNode":"ceramic"},{"id":"beryllium-oxide","nodeId":"beryllium-oxide","humanReadableId":"Beryllium Oxide","label":"Beryllium Oxide","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based"],"rootNode":"ceramic"},{"id":"ferrite","nodeId":"ferrite","humanReadableId":"Ferrite","label":"Ferrite","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based"],"rootNode":"ceramic"},{"id":"silicon-oxide","nodeId":"silicon-oxide","humanReadableId":"Silicon Oxide","label":"Silicon Oxide","disabled":true,"children":[{"id":"aluminium-silicate","nodeId":"aluminium-silicate","humanReadableId":"Aluminium Silicate","label":"Aluminium Silicate","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based","silicon-oxide"],"rootNode":"ceramic"},{"id":"magnesium-silicate","nodeId":"magnesium-silicate","humanReadableId":"Magnesium Silicate","label":"Magnesium Silicate","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based","silicon-oxide"],"rootNode":"ceramic"},{"id":"zirconium-silicate","nodeId":"zirconium-silicate","humanReadableId":"Zirconium Silicate","label":"Zirconium Silicate","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based","silicon-oxide"],"rootNode":"ceramic"}],"ancestors":["ceramic","engineering-ceramic","oxide-based"],"rootNode":"ceramic","childrenNr":3},{"id":"titanium-oxide","nodeId":"titanium-oxide","humanReadableId":"Titanium Oxide","label":"Titanium Oxide","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based"],"rootNode":"ceramic"},{"id":"zirconium-oxide","nodeId":"zirconium-oxide","humanReadableId":"Zirconium Oxide","label":"Zirconium Oxide","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based"],"rootNode":"ceramic"}],"ancestors":["ceramic","engineering-ceramic"],"rootNode":"ceramic","childrenNr":7},{"id":"oxide-based-ceramic-matrix-composite","nodeId":"oxide-based-ceramic-matrix-composite","humanReadableId":"Oxide Based Ceramic Matrix Composite","label":"Oxide Based Ceramic Matrix Composite","disabled":true,"children":[{"id":"multi-oxide-ceramics","nodeId":"multi-oxide-ceramics","humanReadableId":"Multi-Oxide Ceramics","label":"Multi-Oxide Ceramics","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based-ceramic-matrix-composite"],"rootNode":"ceramic"},{"id":"silicon-oxide","nodeId":"silicon-oxide-","humanReadableId":"Silicon Oxide","label":"Silicon Oxide","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based-ceramic-matrix-composite"],"rootNode":"ceramic"},{"id":"ytterbium-oxide","nodeId":"ytterbium-oxide","humanReadableId":"Ytterbium Oxide","label":"Ytterbium Oxide","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based-ceramic-matrix-composite"],"rootNode":"ceramic"},{"id":"yttrium-oxide","nodeId":"yttrium-oxide","humanReadableId":"Yttrium Oxide","label":"Yttrium Oxide","disabled":true,"ancestors":["ceramic","engineering-ceramic","oxide-based-ceramic-matrix-composite"],"rootNode":"ceramic"}],"ancestors":["ceramic","engineering-ceramic"],"rootNode":"ceramic","childrenNr":4}],"ancestors":["ceramic"],"rootNode":"ceramic","childrenNr":3},{"id":"natural-ceramic","nodeId":"natural-ceramic","humanReadableId":"Natural Ceramic","label":"Natural Ceramic","disabled":true,"ancestors":["ceramic"],"rootNode":"ceramic"}],"rootNode":"ceramic","childrenNr":3,"checked":false},{"id":"composite","nodeId":"composite","humanReadableId":"Composite","label":"Composite","disabled":true,"children":[{"id":"ceramic-matrix-composite","nodeId":"ceramic-matrix-composite","humanReadableId":"Ceramic Matrix Composite","label":"Ceramic Matrix Composite","disabled":true,"children":[{"id":"carbide-based-ceramic-matrix-composite","nodeId":"carbide-based-ceramic-matrix-composite","humanReadableId":"Carbide Based Ceramic Matrix Composite","label":"Carbide Based Ceramic Matrix Composite","disabled":true,"ancestors":["composite","ceramic-matrix-composite"],"rootNode":"composite"},{"id":"oxide-based-ceramic-matrix-composite","nodeId":"oxide-based-ceramic-matrix-composite-","humanReadableId":"Oxide Based Ceramic Matrix Composite","label":"Oxide Based Ceramic Matrix Composite","disabled":true,"ancestors":["composite","ceramic-matrix-composite"],"rootNode":"composite"}],"ancestors":["composite"],"rootNode":"composite","childrenNr":2},{"id":"metal-matrix-composite","nodeId":"metal-matrix-composite","humanReadableId":"Metal Matrix Composite","label":"Metal Matrix Composite","disabled":true,"children":[{"id":"aluminium-matrix-composite","nodeId":"aluminium-matrix-composite","humanReadableId":"Aluminium Matrix Composite","label":"Aluminium Matrix Composite","disabled":true,"ancestors":["composite","metal-matrix-composite"],"rootNode":"composite"},{"id":"beryllium-matrix-composite","nodeId":"beryllium-matrix-composite","humanReadableId":"Beryllium Matrix Composite","label":"Beryllium Matrix Composite","disabled":true,"ancestors":["composite","metal-matrix-composite"],"rootNode":"composite"},{"id":"cobalt-matrix-composite","nodeId":"cobalt-matrix-composite","humanReadableId":"Cobalt Matrix Composite","label":"Cobalt Matrix Composite","disabled":true,"ancestors":["composite","metal-matrix-composite"],"rootNode":"composite"},{"id":"cobalt-and-nickel-matrix-composite","nodeId":"cobalt-and-nickel-matrix-composite","humanReadableId":"Cobalt and Nickel Matrix Composite","label":"Cobalt and Nickel Matrix Composite","disabled":true,"ancestors":["composite","metal-matrix-composite"],"rootNode":"composite"},{"id":"iron-matrix-composite","nodeId":"iron-matrix-composite","humanReadableId":"Iron Matrix Composite","label":"Iron Matrix Composite","disabled":true,"ancestors":["composite","metal-matrix-composite"],"rootNode":"composite"},{"id":"nickel-matrix-composite","nodeId":"nickel-matrix-composite","humanReadableId":"Nickel Matrix Composite","label":"Nickel Matrix Composite","disabled":true,"ancestors":["composite","metal-matrix-composite"],"rootNode":"composite"}],"ancestors":["composite"],"rootNode":"composite","childrenNr":6},{"id":"polymer-matrix-composite","nodeId":"polymer-matrix-composite","humanReadableId":"Polymer Matrix Composite","label":"Polymer Matrix Composite","disabled":true,"children":[{"id":"thermoset-polymer-matrix-composite","nodeId":"thermoset-polymer-matrix-composite","humanReadableId":"Thermoset Polymer Matrix Composite","label":"Thermoset Polymer Matrix Composite","disabled":true,"ancestors":["composite","polymer-matrix-composite"],"rootNode":"composite"}],"ancestors":["composite"],"rootNode":"composite","childrenNr":1}],"rootNode":"composite","childrenNr":3,"checked":false},{"id":"glass","nodeId":"glass","humanReadableId":"Glass","label":"Glass","disabled":true,"children":[{"id":"glass-ceramic","nodeId":"glass-ceramic","humanReadableId":"Glass Ceramic","label":"Glass Ceramic","disabled":true,"children":[{"id":"las-glass-ceramic","nodeId":"las-glass-ceramic","humanReadableId":"LAS Glass Ceramic","label":"LAS Glass Ceramic","disabled":true,"ancestors":["glass","glass-ceramic"],"rootNode":"glass"}],"ancestors":["glass"],"rootNode":"glass","childrenNr":1},{"id":"lead-glass","nodeId":"lead-glass","humanReadableId":"Lead Glass","label":"Lead Glass","disabled":true,"ancestors":["glass"],"rootNode":"glass"},{"id":"silicate-glass","nodeId":"silicate-glass","humanReadableId":"Silicate Glass","label":"Silicate Glass","disabled":true,"children":[{"id":"aluminosilicate","nodeId":"aluminosilicate","humanReadableId":"Aluminosilicate","label":"Aluminosilicate","disabled":true,"ancestors":["glass","silicate-glass"],"rootNode":"glass"},{"id":"borosilicate","nodeId":"borosilicate","humanReadableId":"Borosilicate","label":"Borosilicate","disabled":true,"ancestors":["glass","silicate-glass"],"rootNode":"glass"},{"id":"fused-quartz","nodeId":"fused-quartz","humanReadableId":"Fused Quartz","label":"Fused Quartz","disabled":true,"ancestors":["glass","silicate-glass"],"rootNode":"glass"},{"id":"soda-lime-silicate","nodeId":"soda-lime-silicate","humanReadableId":"Soda Lime Silicate","label":"Soda Lime Silicate","disabled":true,"ancestors":["glass","silicate-glass"],"rootNode":"glass"}],"ancestors":["glass"],"rootNode":"glass","childrenNr":4}],"rootNode":"glass","childrenNr":3,"checked":false},{"id":"metal","nodeId":"metal","humanReadableId":"Metal","label":"Metal","partiallyChecked":true,"materialsCount":2214,"children":[{"id":"aluminium","nodeId":"aluminium","humanReadableId":"Aluminium","label":"Aluminium","disabled":true,"children":[{"id":"aluminium-master-alloy","nodeId":"aluminium-master-alloy","humanReadableId":"Aluminium Master Alloy","label":"Aluminium Master Alloy","disabled":true,"ancestors":["metal","aluminium"],"rootNode":"metal"},{"id":"cast-aluminium","nodeId":"cast-aluminium","humanReadableId":"Cast Aluminium","label":"Cast Aluminium","disabled":true,"children":[{"id":"1xx-x","nodeId":"1xx-x","humanReadableId":"1xx.x","label":"1xx.x","disabled":true,"ancestors":["metal","aluminium","cast-aluminium"],"rootNode":"metal"},{"id":"2xx-x","nodeId":"2xx-x","humanReadableId":"2xx.x","label":"2xx.x","disabled":true,"ancestors":["metal","aluminium","cast-aluminium"],"rootNode":"metal"},{"id":"3xx-x","nodeId":"3xx-x","humanReadableId":"3xx.x","label":"3xx.x","disabled":true,"ancestors":["metal","aluminium","cast-aluminium"],"rootNode":"metal"},{"id":"4xx-x","nodeId":"4xx-x","humanReadableId":"4xx.x","label":"4xx.x","disabled":true,"ancestors":["metal","aluminium","cast-aluminium"],"rootNode":"metal"},{"id":"5xx-x","nodeId":"5xx-x","humanReadableId":"5xx.x","label":"5xx.x","disabled":true,"ancestors":["metal","aluminium","cast-aluminium"],"rootNode":"metal"},{"id":"7xx-x","nodeId":"7xx-x","humanReadableId":"7xx.x","label":"7xx.x","disabled":true,"ancestors":["metal","aluminium","cast-aluminium"],"rootNode":"metal"},{"id":"8xx-x","nodeId":"8xx-x","humanReadableId":"8xx.x","label":"8xx.x","disabled":true,"ancestors":["metal","aluminium","cast-aluminium"],"rootNode":"metal"}],"ancestors":["metal","aluminium"],"rootNode":"metal","childrenNr":7},{"id":"wrought-aluminium","nodeId":"wrought-aluminium","humanReadableId":"Wrought Aluminium","label":"Wrought Aluminium","disabled":true,"children":[{"id":"1000-series","nodeId":"1000-series","humanReadableId":"1000 Series","label":"1000 Series","disabled":true,"ancestors":["metal","aluminium","wrought-aluminium"],"rootNode":"metal"},{"id":"2000-series","nodeId":"2000-series","humanReadableId":"2000 Series","label":"2000 Series","disabled":true,"ancestors":["metal","aluminium","wrought-aluminium"],"rootNode":"metal"},{"id":"3000-series","nodeId":"3000-series","humanReadableId":"3000 Series","label":"3000 Series","disabled":true,"ancestors":["metal","aluminium","wrought-aluminium"],"rootNode":"metal"},{"id":"4000-series","nodeId":"4000-series","humanReadableId":"4000 Series","label":"4000 Series","disabled":true,"ancestors":["metal","aluminium","wrought-aluminium"],"rootNode":"metal"},{"id":"5000-series","nodeId":"5000-series","humanReadableId":"5000 Series","label":"5000 Series","disabled":true,"ancestors":["metal","aluminium","wrought-aluminium"],"rootNode":"metal"},{"id":"6000-series","nodeId":"6000-series","humanReadableId":"6000 Series","label":"6000 Series","disabled":true,"ancestors":["metal","aluminium","wrought-aluminium"],"rootNode":"metal"},{"id":"7000-series","nodeId":"7000-series","humanReadableId":"7000 Series","label":"7000 Series","disabled":true,"ancestors":["metal","aluminium","wrought-aluminium"],"rootNode":"metal"},{"id":"8000-series","nodeId":"8000-series","humanReadableId":"8000 Series","label":"8000 Series","disabled":true,"ancestors":["metal","aluminium","wrought-aluminium"],"rootNode":"metal"}],"ancestors":["metal","aluminium"],"rootNode":"metal","childrenNr":8}],"ancestors":["metal"],"rootNode":"metal","childrenNr":3},{"id":"clad---bimetal","nodeId":"clad---bimetal","humanReadableId":"Clad / Bimetal","label":"Clad / Bimetal","disabled":true,"ancestors":["metal"],"rootNode":"metal"},{"id":"cobalt","nodeId":"cobalt","humanReadableId":"Cobalt","label":"Cobalt","disabled":true,"children":[{"id":"cobalt-chromium","nodeId":"cobalt-chromium","humanReadableId":"Cobalt Chromium","label":"Cobalt Chromium","disabled":true,"ancestors":["metal","cobalt"],"rootNode":"metal"},{"id":"cobalt-chromium-molybdenum","nodeId":"cobalt-chromium-molybdenum","humanReadableId":"Cobalt Chromium Molybdenum","label":"Cobalt Chromium Molybdenum","disabled":true,"ancestors":["metal","cobalt"],"rootNode":"metal"},{"id":"cobalt-chromium-nickel-tungsten","nodeId":"cobalt-chromium-nickel-tungsten","humanReadableId":"Cobalt Chromium Nickel Tungsten","label":"Cobalt Chromium Nickel Tungsten","disabled":true,"ancestors":["metal","cobalt"],"rootNode":"metal"},{"id":"cobalt-chromium-tungsten","nodeId":"cobalt-chromium-tungsten","humanReadableId":"Cobalt Chromium Tungsten","label":"Cobalt Chromium Tungsten","disabled":true,"ancestors":["metal","cobalt"],"rootNode":"metal"},{"id":"cobalt-nickel-chromium-molybdenum","nodeId":"cobalt-nickel-chromium-molybdenum","humanReadableId":"Cobalt Nickel Chromium Molybdenum","label":"Cobalt Nickel Chromium Molybdenum","disabled":true,"ancestors":["metal","cobalt"],"rootNode":"metal"},{"id":"cobalt-superalloy","nodeId":"cobalt-superalloy","humanReadableId":"Cobalt Superalloy","label":"Cobalt Superalloy","disabled":true,"ancestors":["metal","cobalt"],"rootNode":"metal"},{"id":"unclassified-cobalt-alloy","nodeId":"unclassified-cobalt-alloy","humanReadableId":"Unclassified Cobalt Alloy","label":"Unclassified Cobalt Alloy","disabled":true,"ancestors":["metal","cobalt"],"rootNode":"metal"}],"ancestors":["metal"],"rootNode":"metal","childrenNr":7},{"id":"copper","nodeId":"copper","humanReadableId":"Copper","label":"Copper","disabled":true,"children":[{"id":"cast-copper","nodeId":"cast-copper","humanReadableId":"Cast Copper","label":"Cast Copper","disabled":true,"children":[{"id":"cast-copper-brass","nodeId":"cast-copper-brass","humanReadableId":"Cast Copper Brass","label":"Cast Copper Brass","disabled":true,"children":[{"id":"cast-copper-brass-yellow-brass","nodeId":"cast-copper-brass-yellow-brass","humanReadableId":"Cast Copper Brass Yellow Brass","label":"Cast Copper Brass Yellow Brass","disabled":true,"ancestors":["metal","copper","cast-copper","cast-copper-brass"],"rootNode":"metal"},{"id":"cast-copper-silicon-brass","nodeId":"cast-copper-silicon-brass","humanReadableId":"Cast Copper Silicon Brass","label":"Cast Copper Silicon Brass","disabled":true,"ancestors":["metal","copper","cast-copper","cast-copper-brass"],"rootNode":"metal"},{"id":"copper-bismuth-alloy","nodeId":"copper-bismuth-alloy","humanReadableId":"Copper Bismuth Alloy","label":"Copper Bismuth Alloy","disabled":true,"ancestors":["metal","copper","cast-copper","cast-copper-brass"],"rootNode":"metal"},{"id":"red-brass","nodeId":"red-brass","humanReadableId":"Red Brass","label":"Red Brass","disabled":true,"ancestors":["metal","copper","cast-copper","cast-copper-brass"],"rootNode":"metal"}],"ancestors":["metal","copper","cast-copper"],"rootNode":"metal","childrenNr":4},{"id":"cast-copper-bronze","nodeId":"cast-copper-bronze","humanReadableId":"Cast Copper Bronze","label":"Cast Copper Bronze","disabled":true,"children":[{"id":"cast-copper-bronze-aluminium-bronze","nodeId":"cast-copper-bronze-aluminium-bronze","humanReadableId":"Cast Copper Bronze Aluminium Bronze","label":"Cast Copper Bronze Aluminium Bronze","disabled":true,"ancestors":["metal","copper","cast-copper","cast-copper-bronze"],"rootNode":"metal"},{"id":"leaded-tin-bronze","nodeId":"leaded-tin-bronze","humanReadableId":"Leaded Tin Bronze","label":"Leaded Tin Bronze","disabled":true,"ancestors":["metal","copper","cast-copper","cast-copper-bronze"],"rootNode":"metal"},{"id":"nickel-tin-bronze","nodeId":"nickel-tin-bronze","humanReadableId":"Nickel Tin Bronze","label":"Nickel Tin Bronze","disabled":true,"ancestors":["metal","copper","cast-copper","cast-copper-bronze"],"rootNode":"metal"},{"id":"tin-bronze","nodeId":"tin-bronze","humanReadableId":"Tin Bronze","label":"Tin Bronze","disabled":true,"ancestors":["metal","copper","cast-copper","cast-copper-bronze"],"rootNode":"metal"}],"ancestors":["metal","copper","cast-copper"],"rootNode":"metal","childrenNr":4},{"id":"cast-copper-high-copper-alloy","nodeId":"cast-copper-high-copper-alloy","humanReadableId":"Cast Copper High Copper Alloy","label":"Cast Copper High Copper Alloy","disabled":true,"ancestors":["metal","copper","cast-copper"],"rootNode":"metal"},{"id":"cast-copper-nickel-grade","nodeId":"cast-copper-nickel-grade","humanReadableId":"Cast Copper Nickel Grade","label":"Cast Copper Nickel Grade","disabled":true,"ancestors":["metal","copper","cast-copper"],"rootNode":"metal"},{"id":"cast-copper-nickel-silver-grade","nodeId":"cast-copper-nickel-silver-grade","humanReadableId":"Cast Copper Nickel Silver Grade","label":"Cast Copper Nickel Silver Grade","disabled":true,"ancestors":["metal","copper","cast-copper"],"rootNode":"metal"},{"id":"cast-copper-pure---low-alloyed-copper","nodeId":"cast-copper-pure---low-alloyed-copper","humanReadableId":"Cast Copper Pure / Low Alloyed Copper","label":"Cast Copper Pure / Low Alloyed Copper","disabled":true,"ancestors":["metal","copper","cast-copper"],"rootNode":"metal"},{"id":"copper-lead-alloy","nodeId":"copper-lead-alloy","humanReadableId":"Copper-Lead Alloy","label":"Copper-Lead Alloy","disabled":true,"ancestors":["metal","copper","cast-copper"],"rootNode":"metal"},{"id":"special-alloy","nodeId":"special-alloy","humanReadableId":"Special Alloy","label":"Special Alloy","disabled":true,"ancestors":["metal","copper","cast-copper"],"rootNode":"metal"}],"ancestors":["metal","copper"],"rootNode":"metal","childrenNr":8},{"id":"welding","nodeId":"welding","humanReadableId":"Welding","label":"Welding","disabled":true,"ancestors":["metal","copper"],"rootNode":"metal"},{"id":"wrought-copper","nodeId":"wrought-copper","humanReadableId":"Wrought Copper","label":"Wrought Copper","disabled":true,"children":[{"id":"unclassified-wrought-copper","nodeId":"unclassified-wrought-copper","humanReadableId":"Unclassified Wrought Copper","label":"Unclassified Wrought Copper","disabled":true,"ancestors":["metal","copper","wrought-copper"],"rootNode":"metal"},{"id":"wrought-copper-brass","nodeId":"wrought-copper-brass","humanReadableId":"Wrought Copper Brass","label":"Wrought Copper Brass","disabled":true,"children":[{"id":"leaded-brass","nodeId":"leaded-brass","humanReadableId":"Leaded Brass","label":"Leaded Brass","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-brass"],"rootNode":"metal"},{"id":"other-copper-zinc-alloy","nodeId":"other-copper-zinc-alloy","humanReadableId":"Other Copper Zinc Alloy","label":"Other Copper Zinc Alloy","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-brass"],"rootNode":"metal"},{"id":"tin-brass","nodeId":"tin-brass","humanReadableId":"Tin Brass","label":"Tin Brass","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-brass"],"rootNode":"metal"},{"id":"wrought-copper-brass-yellow-brass","nodeId":"wrought-copper-brass-yellow-brass","humanReadableId":"Wrought Copper Brass Yellow Brass","label":"Wrought Copper Brass Yellow Brass","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-brass"],"rootNode":"metal"},{"id":"yellow-wrought-brass","nodeId":"yellow-wrought-brass","humanReadableId":"Yellow Wrought Brass","label":"Yellow Wrought Brass","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-brass"],"rootNode":"metal"}],"ancestors":["metal","copper","wrought-copper"],"rootNode":"metal","childrenNr":5},{"id":"wrought-copper-bronze","nodeId":"wrought-copper-bronze","humanReadableId":"Wrought Copper Bronze","label":"Wrought Copper Bronze","disabled":true,"children":[{"id":"copper-silver-zinc-alloy","nodeId":"copper-silver-zinc-alloy","humanReadableId":"Copper Silver Zinc Alloy","label":"Copper Silver Zinc Alloy","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-bronze"],"rootNode":"metal"},{"id":"leaded-phosphor-bronze","nodeId":"leaded-phosphor-bronze","humanReadableId":"Leaded Phosphor Bronze","label":"Leaded Phosphor Bronze","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-bronze"],"rootNode":"metal"},{"id":"other-copper-zinc-alloy","nodeId":"other-copper-zinc-alloy-","humanReadableId":"Other Copper Zinc Alloy","label":"Other Copper Zinc Alloy","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-bronze"],"rootNode":"metal"},{"id":"phosphor-bronze","nodeId":"phosphor-bronze","humanReadableId":"Phosphor Bronze","label":"Phosphor Bronze","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-bronze"],"rootNode":"metal"},{"id":"wrought-copper-bronze-aluminium-bronze","nodeId":"wrought-copper-bronze-aluminium-bronze","humanReadableId":"Wrought Copper Bronze Aluminium Bronze","label":"Wrought Copper Bronze Aluminium Bronze","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-bronze"],"rootNode":"metal"},{"id":"wrought-copper-bronze-silicon-bronze","nodeId":"wrought-copper-bronze-silicon-bronze","humanReadableId":"Wrought Copper Bronze Silicon Bronze","label":"Wrought Copper Bronze Silicon Bronze","disabled":true,"ancestors":["metal","copper","wrought-copper","wrought-copper-bronze"],"rootNode":"metal"}],"ancestors":["metal","copper","wrought-copper"],"rootNode":"metal","childrenNr":6},{"id":"wrought-copper-high-copper-alloy","nodeId":"wrought-copper-high-copper-alloy","humanReadableId":"Wrought Copper High Copper Alloy","label":"Wrought Copper High Copper Alloy","disabled":true,"ancestors":["metal","copper","wrought-copper"],"rootNode":"metal"},{"id":"wrought-copper-nickel-grade","nodeId":"wrought-copper-nickel-grade","humanReadableId":"Wrought Copper Nickel Grade","label":"Wrought Copper Nickel Grade","disabled":true,"ancestors":["metal","copper","wrought-copper"],"rootNode":"metal"},{"id":"wrought-copper-nickel-silver-grade","nodeId":"wrought-copper-nickel-silver-grade","humanReadableId":"Wrought Copper Nickel Silver Grade","label":"Wrought Copper Nickel Silver Grade","disabled":true,"ancestors":["metal","copper","wrought-copper"],"rootNode":"metal"},{"id":"wrought-copper-pure---low-alloyed-copper","nodeId":"wrought-copper-pure---low-alloyed-copper","humanReadableId":"Wrought Copper Pure / Low Alloyed Copper","label":"Wrought Copper Pure / Low Alloyed Copper","disabled":true,"ancestors":["metal","copper","wrought-copper"],"rootNode":"metal"}],"ancestors":["metal","copper"],"rootNode":"metal","childrenNr":7}],"ancestors":["metal"],"rootNode":"metal","childrenNr":3},{"id":"iron","nodeId":"iron","humanReadableId":"Iron","label":"Iron","disabled":true,"children":[{"id":"alloy-iron","nodeId":"alloy-iron","humanReadableId":"Alloy Iron","label":"Alloy Iron","disabled":true,"ancestors":["metal","iron"],"rootNode":"metal"},{"id":"cast-iron","nodeId":"cast-iron","humanReadableId":"Cast Iron","label":"Cast Iron","disabled":true,"children":[{"id":"ductile--nodular--cast-iron","nodeId":"ductile--nodular--cast-iron","humanReadableId":"Ductile (Nodular) Cast Iron","label":"Ductile (Nodular) Cast Iron","disabled":true,"ancestors":["metal","iron","cast-iron"],"rootNode":"metal"},{"id":"grey-cast-iron","nodeId":"grey-cast-iron","humanReadableId":"Grey Cast Iron","label":"Grey Cast Iron","disabled":true,"ancestors":["metal","iron","cast-iron"],"rootNode":"metal"},{"id":"malleable-cast-iron","nodeId":"malleable-cast-iron","humanReadableId":"Malleable Cast Iron","label":"Malleable Cast Iron","disabled":true,"ancestors":["metal","iron","cast-iron"],"rootNode":"metal"},{"id":"other-cast-iron-alloy","nodeId":"other-cast-iron-alloy","humanReadableId":"Other Cast Iron Alloy","label":"Other Cast Iron Alloy","disabled":true,"ancestors":["metal","iron","cast-iron"],"rootNode":"metal"},{"id":"white-cast-iron","nodeId":"white-cast-iron","humanReadableId":"White Cast Iron","label":"White Cast Iron","disabled":true,"ancestors":["metal","iron","cast-iron"],"rootNode":"metal"}],"ancestors":["metal","iron"],"rootNode":"metal","childrenNr":5},{"id":"ferromolybdenum","nodeId":"ferromolybdenum","humanReadableId":"Ferromolybdenum","label":"Ferromolybdenum","disabled":true,"ancestors":["metal","iron"],"rootNode":"metal"},{"id":"ferrosilicon","nodeId":"ferrosilicon","humanReadableId":"Ferrosilicon","label":"Ferrosilicon","disabled":true,"ancestors":["metal","iron"],"rootNode":"metal"},{"id":"ferrovanadium","nodeId":"ferrovanadium","humanReadableId":"Ferrovanadium","label":"Ferrovanadium","disabled":true,"ancestors":["metal","iron"],"rootNode":"metal"},{"id":"iron-alloy","nodeId":"iron-alloy","humanReadableId":"Iron Alloy","label":"Iron Alloy","disabled":true,"children":[{"id":"aluminium-nickel-cobalt-iron-alloy","nodeId":"aluminium-nickel-cobalt-iron-alloy","humanReadableId":"Aluminium Nickel Cobalt Iron Alloy","label":"Aluminium Nickel Cobalt Iron Alloy","disabled":true,"ancestors":["metal","iron","iron-alloy"],"rootNode":"metal"},{"id":"miscellaneous-iron-alloy","nodeId":"miscellaneous-iron-alloy","humanReadableId":"Miscellaneous Iron Alloy","label":"Miscellaneous Iron Alloy","disabled":true,"ancestors":["metal","iron","iron-alloy"],"rootNode":"metal"},{"id":"soft-magnetic-iron","nodeId":"soft-magnetic-iron","humanReadableId":"Soft Magnetic Iron","label":"Soft Magnetic Iron","disabled":true,"ancestors":["metal","iron","iron-alloy"],"rootNode":"metal"}],"ancestors":["metal","iron"],"rootNode":"metal","childrenNr":3},{"id":"malleable-cast-iron","nodeId":"malleable-cast-iron-","humanReadableId":"Malleable Cast Iron","label":"Malleable Cast Iron","disabled":true,"ancestors":["metal","iron"],"rootNode":"metal"}],"ancestors":["metal"],"rootNode":"metal","childrenNr":7},{"id":"magnesium","nodeId":"magnesium","humanReadableId":"Magnesium","label":"Magnesium","disabled":true,"children":[{"id":"aluminium-grade","nodeId":"aluminium-grade","humanReadableId":"Aluminium Grade","label":"Aluminium Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"cast-aluminium-manganese-grade","nodeId":"cast-aluminium-manganese-grade","humanReadableId":"Cast Aluminium Manganese Grade","label":"Cast Aluminium Manganese Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"cast-rare-earth-grade","nodeId":"cast-rare-earth-grade","humanReadableId":"Cast Rare Earth Grade","label":"Cast Rare Earth Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"cast-wrought-aluminium-zinc-grade","nodeId":"cast-wrought-aluminium-zinc-grade","humanReadableId":"Cast/Wrought Aluminium Zinc Grade","label":"Cast/Wrought Aluminium Zinc Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"cast-wrought-unclassified-grade","nodeId":"cast-wrought-unclassified-grade","humanReadableId":"Cast/Wrought Unclassified Grade","label":"Cast/Wrought Unclassified Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"pure-magnesium","nodeId":"pure-magnesium","humanReadableId":"Pure Magnesium","label":"Pure Magnesium","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"rare-earth-grade","nodeId":"rare-earth-grade","humanReadableId":"Rare Earth Grade","label":"Rare Earth Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"wrought-zinc-grade","nodeId":"wrought-zinc-grade","humanReadableId":"Wrought Zinc Grade","label":"Wrought Zinc Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"yttrium-grade","nodeId":"yttrium-grade","humanReadableId":"Yttrium Grade","label":"Yttrium Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"},{"id":"zinc-grade","nodeId":"zinc-grade","humanReadableId":"Zinc Grade","label":"Zinc Grade","disabled":true,"ancestors":["metal","magnesium"],"rootNode":"metal"}],"ancestors":["metal"],"rootNode":"metal","childrenNr":10},{"id":"manganese","nodeId":"manganese","humanReadableId":"Manganese","label":"Manganese","disabled":true,"ancestors":["metal"],"rootNode":"metal"},{"id":"nickel","nodeId":"nickel","humanReadableId":"Nickel","label":"Nickel","disabled":true,"children":[{"id":"nickel-chromium-alloy","nodeId":"nickel-chromium-alloy","humanReadableId":"Nickel Chromium Alloy","label":"Nickel Chromium Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-chromium-cobalt-alloy","nodeId":"nickel-chromium-cobalt-alloy","humanReadableId":"Nickel Chromium Cobalt Alloy","label":"Nickel Chromium Cobalt Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-chromium-iron-alloy","nodeId":"nickel-chromium-iron-alloy","humanReadableId":"Nickel Chromium Iron Alloy","label":"Nickel Chromium Iron Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-chromium-molybdenum-alloy","nodeId":"nickel-chromium-molybdenum-alloy","humanReadableId":"Nickel Chromium Molybdenum Alloy","label":"Nickel Chromium Molybdenum Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-cobalt-alloy","nodeId":"nickel-cobalt-alloy","humanReadableId":"Nickel Cobalt Alloy","label":"Nickel Cobalt Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-copper-alloy","nodeId":"nickel-copper-alloy","humanReadableId":"Nickel Copper Alloy","label":"Nickel Copper Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-iron-alloy","nodeId":"nickel-iron-alloy","humanReadableId":"Nickel Iron Alloy","label":"Nickel Iron Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-molybdenum-alloy","nodeId":"nickel-molybdenum-alloy","humanReadableId":"Nickel Molybdenum Alloy","label":"Nickel Molybdenum Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-superalloy","nodeId":"nickel-superalloy","humanReadableId":"Nickel Superalloy","label":"Nickel Superalloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"nickel-welding-filler","nodeId":"nickel-welding-filler","humanReadableId":"Nickel Welding Filler","label":"Nickel Welding Filler","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"other-nickel-alloy","nodeId":"other-nickel-alloy","humanReadableId":"Other Nickel Alloy","label":"Other Nickel Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"},{"id":"pure-low-nickel-alloy","nodeId":"pure-low-nickel-alloy","humanReadableId":"Pure/Low Nickel Alloy","label":"Pure/Low Nickel Alloy","disabled":true,"ancestors":["metal","nickel"],"rootNode":"metal"}],"ancestors":["metal"],"rootNode":"metal","childrenNr":12},{"id":"noble-metal","nodeId":"noble-metal","humanReadableId":"Noble Metal","label":"Noble Metal","disabled":true,"children":[{"id":"gold","nodeId":"gold","humanReadableId":"Gold","label":"Gold","disabled":true,"ancestors":["metal","noble-metal"],"rootNode":"metal"},{"id":"iridium","nodeId":"iridium","humanReadableId":"Iridium","label":"Iridium","disabled":true,"ancestors":["metal","noble-metal"],"rootNode":"metal"},{"id":"palladium","nodeId":"palladium","humanReadableId":"Palladium","label":"Palladium","disabled":true,"ancestors":["metal","noble-metal"],"rootNode":"metal"},{"id":"platinum","nodeId":"platinum","humanReadableId":"Platinum","label":"Platinum","disabled":true,"ancestors":["metal","noble-metal"],"rootNode":"metal"},{"id":"rhodium","nodeId":"rhodium","humanReadableId":"Rhodium","label":"Rhodium","disabled":true,"ancestors":["metal","noble-metal"],"rootNode":"metal"},{"id":"silver","nodeId":"silver","humanReadableId":"Silver","label":"Silver","disabled":true,"ancestors":["metal","noble-metal"],"rootNode":"metal"}],"ancestors":["metal"],"rootNode":"metal","childrenNr":6},{"id":"other-metal","nodeId":"other-metal","humanReadableId":"Other Metal","label":"Other Metal","disabled":true,"children":[{"id":"beryllium","nodeId":"beryllium","humanReadableId":"Beryllium","label":"Beryllium","disabled":true,"ancestors":["metal","other-metal"],"rootNode":"metal"},{"id":"cadmium","nodeId":"cadmium","humanReadableId":"Cadmium","label":"Cadmium","disabled":true,"ancestors":["metal","other-metal"],"rootNode":"metal"},{"id":"chromium","nodeId":"chromium","humanReadableId":"Chromium","label":"Chromium","disabled":true,"ancestors":["metal","other-metal"],"rootNode":"metal"},{"id":"lead","nodeId":"lead","humanReadableId":"Lead","label":"Lead","disabled":true,"children":[{"id":"lead-antimony","nodeId":"lead-antimony","humanReadableId":"Lead Antimony","label":"Lead Antimony","disabled":true,"ancestors":["metal","other-metal","lead"],"rootNode":"metal"},{"id":"lead-tin","nodeId":"lead-tin","humanReadableId":"Lead Tin","label":"Lead Tin","disabled":true,"ancestors":["metal","other-metal","lead"],"rootNode":"metal"},{"id":"pure-low-alloyed-lead","nodeId":"pure-low-alloyed-lead","humanReadableId":"Pure/Low Alloyed Lead","label":"Pure/Low Alloyed Lead","disabled":true,"ancestors":["metal","other-metal","lead"],"rootNode":"metal"}],"ancestors":["metal","other-metal"],"rootNode":"metal","childrenNr":3},{"id":"lithium","nodeId":"lithium","humanReadableId":"Lithium","label":"Lithium","disabled":true,"ancestors":["metal","other-metal"],"rootNode":"metal"},{"id":"neodymium","nodeId":"neodymium","humanReadableId":"Neodymium","label":"Neodymium","disabled":true,"children":[{"id":"neodymium-iron-boron-alloy","nodeId":"neodymium-iron-boron-alloy","humanReadableId":"Neodymium Iron Boron Alloy","label":"Neodymium Iron Boron Alloy","disabled":true,"ancestors":["metal","other-metal","neodymium"],"rootNode":"metal"}],"ancestors":["metal","other-metal"],"rootNode":"metal","childrenNr":1},{"id":"samarium","nodeId":"samarium","humanReadableId":"Samarium","label":"Samarium","disabled":true,"children":[{"id":"samarium-cobalt-alloy","nodeId":"samarium-cobalt-alloy","humanReadableId":"Samarium Cobalt Alloy","label":"Samarium Cobalt Alloy","disabled":true,"ancestors":["metal","other-metal","samarium"],"rootNode":"metal"}],"ancestors":["metal","other-metal"],"rootNode":"metal","childrenNr":1},{"id":"tin","nodeId":"tin","humanReadableId":"Tin","label":"Tin","disabled":true,"children":[{"id":"pure-low-alloyed-tin","nodeId":"pure-low-alloyed-tin","humanReadableId":"Pure/Low Alloyed Tin","label":"Pure/Low Alloyed Tin","disabled":true,"ancestors":["metal","other-metal","tin"],"rootNode":"metal"},{"id":"tin-antimony","nodeId":"tin-antimony","humanReadableId":"Tin Antimony","label":"Tin Antimony","disabled":true,"ancestors":["metal","other-metal","tin"],"rootNode":"metal"},{"id":"tin-lead","nodeId":"tin-lead","humanReadableId":"Tin Lead","label":"Tin Lead","disabled":true,"ancestors":["metal","other-metal","tin"],"rootNode":"metal"},{"id":"unclassified-tin","nodeId":"unclassified-tin","humanReadableId":"Unclassified Tin","label":"Unclassified Tin","disabled":true,"ancestors":["metal","other-metal","tin"],"rootNode":"metal"}],"ancestors":["metal","other-metal"],"rootNode":"metal","childrenNr":4},{"id":"zinc","nodeId":"zinc","humanReadableId":"Zinc","label":"Zinc","disabled":true,"children":[{"id":"unalloyed-zinc","nodeId":"unalloyed-zinc","humanReadableId":"Unalloyed Zinc","label":"Unalloyed Zinc","disabled":true,"ancestors":["metal","other-metal","zinc"],"rootNode":"metal"},{"id":"unclassified-zinc","nodeId":"unclassified-zinc","humanReadableId":"Unclassified Zinc","label":"Unclassified Zinc","disabled":true,"ancestors":["metal","other-metal","zinc"],"rootNode":"metal"},{"id":"zinc-aluminium","nodeId":"zinc-aluminium","humanReadableId":"Zinc Aluminium","label":"Zinc Aluminium","disabled":true,"ancestors":["metal","other-metal","zinc"],"rootNode":"metal"}],"ancestors":["metal","other-metal"],"rootNode":"metal","childrenNr":3}],"ancestors":["metal"],"rootNode":"metal","childrenNr":9},{"id":"refractory-metal","nodeId":"refractory-metal","humanReadableId":"Refractory Metal","label":"Refractory Metal","disabled":true,"children":[{"id":"hafnium","nodeId":"hafnium","humanReadableId":"Hafnium","label":"Hafnium","disabled":true,"ancestors":["metal","refractory-metal"],"rootNode":"metal"},{"id":"molybdenum","nodeId":"molybdenum","humanReadableId":"Molybdenum","label":"Molybdenum","disabled":true,"ancestors":["metal","refractory-metal"],"rootNode":"metal"},{"id":"niobium","nodeId":"niobium","humanReadableId":"Niobium","label":"Niobium","disabled":true,"ancestors":["metal","refractory-metal"],"rootNode":"metal"},{"id":"rhenium","nodeId":"rhenium","humanReadableId":"Rhenium","label":"Rhenium","disabled":true,"ancestors":["metal","refractory-metal"],"rootNode":"metal"},{"id":"tantalum","nodeId":"tantalum","humanReadableId":"Tantalum","label":"Tantalum","disabled":true,"ancestors":["metal","refractory-metal"],"rootNode":"metal"},{"id":"tungsten","nodeId":"tungsten","humanReadableId":"Tungsten","label":"Tungsten","disabled":true,"ancestors":["metal","refractory-metal"],"rootNode":"metal"},{"id":"vanadium","nodeId":"vanadium","humanReadableId":"Vanadium","label":"Vanadium","disabled":true,"ancestors":["metal","refractory-metal"],"rootNode":"metal"},{"id":"zirconium","nodeId":"zirconium","humanReadableId":"Zirconium","label":"Zirconium","disabled":true,"ancestors":["metal","refractory-metal"],"rootNode":"metal"}],"ancestors":["metal"],"rootNode":"metal","childrenNr":8},{"id":"steel","nodeId":"steel","humanReadableId":"Steel","label":"Steel","checked":true,"children":[{"id":"alloy-steel","nodeId":"alloy-steel","humanReadableId":"Alloy Steel","label":"Alloy Steel","checked":true,"children":[{"id":"chromium-molybdenum-steel","nodeId":"chromium-molybdenum-steel","humanReadableId":"Chromium Molybdenum Steel","label":"Chromium Molybdenum Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"chromium-molybdenum-vanadium-steel","nodeId":"chromium-molybdenum-vanadium-steel","humanReadableId":"Chromium Molybdenum Vanadium Steel","label":"Chromium Molybdenum Vanadium Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"chromium-steel","nodeId":"chromium-steel","humanReadableId":"Chromium Steel","label":"Chromium Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"chromium-vanadium-steel","nodeId":"chromium-vanadium-steel","humanReadableId":"Chromium Vanadium Steel","label":"Chromium Vanadium Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"manganese-steel","nodeId":"manganese-steel","humanReadableId":"Manganese Steel","label":"Manganese Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"molybdenum-steel","nodeId":"molybdenum-steel","humanReadableId":"Molybdenum Steel","label":"Molybdenum Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"nickel-chromium-molybdenum-steel","nodeId":"nickel-chromium-molybdenum-steel","humanReadableId":"Nickel Chromium Molybdenum Steel","label":"Nickel Chromium Molybdenum Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"nickel-chromium-steel","nodeId":"nickel-chromium-steel","humanReadableId":"Nickel Chromium Steel","label":"Nickel Chromium Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"nickel-molybdenum-steel","nodeId":"nickel-molybdenum-steel","humanReadableId":"Nickel Molybdenum Steel","label":"Nickel Molybdenum Steel","checked":true,"disabled":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"nickel-steel","nodeId":"nickel-steel","humanReadableId":"Nickel Steel","label":"Nickel Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"nitriding-steel","nodeId":"nitriding-steel","humanReadableId":"Nitriding Steel","label":"Nitriding Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"silicon-manganese-steel","nodeId":"silicon-manganese-steel","humanReadableId":"Silicon Manganese Steel","label":"Silicon Manganese Steel","checked":true,"disabled":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"silicon-steel","nodeId":"silicon-steel","humanReadableId":"Silicon Steel","label":"Silicon Steel","checked":true,"disabled":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"},{"id":"unclassified-low-alloy-steel","nodeId":"unclassified-low-alloy-steel","humanReadableId":"Unclassified Low Alloy Steel","label":"Unclassified Low Alloy Steel","checked":true,"ancestors":["metal","steel","alloy-steel"],"rootNode":"metal"}],"ancestors":["metal","steel"],"rootNode":"metal","childrenNr":14},{"id":"carbon-steel","nodeId":"carbon-steel","humanReadableId":"Carbon Steel","label":"Carbon Steel","checked":true,"children":[{"id":"high-carbon-steel","nodeId":"high-carbon-steel","humanReadableId":"High Carbon Steel","label":"High Carbon Steel","checked":true,"ancestors":["metal","steel","carbon-steel"],"rootNode":"metal"},{"id":"low-carbon-steel","nodeId":"low-carbon-steel","humanReadableId":"Low Carbon Steel","label":"Low Carbon Steel","checked":true,"ancestors":["metal","steel","carbon-steel"],"rootNode":"metal"},{"id":"medium-carbon-steel","nodeId":"medium-carbon-steel","humanReadableId":"Medium Carbon Steel","label":"Medium Carbon Steel","checked":true,"ancestors":["metal","steel","carbon-steel"],"rootNode":"metal"},{"id":"unclassified-carbon-steel","nodeId":"unclassified-carbon-steel","humanReadableId":"Unclassified Carbon Steel","label":"Unclassified Carbon Steel","checked":true,"ancestors":["metal","steel","carbon-steel"],"rootNode":"metal"}],"ancestors":["metal","steel"],"rootNode":"metal","childrenNr":4},{"id":"low-alloy-steel","nodeId":"low-alloy-steel","humanReadableId":"Low Alloy Steel","label":"Low Alloy Steel","checked":true,"disabled":true,"children":[{"id":"low-carbon-steel","nodeId":"low-carbon-steel-","humanReadableId":"Low Carbon Steel","label":"Low Carbon Steel","checked":true,"disabled":true,"ancestors":["metal","steel","low-alloy-steel"],"rootNode":"metal"}],"ancestors":["metal","steel"],"rootNode":"metal","childrenNr":1},{"id":"maraging-steel","nodeId":"maraging-steel","humanReadableId":"Maraging Steel","label":"Maraging Steel","checked":true,"disabled":true,"ancestors":["metal","steel"],"rootNode":"metal"},{"id":"stainless-steel","nodeId":"stainless-steel","humanReadableId":"Stainless Steel","label":"Stainless Steel","checked":true,"children":[{"id":"austenitic-stainless-steel","nodeId":"austenitic-stainless-steel","humanReadableId":"Austenitic Stainless Steel","label":"Austenitic Stainless Steel","checked":true,"ancestors":["metal","steel","stainless-steel"],"rootNode":"metal"},{"id":"duplex-stainless-steel","nodeId":"duplex-stainless-steel","humanReadableId":"Duplex Stainless Steel","label":"Duplex Stainless Steel","checked":true,"ancestors":["metal","steel","stainless-steel"],"rootNode":"metal"},{"id":"ferritic-stainless-steel","nodeId":"ferritic-stainless-steel","humanReadableId":"Ferritic Stainless Steel","label":"Ferritic Stainless Steel","checked":true,"ancestors":["metal","steel","stainless-steel"],"rootNode":"metal"},{"id":"martensitic-stainless-steel","nodeId":"martensitic-stainless-steel","humanReadableId":"Martensitic Stainless Steel","label":"Martensitic Stainless Steel","checked":true,"ancestors":["metal","steel","stainless-steel"],"rootNode":"metal"},{"id":"precipitation-hardening-stainless-steel","nodeId":"precipitation-hardening-stainless-steel","humanReadableId":"Precipitation Hardening Stainless Steel","label":"Precipitation Hardening Stainless Steel","checked":true,"ancestors":["metal","steel","stainless-steel"],"rootNode":"metal"},{"id":"superaustenitic-stainless-steel","nodeId":"superaustenitic-stainless-steel","humanReadableId":"Superaustenitic Stainless Steel","label":"Superaustenitic Stainless Steel","checked":true,"ancestors":["metal","steel","stainless-steel"],"rootNode":"metal"},{"id":"unclassified-stainless-steel","nodeId":"unclassified-stainless-steel","humanReadableId":"Unclassified Stainless Steel","label":"Unclassified Stainless Steel","checked":true,"ancestors":["metal","steel","stainless-steel"],"rootNode":"metal"}],"ancestors":["metal","steel"],"rootNode":"metal","childrenNr":7},{"id":"tool-and-machining-steel","nodeId":"tool-and-machining-steel","humanReadableId":"Tool And Machining Steel","label":"Tool And Machining Steel","checked":true,"ancestors":["metal","steel"],"rootNode":"metal"}],"ancestors":["metal"],"rootNode":"metal","childrenNr":6},{"id":"titanium","nodeId":"titanium","humanReadableId":"Titanium","label":"Titanium","disabled":true,"children":[{"id":"alpha-alloy","nodeId":"alpha-alloy","humanReadableId":"Alpha Alloy","label":"Alpha Alloy","disabled":true,"ancestors":["metal","titanium"],"rootNode":"metal"},{"id":"alpha-beta-alloy","nodeId":"alpha-beta-alloy","humanReadableId":"Alpha Beta Alloy","label":"Alpha Beta Alloy","disabled":true,"ancestors":["metal","titanium"],"rootNode":"metal"},{"id":"beta-alloy","nodeId":"beta-alloy","humanReadableId":"Beta Alloy","label":"Beta Alloy","disabled":true,"ancestors":["metal","titanium"],"rootNode":"metal"},{"id":"low-alloy-titanium","nodeId":"low-alloy-titanium","humanReadableId":"Low Alloy Titanium","label":"Low Alloy Titanium","disabled":true,"ancestors":["metal","titanium"],"rootNode":"metal"},{"id":"near-alpha-alloy","nodeId":"near-alpha-alloy","humanReadableId":"Near Alpha Alloy","label":"Near Alpha Alloy","disabled":true,"ancestors":["metal","titanium"],"rootNode":"metal"},{"id":"pure-titanium","nodeId":"pure-titanium","humanReadableId":"Pure Titanium","label":"Pure Titanium","disabled":true,"ancestors":["metal","titanium"],"rootNode":"metal"}],"ancestors":["metal"],"rootNode":"metal","childrenNr":6}],"rootNode":"metal","childrenNr":13,"checked":false},{"id":"polymer","nodeId":"polymer","humanReadableId":"Polymer","label":"Polymer","disabled":true,"children":[{"id":"elastomer","nodeId":"elastomer","humanReadableId":"Elastomer","label":"Elastomer","disabled":true,"children":[{"id":"butadiene-rubber--br-","nodeId":"butadiene-rubber--br-","humanReadableId":"Butadiene Rubber (BR)","label":"Butadiene Rubber (BR)","disabled":true,"ancestors":["polymer","elastomer"],"rootNode":"polymer"},{"id":"chloroprene-rubber--cr-","nodeId":"chloroprene-rubber--cr-","humanReadableId":"Chloroprene Rubber (CR)","label":"Chloroprene Rubber (CR)","disabled":true,"ancestors":["polymer","elastomer"],"rootNode":"polymer"},{"id":"ethylene-propylene-diene-rubber--epdm-","nodeId":"ethylene-propylene-diene-rubber--epdm-","humanReadableId":"Ethylene Propylene Diene Rubber (EPDM)","label":"Ethylene Propylene Diene Rubber (EPDM)","disabled":true,"ancestors":["polymer","elastomer"],"rootNode":"polymer"},{"id":"ethylene-propylene-rubber--epr-","nodeId":"ethylene-propylene-rubber--epr-","humanReadableId":"Ethylene Propylene Rubber (EPR)","label":"Ethylene Propylene Rubber (EPR)","disabled":true,"ancestors":["polymer","elastomer"],"rootNode":"polymer"},{"id":"fluorosilicone-rubber--fvmq-","nodeId":"fluorosilicone-rubber--fvmq-","humanReadableId":"Fluorosilicone Rubber (FVMQ)","label":"Fluorosilicone Rubber (FVMQ)","disabled":true,"ancestors":["polymer","elastomer"],"rootNode":"polymer"},{"id":"natural-rubber--nr-","nodeId":"natural-rubber--nr-","humanReadableId":"Natural Rubber (NR)","label":"Natural Rubber (NR)","disabled":true,"ancestors":["polymer","elastomer"],"rootNode":"polymer"},{"id":"nitrile-rubber--nbr-","nodeId":"nitrile-rubber--nbr-","humanReadableId":"Nitrile Rubber (NBR)","label":"Nitrile Rubber (NBR)","disabled":true,"ancestors":["polymer","elastomer"],"rootNode":"polymer"},{"id":"styrene-butadiene-rubber--sbr-","nodeId":"styrene-butadiene-rubber--sbr-","humanReadableId":"Styrene Butadiene Rubber (SBR)","label":"Styrene Butadiene Rubber (SBR)","disabled":true,"ancestors":["polymer","elastomer"],"rootNode":"polymer"},{"id":"thermoplastic-elastomer--tpe-","nodeId":"thermoplastic-elastomer--tpe-","humanReadableId":"Thermoplastic Elastomer (TPE)","label":"Thermoplastic Elastomer (TPE)","disabled":true,"children":[{"id":"elastomeric-alloy--tpv-","nodeId":"elastomeric-alloy--tpv-","humanReadableId":"Elastomeric Alloy (TPV)","label":"Elastomeric Alloy (TPV)","disabled":true,"ancestors":["polymer","elastomer","thermoplastic-elastomer--tpe-"],"rootNode":"polymer"},{"id":"styrene-butadiene-styrene--sbs-","nodeId":"styrene-butadiene-styrene--sbs-","humanReadableId":"Styrene Butadiene Styrene (SBS)","label":"Styrene Butadiene Styrene (SBS)","disabled":true,"ancestors":["polymer","elastomer","thermoplastic-elastomer--tpe-"],"rootNode":"polymer"},{"id":"thermoplastic-copolyester--tpc-","nodeId":"thermoplastic-copolyester--tpc-","humanReadableId":"Thermoplastic Copolyester (TPC)","label":"Thermoplastic Copolyester (TPC)","disabled":true,"ancestors":["polymer","elastomer","thermoplastic-elastomer--tpe-"],"rootNode":"polymer"},{"id":"thermoplastic-polyamide--tpa-","nodeId":"thermoplastic-polyamide--tpa-","humanReadableId":"Thermoplastic Polyamide (TPA)","label":"Thermoplastic Polyamide (TPA)","disabled":true,"ancestors":["polymer","elastomer","thermoplastic-elastomer--tpe-"],"rootNode":"polymer"},{"id":"thermoplastic-polyester-elastomer--tpee-","nodeId":"thermoplastic-polyester-elastomer--tpee-","humanReadableId":"Thermoplastic Polyester Elastomer (TPEE)","label":"Thermoplastic Polyester Elastomer (TPEE)","disabled":true,"ancestors":["polymer","elastomer","thermoplastic-elastomer--tpe-"],"rootNode":"polymer"},{"id":"thermoplastic-polyolefin--tpo-","nodeId":"thermoplastic-polyolefin--tpo-","humanReadableId":"Thermoplastic Polyolefin (TPO)","label":"Thermoplastic Polyolefin (TPO)","disabled":true,"ancestors":["polymer","elastomer","thermoplastic-elastomer--tpe-"],"rootNode":"polymer"},{"id":"thermoplastic-polyurethane--tpu-","nodeId":"thermoplastic-polyurethane--tpu-","humanReadableId":"Thermoplastic Polyurethane (TPU)","label":"Thermoplastic Polyurethane (TPU)","disabled":true,"ancestors":["polymer","elastomer","thermoplastic-elastomer--tpe-"],"rootNode":"polymer"},{"id":"thermoplastic-styrenic-block-copolymer--tps-","nodeId":"thermoplastic-styrenic-block-copolymer--tps-","humanReadableId":"Thermoplastic Styrenic Block Copolymer (TPS)","label":"Thermoplastic Styrenic Block Copolymer (TPS)","disabled":true,"ancestors":["polymer","elastomer","thermoplastic-elastomer--tpe-"],"rootNode":"polymer"}],"ancestors":["polymer","elastomer"],"rootNode":"polymer","childrenNr":8}],"ancestors":["polymer"],"rootNode":"polymer","childrenNr":9},{"id":"thermoplastic","nodeId":"thermoplastic","humanReadableId":"Thermoplastic","label":"Thermoplastic","disabled":true,"children":[{"id":"acrylic","nodeId":"acrylic","humanReadableId":"Acrylic","label":"Acrylic","disabled":true,"children":[{"id":"polyacrylonitrile--pan-","nodeId":"polyacrylonitrile--pan-","humanReadableId":"Polyacrylonitrile (PAN)","label":"Polyacrylonitrile (PAN)","disabled":true,"ancestors":["polymer","thermoplastic","acrylic"],"rootNode":"polymer"},{"id":"polymethyl-methacrylate--pmma-","nodeId":"polymethyl-methacrylate--pmma-","humanReadableId":"Polymethyl methacrylate (PMMA)","label":"Polymethyl methacrylate (PMMA)","disabled":true,"ancestors":["polymer","thermoplastic","acrylic"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":2},{"id":"fluoropolymer","nodeId":"fluoropolymer","humanReadableId":"Fluoropolymer","label":"Fluoropolymer","disabled":true,"children":[{"id":"ethylene-tetrafluoroethylene-copolymer--etfe-","nodeId":"ethylene-tetrafluoroethylene-copolymer--etfe-","humanReadableId":"Ethylene Tetrafluoroethylene Copolymer (ETFE)","label":"Ethylene Tetrafluoroethylene Copolymer (ETFE)","disabled":true,"ancestors":["polymer","thermoplastic","fluoropolymer"],"rootNode":"polymer"},{"id":"fluorinated-ethylene-propylene--fep-","nodeId":"fluorinated-ethylene-propylene--fep-","humanReadableId":"Fluorinated ethylene propylene (FEP)","label":"Fluorinated ethylene propylene (FEP)","disabled":true,"ancestors":["polymer","thermoplastic","fluoropolymer"],"rootNode":"polymer"},{"id":"polytetrafluoroethylene--ptfe-","nodeId":"polytetrafluoroethylene--ptfe-","humanReadableId":"Polytetrafluoroethylene (PTFE)","label":"Polytetrafluoroethylene (PTFE)","disabled":true,"ancestors":["polymer","thermoplastic","fluoropolymer"],"rootNode":"polymer"},{"id":"polyvinylidenefluoride--pvdf-","nodeId":"polyvinylidenefluoride--pvdf-","humanReadableId":"Polyvinylidenefluoride (PVDF)","label":"Polyvinylidenefluoride (PVDF)","disabled":true,"ancestors":["polymer","thermoplastic","fluoropolymer"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":4},{"id":"liquid-crystal-polymers--lcp-","nodeId":"liquid-crystal-polymers--lcp-","humanReadableId":"Liquid Crystal Polymers (LCP)","label":"Liquid Crystal Polymers (LCP)","disabled":true,"ancestors":["polymer","thermoplastic"],"rootNode":"polymer"},{"id":"polyamide--pa-","nodeId":"polyamide--pa-","humanReadableId":"Polyamide (PA)","label":"Polyamide (PA)","disabled":true,"children":[{"id":"aramide","nodeId":"aramide","humanReadableId":"Aramide","label":"Aramide","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"copolyamide-6-66--pa6-66-","nodeId":"copolyamide-6-66--pa6-66-","humanReadableId":"Copolyamide 6/66 (PA6/66)","label":"Copolyamide 6/66 (PA6/66)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"other-polyamide--pa-","nodeId":"other-polyamide--pa-","humanReadableId":"Other Polyamide (PA)","label":"Other Polyamide (PA)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-1010--pa1010-","nodeId":"polyamide-1010--pa1010-","humanReadableId":"Polyamide 1010 (PA1010)","label":"Polyamide 1010 (PA1010)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-1012--pa1012-","nodeId":"polyamide-1012--pa1012-","humanReadableId":"Polyamide 1012 (PA1012)","label":"Polyamide 1012 (PA1012)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-11--pa11-","nodeId":"polyamide-11--pa11-","humanReadableId":"Polyamide 11 (PA11)","label":"Polyamide 11 (PA11)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-12--pa12-","nodeId":"polyamide-12--pa12-","humanReadableId":"Polyamide 12 (PA12)","label":"Polyamide 12 (PA12)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-410--pa410-","nodeId":"polyamide-410--pa410-","humanReadableId":"Polyamide 410 (PA410)","label":"Polyamide 410 (PA410)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-46--pa46-","nodeId":"polyamide-46--pa46-","humanReadableId":"Polyamide 46 (PA46)","label":"Polyamide 46 (PA46)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-6--pa6-","nodeId":"polyamide-6--pa6-","humanReadableId":"Polyamide 6 (PA6)","label":"Polyamide 6 (PA6)","disabled":true,"children":[{"id":"polyamide-4t--pa4t-","nodeId":"polyamide-4t--pa4t-","humanReadableId":"Polyamide 4T (PA4T)","label":"Polyamide 4T (PA4T)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyamide-6--pa6-"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer","childrenNr":1},{"id":"polyamide-6-66--pa6-66-","nodeId":"polyamide-6-66--pa6-66-","humanReadableId":"Polyamide 6/66 (PA6/66)","label":"Polyamide 6/66 (PA6/66)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-610--pa610-","nodeId":"polyamide-610--pa610-","humanReadableId":"Polyamide 610 (PA610)","label":"Polyamide 610 (PA610)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-612--pa612-","nodeId":"polyamide-612--pa612-","humanReadableId":"Polyamide 612 (PA612)","label":"Polyamide 612 (PA612)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyamide-66--pa66-","nodeId":"polyamide-66--pa66-","humanReadableId":"Polyamide 66 (PA66)","label":"Polyamide 66 (PA66)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer"},{"id":"polyphthalamide--ppa-","nodeId":"polyphthalamide--ppa-","humanReadableId":"Polyphthalamide (PPA)","label":"Polyphthalamide (PPA)","disabled":true,"children":[{"id":"copolyamide-66-6i--pa66-6i-","nodeId":"copolyamide-66-6i--pa66-6i-","humanReadableId":"Copolyamide 66/6I (PA66/6I)","label":"Copolyamide 66/6I (PA66/6I)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyphthalamide--ppa-"],"rootNode":"polymer"},{"id":"copolyamide-6t-66--pa6t-66-","nodeId":"copolyamide-6t-66--pa6t-66-","humanReadableId":"Copolyamide 6T/66 (PA6T/66)","label":"Copolyamide 6T/66 (PA6T/66)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyphthalamide--ppa-"],"rootNode":"polymer"},{"id":"copolyamide-6t-6i-66--pa6t-6i-66-","nodeId":"copolyamide-6t-6i-66--pa6t-6i-66-","humanReadableId":"Copolyamide 6T/6I/66 (PA6T/6I/66)","label":"Copolyamide 6T/6I/66 (PA6T/6I/66)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyphthalamide--ppa-"],"rootNode":"polymer"},{"id":"copolyamide-pa6i-6t--pa6i-6t-","nodeId":"copolyamide-pa6i-6t--pa6i-6t-","humanReadableId":"Copolyamide PA6I/6T (PA6I/6T)","label":"Copolyamide PA6I/6T (PA6I/6T)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyphthalamide--ppa-"],"rootNode":"polymer"},{"id":"polyamide-4t--pa4t-","nodeId":"polyamide-4t--pa4t--","humanReadableId":"Polyamide 4T (PA4T)","label":"Polyamide 4T (PA4T)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyphthalamide--ppa-"],"rootNode":"polymer"},{"id":"polyamide-6t--pa6t-","nodeId":"polyamide-6t--pa6t-","humanReadableId":"Polyamide 6T (PA6T)","label":"Polyamide 6T (PA6T)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyphthalamide--ppa-"],"rootNode":"polymer"},{"id":"polyamide-mxd6--pamxd6-","nodeId":"polyamide-mxd6--pamxd6-","humanReadableId":"Polyamide MXD6 (PAMXD6)","label":"Polyamide MXD6 (PAMXD6)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyphthalamide--ppa-"],"rootNode":"polymer"},{"id":"polyamide-pa6-6t--pa6-6t-","nodeId":"polyamide-pa6-6t--pa6-6t-","humanReadableId":"Polyamide PA6/6T (PA6/6T)","label":"Polyamide PA6/6T (PA6/6T)","disabled":true,"ancestors":["polymer","thermoplastic","polyamide--pa-","polyphthalamide--ppa-"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic","polyamide--pa-"],"rootNode":"polymer","childrenNr":8}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":15},{"id":"polyaryletherketone--paek-","nodeId":"polyaryletherketone--paek-","humanReadableId":"Polyaryletherketone (PAEK)","label":"Polyaryletherketone (PAEK)","disabled":true,"children":[{"id":"polyether-ketone--pek-","nodeId":"polyether-ketone--pek-","humanReadableId":"Polyether Ketone (PEK)","label":"Polyether Ketone (PEK)","disabled":true,"ancestors":["polymer","thermoplastic","polyaryletherketone--paek-"],"rootNode":"polymer"},{"id":"polyetherether-ketone--peek-","nodeId":"polyetherether-ketone--peek-","humanReadableId":"Polyetherether Ketone (PEEK)","label":"Polyetherether Ketone (PEEK)","disabled":true,"ancestors":["polymer","thermoplastic","polyaryletherketone--paek-"],"rootNode":"polymer"},{"id":"polyetherketoneketone--pekk-","nodeId":"polyetherketoneketone--pekk-","humanReadableId":"Polyetherketoneketone (PEKK)","label":"Polyetherketoneketone (PEKK)","disabled":true,"ancestors":["polymer","thermoplastic","polyaryletherketone--paek-"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":3},{"id":"polycarbonate--pc-","nodeId":"polycarbonate--pc-","humanReadableId":"Polycarbonate (PC)","label":"Polycarbonate (PC)","disabled":true,"ancestors":["polymer","thermoplastic"],"rootNode":"polymer"},{"id":"polyester","nodeId":"polyester","humanReadableId":"Polyester","label":"Polyester","disabled":true,"children":[{"id":"polybutylene-terephthalate--pbt-","nodeId":"polybutylene-terephthalate--pbt-","humanReadableId":"Polybutylene Terephthalate (PBT)","label":"Polybutylene Terephthalate (PBT)","disabled":true,"ancestors":["polymer","thermoplastic","polyester"],"rootNode":"polymer"},{"id":"polyethylene-terephthalate--pet-","nodeId":"polyethylene-terephthalate--pet-","humanReadableId":"Polyethylene Terephthalate (PET)","label":"Polyethylene Terephthalate (PET)","disabled":true,"ancestors":["polymer","thermoplastic","polyester"],"rootNode":"polymer"},{"id":"polyethylene-terephthalate-glycol--petg-","nodeId":"polyethylene-terephthalate-glycol--petg-","humanReadableId":"Polyethylene Terephthalate Glycol (PETG)","label":"Polyethylene Terephthalate Glycol (PETG)","disabled":true,"ancestors":["polymer","thermoplastic","polyester"],"rootNode":"polymer"},{"id":"polyglycolicide--pga-","nodeId":"polyglycolicide--pga-","humanReadableId":"Polyglycolicide (PGA)","label":"Polyglycolicide (PGA)","disabled":true,"ancestors":["polymer","thermoplastic","polyester"],"rootNode":"polymer"},{"id":"polytrimethylene-terephthalate--ptt-","nodeId":"polytrimethylene-terephthalate--ptt-","humanReadableId":"Polytrimethylene Terephthalate (PTT)","label":"Polytrimethylene Terephthalate (PTT)","disabled":true,"ancestors":["polymer","thermoplastic","polyester"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":5},{"id":"polyethylene--pe-","nodeId":"polyethylene--pe-","humanReadableId":"Polyethylene (PE)","label":"Polyethylene (PE)","disabled":true,"ancestors":["polymer","thermoplastic"],"rootNode":"polymer"},{"id":"polyimide--pi-","nodeId":"polyimide--pi-","humanReadableId":"Polyimide (PI)","label":"Polyimide (PI)","disabled":true,"children":[{"id":"polyamidimide--pai-","nodeId":"polyamidimide--pai-","humanReadableId":"Polyamidimide (PAI)","label":"Polyamidimide (PAI)","disabled":true,"ancestors":["polymer","thermoplastic","polyimide--pi-"],"rootNode":"polymer"},{"id":"polybenzimidazole--pbi-","nodeId":"polybenzimidazole--pbi-","humanReadableId":"Polybenzimidazole (PBI)","label":"Polybenzimidazole (PBI)","disabled":true,"ancestors":["polymer","thermoplastic","polyimide--pi-"],"rootNode":"polymer"},{"id":"polyetherimide--pei-","nodeId":"polyetherimide--pei-","humanReadableId":"Polyetherimide (PEI)","label":"Polyetherimide (PEI)","disabled":true,"ancestors":["polymer","thermoplastic","polyimide--pi-"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":3},{"id":"polyketone--pk-","nodeId":"polyketone--pk-","humanReadableId":"Polyketone (PK)","label":"Polyketone (PK)","disabled":true,"ancestors":["polymer","thermoplastic"],"rootNode":"polymer"},{"id":"polylactic-acid--pla-","nodeId":"polylactic-acid--pla-","humanReadableId":"Polylactic Acid (PLA)","label":"Polylactic Acid (PLA)","disabled":true,"ancestors":["polymer","thermoplastic"],"rootNode":"polymer"},{"id":"polymer-blend","nodeId":"polymer-blend","humanReadableId":"Polymer Blend","label":"Polymer Blend","disabled":true,"ancestors":["polymer","thermoplastic"],"rootNode":"polymer"},{"id":"polyolefin--po-","nodeId":"polyolefin--po-","humanReadableId":"Polyolefin (PO)","label":"Polyolefin (PO)","disabled":true,"children":[{"id":"polybutene--pb-","nodeId":"polybutene--pb-","humanReadableId":"Polybutene (PB)","label":"Polybutene (PB)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-"],"rootNode":"polymer"},{"id":"polyethylene--pe-","nodeId":"polyethylene--pe--","humanReadableId":"Polyethylene (PE)","label":"Polyethylene (PE)","disabled":true,"children":[{"id":"high-density-polyethylene--pe-hd-","nodeId":"high-density-polyethylene--pe-hd-","humanReadableId":"High Density Polyethylene (PE-HD)","label":"High Density Polyethylene (PE-HD)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-","polyethylene--pe--"],"rootNode":"polymer"},{"id":"high-molecular-weight-polyethylene--pe-hmw-","nodeId":"high-molecular-weight-polyethylene--pe-hmw-","humanReadableId":"High Molecular Weight Polyethylene (PE-HMW)","label":"High Molecular Weight Polyethylene (PE-HMW)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-","polyethylene--pe--"],"rootNode":"polymer"},{"id":"linear-low-density-polyethylene--pe-lld-","nodeId":"linear-low-density-polyethylene--pe-lld-","humanReadableId":"Linear Low Density Polyethylene (PE-LLD)","label":"Linear Low Density Polyethylene (PE-LLD)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-","polyethylene--pe--"],"rootNode":"polymer"},{"id":"low-density-polyethylene--pe-ld-","nodeId":"low-density-polyethylene--pe-ld-","humanReadableId":"Low Density Polyethylene (PE-LD)","label":"Low Density Polyethylene (PE-LD)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-","polyethylene--pe--"],"rootNode":"polymer"},{"id":"medium-density-polyethylene--pe-md-","nodeId":"medium-density-polyethylene--pe-md-","humanReadableId":"Medium Density Polyethylene (PE-MD)","label":"Medium Density Polyethylene (PE-MD)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-","polyethylene--pe--"],"rootNode":"polymer"},{"id":"ultra-high-molecular-weight-polyethylene--pe-uhmw-","nodeId":"ultra-high-molecular-weight-polyethylene--pe-uhmw-","humanReadableId":"Ultra High Molecular Weight Polyethylene (PE-UHMW)","label":"Ultra High Molecular Weight Polyethylene (PE-UHMW)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-","polyethylene--pe--"],"rootNode":"polymer"},{"id":"very-low-density-polyethylene--pe-vld-","nodeId":"very-low-density-polyethylene--pe-vld-","humanReadableId":"Very Low Density Polyethylene (PE-VLD)","label":"Very Low Density Polyethylene (PE-VLD)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-","polyethylene--pe--"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic","polyolefin--po-"],"rootNode":"polymer","childrenNr":7},{"id":"polymethylpentene--pmp-","nodeId":"polymethylpentene--pmp-","humanReadableId":"Polymethylpentene (PMP)","label":"Polymethylpentene (PMP)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-"],"rootNode":"polymer"},{"id":"polypropylene--pp-","nodeId":"polypropylene--pp-","humanReadableId":"Polypropylene (PP)","label":"Polypropylene (PP)","disabled":true,"ancestors":["polymer","thermoplastic","polyolefin--po-"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":4},{"id":"polyoxymethylene--pom-","nodeId":"polyoxymethylene--pom-","humanReadableId":"Polyoxymethylene (POM)","label":"Polyoxymethylene (POM)","disabled":true,"ancestors":["polymer","thermoplastic"],"rootNode":"polymer"},{"id":"polyphenyl","nodeId":"polyphenyl","humanReadableId":"Polyphenyl","label":"Polyphenyl","disabled":true,"children":[{"id":"polyphenyl-ether--ppe-","nodeId":"polyphenyl-ether--ppe-","humanReadableId":"Polyphenyl Ether (PPE)","label":"Polyphenyl Ether (PPE)","disabled":true,"ancestors":["polymer","thermoplastic","polyphenyl"],"rootNode":"polymer"},{"id":"polyphenylene-oxide--ppo-","nodeId":"polyphenylene-oxide--ppo-","humanReadableId":"Polyphenylene Oxide (PPO)","label":"Polyphenylene Oxide (PPO)","disabled":true,"ancestors":["polymer","thermoplastic","polyphenyl"],"rootNode":"polymer"},{"id":"polyphenylene-sulfide--pps-","nodeId":"polyphenylene-sulfide--pps-","humanReadableId":"Polyphenylene Sulfide (PPS)","label":"Polyphenylene Sulfide (PPS)","disabled":true,"ancestors":["polymer","thermoplastic","polyphenyl"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":3},{"id":"polysaccharide","nodeId":"polysaccharide","humanReadableId":"Polysaccharide","label":"Polysaccharide","disabled":true,"ancestors":["polymer","thermoplastic"],"rootNode":"polymer"},{"id":"polysulphones","nodeId":"polysulphones","humanReadableId":"Polysulphones","label":"Polysulphones","disabled":true,"children":[{"id":"polyether-sulfone--pes-","nodeId":"polyether-sulfone--pes-","humanReadableId":"Polyether Sulfone (PES)","label":"Polyether Sulfone (PES)","disabled":true,"ancestors":["polymer","thermoplastic","polysulphones"],"rootNode":"polymer"},{"id":"polyphenylsulphone--ppsu-","nodeId":"polyphenylsulphone--ppsu-","humanReadableId":"Polyphenylsulphone (PPSU)","label":"Polyphenylsulphone (PPSU)","disabled":true,"ancestors":["polymer","thermoplastic","polysulphones"],"rootNode":"polymer"},{"id":"polysulphone--psu-","nodeId":"polysulphone--psu-","humanReadableId":"Polysulphone (PSU)","label":"Polysulphone (PSU)","disabled":true,"ancestors":["polymer","thermoplastic","polysulphones"],"rootNode":"polymer"},{"id":"polysulphone-general--psu-","nodeId":"polysulphone-general--psu-","humanReadableId":"Polysulphone General (PSU)","label":"Polysulphone General (PSU)","disabled":true,"ancestors":["polymer","thermoplastic","polysulphones"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":4},{"id":"styrene","nodeId":"styrene","humanReadableId":"Styrene","label":"Styrene","disabled":true,"children":[{"id":"acrylonitrile-butadiene-styrene--abs-","nodeId":"acrylonitrile-butadiene-styrene--abs-","humanReadableId":"Acrylonitrile Butadiene Styrene (ABS)","label":"Acrylonitrile Butadiene Styrene (ABS)","disabled":true,"ancestors":["polymer","thermoplastic","styrene"],"rootNode":"polymer"},{"id":"acrylonitrile-styrene-acrylate--asa-","nodeId":"acrylonitrile-styrene-acrylate--asa-","humanReadableId":"Acrylonitrile Styrene Acrylate (ASA)","label":"Acrylonitrile Styrene Acrylate (ASA)","disabled":true,"ancestors":["polymer","thermoplastic","styrene"],"rootNode":"polymer"},{"id":"high-impact-polystyrene--hips-","nodeId":"high-impact-polystyrene--hips-","humanReadableId":"High Impact Polystyrene (HIPS)","label":"High Impact Polystyrene (HIPS)","disabled":true,"ancestors":["polymer","thermoplastic","styrene"],"rootNode":"polymer"},{"id":"methacrylate-butadiene-styrene--mbs-","nodeId":"methacrylate-butadiene-styrene--mbs-","humanReadableId":"Methacrylate Butadiene Styrene (MBS)","label":"Methacrylate Butadiene Styrene (MBS)","disabled":true,"ancestors":["polymer","thermoplastic","styrene"],"rootNode":"polymer"},{"id":"polystyrene--ps-","nodeId":"polystyrene--ps-","humanReadableId":"Polystyrene (PS)","label":"Polystyrene (PS)","disabled":true,"ancestors":["polymer","thermoplastic","styrene"],"rootNode":"polymer"},{"id":"styrene-acrylonitrile--san-","nodeId":"styrene-acrylonitrile--san-","humanReadableId":"Styrene Acrylonitrile (SAN)","label":"Styrene Acrylonitrile (SAN)","disabled":true,"ancestors":["polymer","thermoplastic","styrene"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":6},{"id":"vinyl","nodeId":"vinyl","humanReadableId":"Vinyl","label":"Vinyl","disabled":true,"children":[{"id":"ethylene-vinyl-acetate--evac-","nodeId":"ethylene-vinyl-acetate--evac-","humanReadableId":"Ethylene Vinyl Acetate (EVAC)","label":"Ethylene Vinyl Acetate (EVAC)","disabled":true,"ancestors":["polymer","thermoplastic","vinyl"],"rootNode":"polymer"},{"id":"polyvinyl-chloride--pvc-","nodeId":"polyvinyl-chloride--pvc-","humanReadableId":"Polyvinyl Chloride (PVC)","label":"Polyvinyl Chloride (PVC)","disabled":true,"ancestors":["polymer","thermoplastic","vinyl"],"rootNode":"polymer"}],"ancestors":["polymer","thermoplastic"],"rootNode":"polymer","childrenNr":2}],"ancestors":["polymer"],"rootNode":"polymer","childrenNr":19},{"id":"thermosetting","nodeId":"thermosetting","humanReadableId":"Thermosetting","label":"Thermosetting","disabled":true,"children":[{"id":"amino-resin","nodeId":"amino-resin","humanReadableId":"Amino Resin","label":"Amino Resin","disabled":true,"children":[{"id":"bismaleimide--bmi-","nodeId":"bismaleimide--bmi-","humanReadableId":"Bismaleimide (BMI)","label":"Bismaleimide (BMI)","disabled":true,"ancestors":["polymer","thermosetting","amino-resin"],"rootNode":"polymer"},{"id":"melamine-formaldehyde--mf-","nodeId":"melamine-formaldehyde--mf-","humanReadableId":"Melamine formaldehyde (MF)","label":"Melamine formaldehyde (MF)","disabled":true,"ancestors":["polymer","thermosetting","amino-resin"],"rootNode":"polymer"}],"ancestors":["polymer","thermosetting"],"rootNode":"polymer","childrenNr":2},{"id":"epoxy-resin--ep-","nodeId":"epoxy-resin--ep-","humanReadableId":"Epoxy Resin (EP)","label":"Epoxy Resin (EP)","disabled":true,"ancestors":["polymer","thermosetting"],"rootNode":"polymer"},{"id":"phenol-formaldehyde-resin--pf-","nodeId":"phenol-formaldehyde-resin--pf-","humanReadableId":"Phenol Formaldehyde Resin (PF)","label":"Phenol Formaldehyde Resin (PF)","disabled":true,"ancestors":["polymer","thermosetting"],"rootNode":"polymer"},{"id":"phthalonitrile--pn-","nodeId":"phthalonitrile--pn-","humanReadableId":"Phthalonitrile (PN)","label":"Phthalonitrile (PN)","disabled":true,"ancestors":["polymer","thermosetting"],"rootNode":"polymer"},{"id":"polyester-resin--up-","nodeId":"polyester-resin--up-","humanReadableId":"Polyester Resin (UP)","label":"Polyester Resin (UP)","disabled":true,"ancestors":["polymer","thermosetting"],"rootNode":"polymer"},{"id":"vinyl-ester-resin--ve-","nodeId":"vinyl-ester-resin--ve-","humanReadableId":"Vinyl Ester Resin (VE)","label":"Vinyl Ester Resin (VE)","disabled":true,"ancestors":["polymer","thermosetting"],"rootNode":"polymer"}],"ancestors":["polymer"],"rootNode":"polymer","childrenNr":6}],"rootNode":"polymer","childrenNr":3,"checked":false}],"categorySpecificFilter":{"name":"metal","disabled":false,"forms":[{"id":"bar","label":"Bar","checked":true},{"id":"billet","label":"Billet"},{"id":"casting","label":"Casting","disabled":true},{"id":"coil","label":"Coil"},{"id":"disc","label":"Disc","disabled":true},{"id":"flat","label":"Flat"},{"id":"flat-bar","label":"Flat Bar"},{"id":"foil","label":"Foil"},{"id":"forging","label":"Forging"},{"id":"full-section","label":"Full Section","disabled":true},{"id":"half-round-bar","label":"Half Round Bar","disabled":true},{"id":"hexagonal-bar","label":"Hexagonal Bar"},{"id":"hexagonal-bright-bar","label":"Hexagonal Bright Bar","disabled":true},{"id":"hexagonal-rod","label":"Hexagonal Rod"},{"id":"hexagonal-wire","label":"Hexagonal Wire"},{"id":"hollow-bar","label":"Hollow Bar","disabled":true},{"id":"ingot","label":"Ingot","disabled":true},{"id":"pipe","label":"Pipe","disabled":true},{"id":"plate","label":"Plate"},{"id":"powder","label":"Powder","disabled":true},{"id":"profile","label":"Profile"},{"id":"profile-wire","label":"Profile Wire","disabled":true},{"id":"rod","label":"Rod"},{"id":"round-bar","label":"Round Bar"},{"id":"round-bright-bar","label":"Round Bright Bar","disabled":true},{"id":"round-rod","label":"Round Rod"},{"id":"round-wire","label":"Round Wire"},{"id":"seamless-tube","label":"Seamless Tube"},{"id":"sheet","label":"Sheet"},{"id":"spring","label":"Spring","disabled":true},{"id":"squar-bar","label":"Squar Bar","disabled":true},{"id":"square-bar","label":"Square Bar"},{"id":"strip","label":"Strip"},{"id":"tube","label":"Tube"},{"id":"welded-tube","label":"Welded Tube","disabled":true},{"id":"wire","label":"Wire"}],"fillers":[],"modifications":[],"processing":[],"certifications":[],"primaryPhase":[],"secondaryPhase":[]},"tags":[{"id":"form","value":"bar","label":"Bar"}],"suppliers":[{"id":"dest","label":"Deutsche Edelstahlwerke (DEW)","materialsCount":93},{"id":"ugit","label":"Ugitech","materialsCount":50},{"id":"sver","label":"Sverdrup Steel AS","materialsCount":20},{"id":"salo","label":"Salomon's Metalen","materialsCount":16},{"id":"hemp","label":"Hempel Special Metals","materialsCount":4},{"id":"vdmm","label":"VDM Metals","materialsCount":1},{"id":"song","label":"Dongguan songshun mould steel Co., Ltd.","materialsCount":13},{"id":"ambi","label":"Ambica Steels Limited","materialsCount":10}]},"collapsed":{"categories":[]},"specification":{"queryParams":"categories=steel\u0026tags=form:bar","clauses":[{"type":"tags","id":"form","value":"bar","label":"Bar"}]},"tags":[{"id":"form","value":"bar","label":"Bar"}],"view":"result-list","sidebarCollapsed":false,"unitsSystem":"metric","polymerFilter":{"disabled":true}},"supplierSearch":{"specification":{"grade":{"value":"","touched":false},"form":{"value":"","touched":false},"country":{"value":[]},"certification":{"value":[]}},"grades":[],"forms":[],"countries":[],"certifications":[],"results":{"companies":{"data":[],"companiesCount":20,"equivalentsCount":20,"page":1}},"view":"result-list","map":{"selectedLocation":{"id":"Location 1","companyCode":"Supplier A"},"locations":[{"companyCode":"Supplier A","id":"Location 1","position":{"lat":41.3954,"lng":20.162}},{"companyCode":"Supplier A","id":"Location 2","position":{"lat":41.3917,"lng":25.1649}},{"companyCode":"Supplier A","id":"Location 3","isEquivalent":true,"position":{"lat":49.3773,"lng":28.1585}},{"companyCode":"Supplier A","id":"Location 4","position":{"lat":45.3797,"lng":12.1682}},{"companyCode":"Supplier A","id":"Location 5","isEquivalent":true,"position":{"lat":38.3773,"lng":37.1915}}]}},"categoriesTree":{"list":[],"selected":{},"recommended":{}},"messages":{"conversationsList":[],"currentConversation":null,"selectedConversationId":""},"messagesAdmin":{"adminConversationsList":[],"adminCurrentConversation":"","adminCurrentRecommendedSuppliers":[],"adminCurrentLinkedSuppliers":[],"selectedAdminConversationId":"","filterType":"code","filterValue":"","resolution":"","sort":"desc","sortingField":"createdDate","size":10,"page":0,"conversationsCount":0,"pagesCount":0,"suppliers":[]},"suppliersFilter":{"suppliersTree":null,"selectedSuppliers":null},"undo":{},"propertiesTree":{"list":[],"selected":{}},"retargeting":{"title":"","data":[],"selectedUsersIds":[],"singleUserId":""},"formData":{"materialId":"","companyCodes":[],"categories":[],"formName":"","verifiedDistributors":[]},"supplierDashboard":{"currentDashboardView":"","currentDashboardMenuSubItem":null,"dashboardInfo":{}},"applicationsFilter":{"applications":[],"selectedApplications":[]},"unseen":{"unseenConversationsCount":0},"ashbyChart":{"data":{},"zoomedViewData":{"supplierMaterials":[],"context":{}},"clickedClusters":[],"suppliers":[]},"campaigns":{"categoryCampaigns":[],"defaultCampaigns":[{"name":"Default Ad","category":"matmatch","supplierId":"Default","slots":["Top"],"targetUrl":"https://go.matmatch.com/advertise","targetWindow":"_blank","banners":[{"size":"728x90","imageId":"d792d789-c5c3-4a70-808b-3ec5ff2d9d33"}]}]},"searchBar":{"show":true},"advancedSearchPlotMaterials":{"ashbyChartSettings":{"propertyX":"density","propertyY":"elastic-modulus"}}}},"page":"/advanced-search","query":{"categories":"steel","tags":"form:bar"},"buildId":"d4287122","runtimeConfig":{"NODE_ENV":"production","MATMATCH_CONFIG_ENV":"production","SENTRY_DSN":"https://adb8811c666c47d48ea65639f264583b@sentry.io/189857","RECAPTCHA_KEY":"6LcKSOAUAAAAALB76MApsk-XoTTzEBY2-oqMwwLm","GA_ENABLED":true,"GA_ENABLE_LOG_TO_CONSOLE":false,"LEADFEEDER_ENABLED":true,"LEADFEEDER_TRACKING_ID":"Yn8J1xYRVZwgW0Rk","HUBSPOT_ENABLED":true,"HUBSPOT_TRACKING_ID":"4597184","HUBSPOT_SUBSCRIPTION_ID":"7207954","HUBSPOT_NEWSLETTER_FORM_ID":"406d64d3-90e0-4174-902c-5fb4e72743ee","HUBSPOT_CONTACT_FORM_ID":"1d836df6-1a29-42af-b067-822ad3021c1f","HUBSPOT_SUSTAINABILITY_FORM_ID":"ac183d3d-8966-4086-b781-2d843b345377","HUBSPOT_REQUEST_BOARD_FORM_ID":"0726b812-0d7c-4b9a-848b-ee6797c92db0","HUBSPOT_CONTACT_FORM_ID_FIELD_NAMES":{"supplyMaterialsFieldName":"is_materials_supplier__c"},"HUBSPOT_REQUEST_MATERIAL_DATA_FORM_ID":"bce2daac-e6e7-41cb-ba4c-b4e27c7fec37","HUBSPOT_REQUEST_BOOK_A_DEMO":"ed5d8d19-d961-48cf-b58c-f192500e6eb7","HUBSPOT_REQUEST_BOOK_A_DEMO_FORM_LINK":"https://share.hsforms.com/17V2NGdlhSM-1jPGSUA5utw2qj7k","HUBSPOT_REQUEST_BOOK_A_DEMO_FIELD_NAMES":{"supplierTypesFieldName":"plsuppliertype__c"},"HUBSPOT_REQUEST_BOOK_A_MEETING":"b4b7750c-75f8-4741-8fe6-daec03c1454b","HUBSPOT_GET_IT_NOW":"818cf677-3f93-4f86-83dc-43996c9c8b2d","ADBUTLER_ENABLED":true,"ADBUTLER_ACCOUNT_ID":181075,"ADBUTLER_ADVANCED_SEARCH_ZONE_ID":470439,"ADBUTLER_MATERIAL_PAGE_ZONE_ID":470587,"ADBUTLER_CONTENT_HUB_ZONE_ID":473203,"GA_TRACKING_ID":"UA-85033665-5","GA_OPTIMIZE_ID":"GTM-KQK3NFF","GTM_ID":"GTM-PV6RPFJ"},"isFallback":false,"customServer":true,"gip":true,"appGip":true,"scriptLoader":[]}</script></body></html>

Using the ‘find_all’ function of soup we can find all these blocks by specifying the details of the block, i.e. <div class=”job_seen_beacon>

The length of jobs_soup should be the number of job panels on the page, and each should be for a specific job. The output for the first is shown below (different search criteria).

#collapse-output
jobs_soup=soup.find_all(name="div", attrs={"class":"job_seen_beacon"})

jobs_soup[0]

We now need to pick out the details of the job from these blocks. To do this we go back to Chrome.

Clicking on one of the job titles displays the job title is given as:

<span title="Data Analyst">Data Analyst</span>

There are a few ways we can extract this. What we want is a “span” with a feature called “title”. One way is to scroll through all “div” and find one with a title, using the except to help if it doesn’t have a title.

div=jobs_soup[0]
for ab in div.find_all(name="span"):
            
   try:                            
      aJob=ab['title']   
          
   except:
      pass
        
aJob
'Electricians Mate / Electrical Improver'

Each category we want to extract is slightly different so requires a slightly different approach. Although, the same procedure of using the developer tools in chrome and then modifying how the soup is searched is used.

For the company name it is within <span class=”companyName”><a>Company X…

So can be accessed from the string within the span with class= companyName .

aaa=div.find_all(name="span", attrs={"class":"companyName"})
aaa[0].string
'Electrical Avenue'

Function to scrape

This can be done for other details we might want from the other job details as below in a single function

def extract_title(soup): 
    #initialse
    jobs = []
    company=[]
    pay=[]
    descr=[]
    
    #"job_seen_beacon" is the div for each job panel 
          # would be better to use <a> tag with 
    for div in soup.find_all(name="div", attrs={"class":"job_seen_beacon"}):

        #for the company name is in span tag with class=companyName
        aComp="-"
        for a in div.find_all(name="span", attrs={"class":"companyName"}):
            try:
                aComp=a.string
            except:
                print('exception comp')
                pass 
        company.append(a.string)
        
        aJob='-'
        for ab in div.find_all(name="span"):
            try:
                aJob=ab['title']              
            except: #Exception
                pass
        jobs.append(aJob)
        
        aPay="0"
        for abc in div.find_all(name="span", attrs={"class":"salary-snippet"}):
            try:
                aPay=abc.string
            except:
                print('exception pay')
                pass
        pay.append(aPay)

        
        aDescr=''
        abc = div.find_all(name='div',attrs={"class":"job-snippet"})
        for abcd in abc[0].find_all(name='li'):
            try:
                aDescr=aDescr+abcd.getText()+'-'
            except:
                print('exception decr')
                pass
        
        descr.append(aDescr)
        
    sa=soup.find_all(name='a',attrs={"target":"_blank"})
    urlss=[]
    
    strURLstart='https://www.indeed.co.uk'
    for aSect in sa:
        li=[]
        try:
            aCheck=aSect['id']
            li.append(aCheck)
            urlss.append(strURLstart+aSect['href'])
        except:
            pass
            
    return jobs, company, pay, descr, urlss

But there may be more than the first page, so creating a function that can just take:

  1. Job details
  2. Location
  3. Maximum number of returned results.

We get the following:

## Cycle through pages and call inner function 'extract_title'
def extract_outer(jobtype,location,max_results):
    import requests
    import bs4
    from bs4 import BeautifulSoup
    import pandas as pd
    import numpy as np
    import copy as copy
    import time
    
    #Split job into two string with plus - i.e. "road sweeper"->"road + sweeper"
    jobtype=jobtype.replace(' ',' + ')
    
    #initialise values
    df=pd.DataFrame(columns=['Company','Job Title','Pay','Details','URL'])
    
    #Scroll through pages i.e. 0-9 in page1 --10-19 in page2 (in theory!)
    i=0
    for start in range(0, max_results, 10):#Add 10 on till a max
        
        #initialise values
        num = (len(df) + 1)
        jobs_, company_, pay_, descr_, urlss_ = [], [] , [], [], []
        num=str(start)
        
        #add a pause
        time.sleep(1)
        
        #get URL
        URL="https://uk.indeed.com/jobs?q="+jobtype+"&l="+location+"&start="+num#conducting a request of the stated URL above:
        page = requests.get(URL)#specifying a desired format of “page” using the html parser - this allows python to read the various components of the page, rather than treating it as one long string.
        soup = BeautifulSoup(page.text, "html.parser")#printing soup in a more structured tree format that makes for easier reading
        
        #call the inner function
        jobs_, company_, pay_, descr_, urlss_=extract_title(soup)
        
        # append the lists
        if i==0:          ## on 1st go assign df values
            df['Company']=company_
            df['Job Title']=jobs_
            df['Pay']=pay_
            df['Details']=descr_
            df['URL']=urlss_
        else:            ## on next ones concat df with a new df 
            df_=pd.DataFrame(columns=['Company','Job Title','Pay','Details','URL'])
            df_['Company']=company_
            df_['Job Title']=jobs_
            df_['Pay']=pay_
            df_['Details']=descr_
            df_['URL']=urlss_
            
            df=pd.concat(
                [df,df_ 
                
                ]
                        )
            del df_
        i=i+1
    
        df=df.reset_index(drop=True)#reset index- drop stops index becoming a column
    return df

Which can be called to return a pandas DataFrame with:

  1. Company
  2. Job Title
  3. Pay
  4. Job Details
  5. URL for more details

The function is called like this:

jobtitle='data analyst'
maxRes=50
locat="Swansea%2C+Swansea"
fname="indeed_"+jobtitle+'_'+locat+'_maxRes='+str(maxRes)+'.csv'
df=extract_outer(jobtitle,locat,maxRes)
df.head(10)
Company Job Title Pay Details URL
0 CAIS Data / BI Analyst & Developer 0 This role will be instrumental in developing a... https://www.indeed.co.uk/company/CAIS/jobs/Dat...
1 Jisc Scholarly Communications Data Analyst 0 The Data analyst will be responsible for colle... https://www.indeed.co.uk/pagead/clk?mo=r&ad=-6...
2 Digital Health and Care Wales Support and Business Analyst 0 Until recently this type of information was he... https://www.indeed.co.uk/rc/clk?jk=c95fc84ef57...
3 ERS Administration Services Senior Risk Analyst 0 Are you an experienced Risk Analyst looking fo... https://www.indeed.co.uk/rc/clk?jk=c239d92f7fa...
4 IQUW Senior Risk Analyst 0 Are you an experienced Risk Analyst looking fo... https://www.indeed.co.uk/rc/clk?jk=fd313f82db9...
5 Momentum Security Recruitment Business Analyst 0 Collection and analysis of data to support man... https://www.indeed.co.uk/company/Momentum-Secu...
6 Public Health Wales NHS Trust Principal Information Analyst / Finance Delive... 0 The ideal candidate will be enthusiastic about... https://www.indeed.co.uk/rc/clk?jk=2cbca7681eb...
7 IQUW Group Senior Risk Analyst 0 As a key member of the Risk Management Team, t... https://www.indeed.co.uk/company/IQUW-Group/jo...
8 Momentum Security Recruitment Business Test Analyst 0 Understanding of data creation and manipulatio... https://www.indeed.co.uk/company/Momentum-Secu...
9 Public Health Wales NHS Trust Senior Business Analyst - Finance Delivery Unit 0 You will work within the Analytics Centre of E... https://www.indeed.co.uk/rc/clk?jk=d354ad34b6a...

Looking inside the individual pages

So far the data frame just has details available on the main search page. The information is limited (see details tab below).

More details can be found on the individual pages

df.iloc[0].Details
'This role will be instrumental in developing a new infrastructure of data development and insights.-As part of this we are introducing new tools, technology and…-'

For each job the same webscraping procedure can be used to get information from the job page.

Below is how to get the full description

URL=df.URL[0]
page = requests.get(URL)#specifying a desired format of “page” using the html parser - this allows python to read the various components of the page, rather than treating it as one long string.
soup = BeautifulSoup(page.text, "html.parser")#printing soup in a more structured tree format that makes for easier reading
asoup=soup.find(name="div", attrs={"id":"jobDescriptionText"})
asoup2=asoup.text
asoup2
'An opportunity has arisen for an enthusiastic and self-motivated individual to join our newly formed Data and Evaluation Department. Adferiad are embarking on a new Data, Insight and CRM Delivery Plan to maximise our data as an asset, create an insight driven culture and modernise our ways of working. As part of this we are introducing new tools, technology and processes to continually improve our data and CRM capabilities; and empower a digital-first approachThis is a new and exciting role and is based in our busy Office in Llansamlet, Swansea; however, as Adferiad provide services across all counties in Wales, some travel may be required. Working within a team of Data and IT colleagues, this role is an exciting opportunity for those interested in a career within the analytic field. This role will be instrumental in developing a new infrastructure of data development and insights.Reference ID: H69Job Type: PermanentSalary: £29,226.00 per yearBenefits:On-site parkingSchedule:Monday to Friday'

Details of this could then be extracted to look for key words, salary etc. Using Natural Language Processing.

Indeed overview

At this stage one might think “I can do this in my web browser“. Which is obviously true.

But this data can now be processed further to find other things. Maybe we want to compare pay in different regions, look for where there are more jobs of a certain type, interrogate the jobs details for specific information.

Example using selenium

This uses the same methodology as above but instead uses Selenium which controls a web browser.

This means links can be clicked, or other boxes can be okayed (e.g. accept cookie box).

Since this was done it appears the website has slightly changed as the code does not work.

# Some imports

import requests
import bs4
from bs4 import BeautifulSoup
import pandas as pd
from selenium.webdriver.common.keys import Keys
from selenium import webdriver
import time
import os

Get web driver for chrome from https://chromedriver.chromium.org/downloads

Then use it to open the website.

#hide
URLweb = "https://matmatch.com/advanced-search?categories=steel&tags=form:bar"
browser_loc='C:/Users/44781/pyproj/chromedriver.exe'
#import chrome webdriver

URL = URLweb
browser = webdriver.Chrome(browser_loc)
browser.get(URL)

Chrome is now controlled from this notebook

#get rid of cookie q
elem2=browser.find_element_by_tag_name('button')
browser.execute_script("arguments[0].click();", elem2)

The functions

1. innerPage

this scrolls through each search page

and calls OneSearchPage

2. OneSearchPage

One of the search pages

For each link calls gothrough_A_Link

4. getTableData

getTableData

def innerPage(browser):
    import time
    f=0
    ii=0
    #first time through
    dfAll=OneSearchPage(browser)
    foutname='steel_bar_'+str(ii)
    dfAll.to_csv(foutname)
    print('ii ',ii)
    while f==0:
        if ii<200:
            
            #find Next page button and click it
            elemNext=browser.find_elements_by_xpath("//button[contains(@data-test-item,'next-page')]")
            try:
                elemNext[0].click()#this should fail if last page
            except:
                f=1
                print('failed',elemNext[0].text)
                break
            time.sleep(1)
            #next timeS through
            dfAll=OneSearchPage(browser)
            
            ii=ii+1
            foutname='steel_bar_'+str(ii)
            dfAll.to_csv(foutname)
            print('ii ',ii)
            
        else:
            break
            
        
        
    return dfAll
def OneSearchPage(browser,*dfnew):
    #find each element with <a> and contain materials
    elem2=browser.find_elements_by_xpath("//a[contains(@href,'/materials/')]")

    if 'df' in locals():
        del df
    if 'df_' in locals():
        del df_


    i=0
    for eel in elem2:
        if i<200:
            print(eel.text)
            time.sleep(1)

            if len(dfnew)>0:##if we give dfnew as input
                
                df_=gothrough_A_Link(eel,browser)
                if i==0:
                    dfOne=dfnew[0].append(df_)
                else:
                    dfOne=dfOne.append(df_)
            else:#if don't give input dfnew
                if i==0:#on 1st call create dfOne
                    dfOne=gothrough_A_Link(eel,browser)
                else:#on 2nd call append
                    df_=gothrough_A_Link(eel,browser)
                    dfOne=dfOne.append(df_)

            i=i+1
            time.sleep(1)
            print('i ',i)
        else:
            break
    return dfOne
def gothrough_A_Link(pageElement,browser):
    import time
    from selenium.webdriver.common.keys import Keys 
    #give like gothrough_A_Link(elem2[ii],browser)
    time.sleep(.6)
#     print(pageElement)
    #open element- but in new tab
    try:
        pageElement.click()#send_keys(Keys.RETURN)
    except:
        time.sleep(0.9)
        time.sleep(0.9)
    #switch to new window

    #get current window
    p = browser.current_window_handle
    #get windows
    chwd=browser.window_handles
    for w in chwd:
    #switch focus to child window
        if(w!=p):
            browser.switch_to.window(w)
            break
    time.sleep(0.9)
    
    
    #get current url
    url_current=browser.current_url
    
    #get table details
    
    df=getTableData(url_current)
    
    
    #close new window
    time.sleep(0.9)
    browser.close()
    browser.switch_to.window(browser.window_handles[0])

    return df

############################################################################################

############################################################################################


    
def getTableData(URL):
    import requests
    import bs4
    from bs4 import BeautifulSoup
    import pandas as pd
    
    
    res = requests.get(URL)
    soup = BeautifulSoup(res.content,'lxml')

    # get alloy name
    titla=soup.find('h1').text

#     print(titla)
    #get alloy description
    descripta=soup.find('div',{'class':'common__SubSectionWrapper-sc-3st4qy-0 lbsGSv'}).getText()
    descripta=descripta.replace('Description','Description: ')
    descripta=descripta.split('More technical information')[0]#sometimes occurs


    #get table
    table = soup.find_all('table')

    tdAll=[]
    nomsAll=[]
    accepted_strings={'Density','Elastic modulus','Elongation','Tensile strength','Yield strength'}
    for ta in table:
    #     print('-------------------\n',ta.text[0:30])
        tatr=ta.find_all('tr')
        textdegC="°C"
        for trr in tatr:
    #         print(trr.text[0:30])
            tatrtd=trr.find_all('td')
            try:
                textaStartRow=tatrtd[0].text
                
                if textaStartRow=="Density":
                    nomsAll.append(textaStartRow)
                    
                    if 'g/cm' in tatrtd[1].p.text:
                        tdAll.append(tatrtd[1].p.text)
                    elif 'g/cm' in tatrtd[2].p.text:
                        tdAll.append(tatrtd[2].p.text)
                        
                elif textaStartRow=="Elastic modulus":
                    nomsAll.append(textaStartRow)
                    if "textdegC" in tatrtd[1].text:#if has deg C
                        tdAll.append(tatrtd[2].p.text)
                    elif not tatrtd[1].text:
                        tdAll.append(tatrtd[2].p.text)
                    else:
                        tdAll.append(tatrtd[1].p.text)
                    
                elif textaStartRow=="Elongation":
                    nomsAll.append(textaStartRow)
                    
                    if "textdegC" in tatrtd[1].text:#if has deg C
                        tdAll.append(tatrtd[2].p.text)
                    elif not tatrtd[1].text:
                        tdAll.append(tatrtd[2].p.text)
                    else:
                        tdAll.append(tatrtd[1].p.text)
                    
                elif textaStartRow=="Charpy impact energy, V-notch":
                    nomsAll.append(textaStartRow)
                    
                    if "textdegC" in tatrtd[1].text:#if has deg C
                        tdAll.append(tatrtd[2].p.text)
                    elif not tatrtd[1].text:
                        tdAll.append(tatrtd[2].p.text)
                    else:
                        tdAll.append(tatrtd[1].p.text)
                        
                elif textaStartRow=="Tensile strength":
                    nomsAll.append(textaStartRow)
                   
                    if "textdegC" in tatrtd[1].text:#if has deg C
                        tdAll.append(tatrtd[2].p.text)
                    elif not tatrtd[1].text:
                        tdAll.append(tatrtd[2].p.text)
                    else:
                        tdAll.append(tatrtd[1].p.text)
                        
                elif textaStartRow=="Yield strength":
                    nomsAll.append(textaStartRow)
                    
                    if "textdegC" in tatrtd[1].text:#if has deg C
                        tdAll.append(tatrtd[2].p.text)
                    elif not tatrtd[1].text:
                        tdAll.append(tatrtd[2].p.text)
                    else:
                        tdAll.append(tatrtd[1].p.text)
        
            except:
                
                pass
            
     #Chemical composition
    tableComp=soup.find('p',text='Chemical properties')#know it is below a paragraph with title Chemical Properties 
    try:
        taatta=tableComp.next_sibling
        trComp=taatta.find_all('tr')
        compPC=[]
        compID=[]
        for trr in trComp:
            try:
                tdd=trr.find_all('td')
                nomsAll.append(tdd[0].text)
                tdAll.append(tdd[1].p.text)
            except:
                pass
    except:
        pass
    
     #if we want to
    dff=pd.DataFrame(tdAll).transpose()
    print(nomsAll,tdAll)
    dff.columns=nomsAll
    
    dff['Description']=descripta
    dff.insert(0, 'Alloy', titla)
    
    return dff
dfOUT=innerPage(browser)

#and do some cleaning of data
df = cleanDFdatFunc(dfOUT)

Look at the data

#hide
df = pd.read_csv("C:/Users/44781/pyproj/JobScraping/steel_sheet_Comb_Clean")
df.drop(columns=['Unnamed: 0'],inplace=True)
df.head()
Alloy Description Elastic modulus Elongation Charpy impact energy, V-notch Tensile strength Yield strength Carbon Chromium Copper ... Zirconium Cobalt Tungsten Antimony Arsenic Bismuth Calcium Lead Tin Iron
0 VDM® Alloy 926 Description: 1.4529 (X1NiCrMoCuN25-20-7) is an... 193.0 0.0 0 650.0 0.0 0.020 20.5 1.00 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 45.240
1 1.4507 / X2CrNiMoCuN25-6-3 Description: The material 1.4507 is a duplex s... 200.0 0.0 0 800.0 0.0 0.030 25.0 1.75 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 59.715
2 1.4529 / X1NiCrMoCuN25-20-7 Description: The material 1.4529 is an austeni... 195.0 0.0 0 750.0 0.0 0.020 20.0 1.00 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 45.740
3 1.4521 / X2CrMoTi18-2 Description: The material 1.4521 is a ferritic... 220.0 0.0 0 550.0 0.0 0.025 18.5 0.00 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 76.440
4 DIN 17103 Grade TStE 285 normalized or normali... Description: The fine grained steel TStE 285 i... 217.0 24.0 0 420.0 255.0 0.160 0.3 0.20 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 97.485

5 rows × 32 columns

import matplotlib.pyplot as plt
coluse='Tensile strength'
coluse2='Elongation'

df_=df[df[coluse]>0]
df_=df_[df_[coluse2]>0]
plt.scatter(x=df_[coluse2],y=df_[coluse])

plt.xlabel(coluse2 +'%')
plt.ylabel(coluse +' MPa')
plt.grid('on')

Do some Quick Machine Learning

  • X=composition to predict Y=Elongation or Yield strength or Tensile strength
  • Used RandomForestRegressor from scikit learn https://scikit-learn.org/stable/
    1. 30% test 70% to train
  • Results from test data when trained on train data
    1. MAE: 2.7%
    2. Tensile strength MAE: 74 Mpa
    3. Yield strength MAE: 84 MPa