diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 685ab1d9..2c7c7318 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - - repo: https://github.com/humitos/mirrors-autoflake - rev: v1.1 + - repo: https://github.com/PyCQA/autoflake + rev: v2.2.1 hooks: - id: autoflake args: ['-i', '--remove-all-unused-imports'] diff --git a/ansys_optical_automation/application/Deactivate FOP.py b/ansys_optical_automation/application/Deactivate FOP.py new file mode 100644 index 00000000..dbb490f9 --- /dev/null +++ b/ansys_optical_automation/application/Deactivate FOP.py @@ -0,0 +1,88 @@ +# ---------------------------------------------------------------------------------------- +# Script Description: +# +# This script mimics the behavior of the legacy Deactivate SOP feature that was +# available in Speos for Catia. Its main function is to replace the surface optical +# property (SOP) of selected materials with a generic polished surface type. +# +# The idea is that when users want to "disconnect", the script will: +# • Check if the selected material has a surfacic optical property. +# • Change its SOP type to "OpticalPolished". +# • Rename the material by appending " --- POLISHED --- " to indicate the override. +# +# Steps: +# 1. Loop through all selected materials from the active selection. +# 2. Skip any materials already marked as polished. +# 3. For each valid material: +# - Check if it exists in the current Speos material list. +# - If its optical property type is "Surfacic", convert it to "OpticalPolished". +# - Rename it to reflect the change. +# - If not surfacic, show an informative message. +# ---------------------------------------------------------------------------------------- +import ctypes + +# MessageBox flags +MB_OK = 0x00000000 +MB_ICONINFORMATION = 0x00000040 +MB_TOPMOST = 0x00040000 + + +# Get handle to foreground window +def get_foreground_hwnd(): + """ + Get the handle (HWND) of the current foreground window. + + This function uses the Windows API to retrieve the window handle + of the application that currently has the user's focus. + + Returns + ------- + int + Handle (HWND) of the foreground window. + """ + return ctypes.windll.user32.GetForegroundWindow() + + +# Function to show a topmost message box +def show_message(message, title="Message"): + """ + Display a topmost message box with an information icon. + + This function shows a Windows message box that stays on top of all windows. + It retrieves the handle of the current foreground window to anchor the message box. + + Parameters + ---------- + message : str + The message text to display. + title : str, optional + The title of the message box. Default is "Message". + + Returns + ------- + int + The result code from the MessageBoxW function (usually MB_OK). + """ + hwnd = get_foreground_hwnd() + ctypes.windll.user32.MessageBoxW(hwnd, message, title, MB_OK | MB_ICONINFORMATION | MB_TOPMOST) + + +material_selections = Selection.GetActive().Items + +for material in material_selections: + try: + # Skip if material name already contains "--- POLISHED ---" + if "--- POLISHED ---" in material.Name: + continue + + material__ = SpeosSim.Material.Find(material.Name) + if material__ is None: + show_message("Property " + str(material.Name) + " not found in the material list", "Material Not Found") + else: + if material__.OpticalPropertiesType == SpeosSim.Material.EnumOpticalPropertiesType.Surfacic: + material__.SOPType = SpeosSim.Material.EnumSOPType.OpticalPolished + material__.Name = material__.Name + " --- POLISHED --- " + else: + show_message("Property " + str(material.Name) + " is not an FOP!", "Wrong Type") + except Exception as error: + show_message("Error processing material " + str(material.Name) + ": " + str(error), "Error") diff --git a/ansys_optical_automation/application/GPU Compute All.py b/ansys_optical_automation/application/GPU Compute All.py new file mode 100644 index 00000000..186ff066 --- /dev/null +++ b/ansys_optical_automation/application/GPU Compute All.py @@ -0,0 +1,35 @@ +# ---------------------------------------------------------------------------------------- +# Script Description: +# +# This script creates and configures a Speos Direct Simulation automatically importing +# all elements and enabling GPU-based computation. +# +# Main Objectives: +# • Create a new Direct Simulation. +# • Assign it a default name ("Complete_Simulation") or a timestamped fallback if the +# default name is already in use or causes a conflict. +# • Automatically select all geometries, light sources, and sensors present in the model. +# • Set a predefined number of rays (1e7) for the simulation. +# • Launch the simulation using **GPU Compute** to accelerate performance. +# ---------------------------------------------------------------------------------------- + +from System import DateTime + +# Create a new Speos Direct Simulation +direct = SpeosSim.SimulationDirect.Create() +try: + direct.Name = "Complete_Simulation" +except Exception as e: + print(e) # Print the actual exception + # Get current date and time + now = DateTime.Now + timestamp = now.ToString("yyyyMMdd_HHmmss") # Format: 20250527_141530 + # Assign a unique name using timestamp + direct.Name = "Complete_Simulation_" + timestamp +# Select all available geometries, sources, and sensors +direct.Geometries.SelectAll() +direct.Sources.SelectAll() +direct.Sensors.SelectAll() +# Set simulation parameters +direct.NbRays = 1e7 +direct.GpuCompute() diff --git a/ansys_optical_automation/application/Reactivate Library FOP.py b/ansys_optical_automation/application/Reactivate Library FOP.py new file mode 100644 index 00000000..04e2d98e --- /dev/null +++ b/ansys_optical_automation/application/Reactivate Library FOP.py @@ -0,0 +1,58 @@ +# ---------------------------------------------------------------------------------------- +# Script Description: +# +# This script restores the original surface optical properties (SOP) of Speos materials +# that were previously "disconnected" with "Deactivate SOP". +# +# This restoration script reactivates the previously disabled SOPs by: +# +# • Checking if the selected material is of type "Surfacic" +# • Verifying if its SOP type is currently set to `OpticalPolished` +# • Reverting the SOP type back to `Library`, which re-enables the linked surface property +# • Cleaning up the material name by removing the `"--- POLISHED ---"` suffix (if present) +# +# If any material is not of type Surfacic, or is not marked as OpticalPolished, +# an informative message box will notify the user. +# ---------------------------------------------------------------------------------------- +import ctypes + +# MessageBox flags +MB_OK = 0x00000000 +MB_ICONINFORMATION = 0x00000040 +MB_TOPMOST = 0x00040000 + + +# Get handle to foreground window +def get_foreground_hwnd(): + return ctypes.windll.user32.GetForegroundWindow() + + +# Function to show a topmost message box +def show_message(message, title="Message"): + hwnd = get_foreground_hwnd() + ctypes.windll.user32.MessageBoxW(hwnd, message, title, MB_OK | MB_ICONINFORMATION | MB_TOPMOST) + + +material_selections = Selection.GetActive().Items + +for material in material_selections: + try: + material__ = SpeosSim.Material.Find(material.Name) + if material__ is None: + show_message("Property " + str(material.Name) + " not found in the material list", "Material Not Found") + else: + if material__.OpticalPropertiesType == SpeosSim.Material.EnumOpticalPropertiesType.Surfacic: + if material__.SOPType == SpeosSim.Material.EnumSOPType.OpticalPolished: + material__.SOPType = SpeosSim.Material.EnumSOPType.Library + if "--- POLISHED ---" in material__.Name: + material__.Name = material__.Name.replace("--- POLISHED ---", "") + material__.Compute() + # No popup here — silent success + else: + show_message( + "Material " + str(material__.Name) + " is not defined as OpticalPolished", "Not OpticalPolished" + ) + else: + show_message("Property " + str(material.Name) + " is not a Surfacic material", "Wrong Type") + except Exception as error: + show_message("Error processing material " + str(material.Name) + ": " + str(error), "Error") diff --git a/ansys_optical_automation/application/Reverse Surface Source.py b/ansys_optical_automation/application/Reverse Surface Source.py new file mode 100644 index 00000000..f6349a97 --- /dev/null +++ b/ansys_optical_automation/application/Reverse Surface Source.py @@ -0,0 +1,80 @@ +# ---------------------------------------------------------------------------------------- +# Script Description: +# +# This script allows users to **invert the orientation of the emissive faces** +# associated with selected Speos surface light sources. +# +# This is especially useful after using the **"Create Sources from Data"** tool, +# where light sources are created based on geometry name matching, but their +# right **emissive face orientation cannot be predicted** reliably during import. +# ---------------------------------------------------------------------------------------- +import ctypes + +# MessageBox flags +MB_OK = 0x00000000 +MB_ICONERROR = 0x00000010 +MB_TOPMOST = 0x00040000 + + +# Get handle to foreground window +def get_foreground_hwnd(): + """ + Get the handle (HWND) of the current foreground window. + + This function uses the Windows API to retrieve the window handle + of the application that currently has the user's focus. + + Returns + ------- + int + Handle (HWND) of the foreground window. + """ + return ctypes.windll.user32.GetForegroundWindow() + + +# Show error message box +def show_error(message, title="Error"): + """ + Display a topmost error message box with an error icon. + + This function shows a Windows message box with an error icon that stays + on top of all other windows. It uses the current foreground window as parent. + + Parameters + ---------- + message : str + The message text to display. + title : str, optional + The title of the message box window. Default is "Error". + + Returns + ------- + int + The result code from the MessageBoxW function (usually MB_OK). + """ + hwnd = get_foreground_hwnd() + ctypes.windll.user32.MessageBoxW(hwnd, message, title, MB_OK | MB_ICONERROR | MB_TOPMOST) + + +# Get selected items +source_selections = Selection.GetActive().Items + +# Iterate over each selected item +for selected in source_selections: + try: + # Try to find the Speos light source by name + led_to_reverse = SpeosSim.SourceSurface.Find(selected.Name) + if led_to_reverse is None: + show_error("Source '" + selected.Name + "' not found in the Speos light list.", "Not Found") + continue + + # Reverse the direction of each emissive face + count = 0 + for face in led_to_reverse.EmissiveFaces: + face.ReverseDirection = not face.ReverseDirection + count += 1 + + print("✓ Direction reversed for " + str(count) + " face(s) in source: " + selected.Name) + + except Exception as e: + show_error("Error processing source '" + selected.Name + "': " + str(e), "Exception") diff --git a/ansys_optical_automation/application/Setup Blue FOP.py b/ansys_optical_automation/application/Setup Blue FOP.py new file mode 100644 index 00000000..2ca614e0 --- /dev/null +++ b/ansys_optical_automation/application/Setup Blue FOP.py @@ -0,0 +1,106 @@ +# ---------------------------------------------------------------------------------------- +# Script Description: +# +# This script applies surface optical properties (SOP) to blue-colored faces within +# model geometries, based on keys defined in 'FOP.json'. +# +# JSON 'FOP.json' (in OpticalLibraries) format: +# "KeyInBodyName": { +# "FOP": "relative/or/absolute/path/to/.unpolished" +# } +# ---------------------------------------------------------------------------------------- +# -*- coding: utf-8 -*- +import json +import os +import re + + +def get_optical_lib_dir(): + ansys_dir = os.environ.get("ANSYS252_DIR") + if not ansys_dir: + raise EnvironmentError("Environment variable 'ANSYS252_DIR' is not defined.") + v252_root = os.path.dirname(ansys_dir) # ...\v252 + return os.path.join(v252_root, "Optical Products", "OpticalLibraries") + + +OPTICAL_LIB_DIR = get_optical_lib_dir() + + +def resolve_optical_path(path_str): + if not path_str: + return None + if os.path.isabs(path_str): + return path_str + return os.path.join(OPTICAL_LIB_DIR, path_str) + + +# Load FOP materials from JSON +fop_json_path = os.path.join(OPTICAL_LIB_DIR, "FOP.json") +if not os.path.isfile(fop_json_path): + raise IOError("FOP definition file not found: " + fop_json_path) + +with open(fop_json_path, "r") as f: + FOP = json.load(f) + +keys = FOP.keys() + + +# Function to check if a color is blue (with tolerance) +def is_blue_color(color, tolerance=50): + """ + Determines whether a given color is considered blue based on RGB components. + """ + return color.B > 100 and color.B - color.R > tolerance and color.B - color.G > tolerance + + +# Dictionary to group blue faces by geometry name +blue_faces_by_geometry = {} + +# Loop through all bodies in the model +for body in GetRootPart().GetAllBodies(): + body_name = body.GetName() + matched_key = None + for key in keys: + if key in body_name: + matched_key = key + break + + if matched_key: + blue_faces = [] + for face in body.Faces: + face_selection = FaceSelection.Create(face) + face_color = ColorHelper.GetColor(face_selection) + if is_blue_color(face_color): + blue_faces.append(face) + + if blue_faces: + blue_faces_by_geometry[body_name] = {"key": matched_key, "faces": blue_faces} + +# Create and assign materials only to blue faces +for geometry_name, data in blue_faces_by_geometry.items(): + key = data["key"] + faces = data["faces"] + + # Clean geometry name: remove FOP and key, then strip special characters + cleaned_name = geometry_name.replace("FOP", "") + cleaned_name = cleaned_name.replace(key, "") + cleaned_name = re.sub(r"[^A-Za-z0-9_]", "", cleaned_name) + + # Create a new Speos material + material = SpeosSim.Material.Create() + material.Name = "FOP_" + cleaned_name + material.OpticalPropertiesType = SpeosSim.Material.EnumOpticalPropertiesType.Surfacic + material.SOPType = SpeosSim.Material.EnumSOPType.Library + + fop_rel = FOP[key].get("FOP") + fop_full = resolve_optical_path(fop_rel) + if fop_full: + material.SOPLibrary = fop_full + else: + print("⚠ No valid FOP path for key '{0}'".format(key)) + + # Create a face selection and assign it to the material + oriented_faces = FaceSelection.Create(faces) + material.OrientedFaces.Set(oriented_faces.Items) + + print("Created material '{0}' with {1} blue face(s).".format(material.Name, len(faces))) diff --git a/ansys_optical_automation/application/Setup Coarse Meshing.py b/ansys_optical_automation/application/Setup Coarse Meshing.py new file mode 100644 index 00000000..bcb64484 --- /dev/null +++ b/ansys_optical_automation/application/Setup Coarse Meshing.py @@ -0,0 +1,67 @@ +# ---------------------------------------------------------------------------------- +# Script Purpose: +# Identify non-optical materials (IsOptic = False) from VOP-SOP.json and apply +# coarse local meshing to the corresponding bodies. +# +# The JSON 'VOP-SOP.json' is located in: +# C:\Program Files\ANSYS Inc\v252\Optical Products\OpticalLibraries +# +# Each entry: +# "CatMaterialName": { +# "Volume": , +# "Surface": <"Polished" or path>, +# "IsOptic": +# } +# ---------------------------------------------------------------------------------- + +import json +import os + + +def get_optical_lib_dir(): + ansys_dir = os.environ.get("ANSYS252_DIR") + if not ansys_dir: + raise EnvironmentError("Environment variable 'ANSYS252_DIR' is not defined.") + v252_root = os.path.dirname(ansys_dir) # ...\v252 + return os.path.join(v252_root, "Optical Products", "OpticalLibraries") + + +OPTICAL_LIB_DIR = get_optical_lib_dir() + +# Load materials dictionary from JSON +vop_sop_path = os.path.join(OPTICAL_LIB_DIR, "VOP-SOP.json") +if not os.path.isfile(vop_sop_path): + raise IOError("Material definition file not found: " + vop_sop_path) + +with open(vop_sop_path, "r") as f: + materials = json.load(f) + +# List to store the bodies that meet the condition +bodies_to_mesh = [] + +# Iterate over all bodies in the model +for body in GetActivePart().GetAllBodies(): + material = body.GetMaster().Material + + if material and material.Name: # If a material is assigned + material_name = material.Name + + if material_name in materials: + # Default: treat unknown IsOptic as True (optical) for safety + is_optic = materials[material_name].get("IsOptic", True) + + if not is_optic: + bodies_to_mesh.append(body) + +# If there are bodies to apply local meshing +if bodies_to_mesh: + localMeshing = SpeosSim.LocalMeshing.Create() + localMeshing.Name = "Coarse Meshing" + localMeshing.MeshingSagLengthValue = 0.5 + + geometries = BodySelection.Create(bodies_to_mesh) + localMeshing.Geometries.Set(geometries.Items) + + print("✓ Coarse Meshing applied to {0} bodies.".format(len(bodies_to_mesh))) +else: + print("No non-optical bodies found for coarse meshing.") diff --git a/ansys_optical_automation/application/Setup Radiance Sensors.py b/ansys_optical_automation/application/Setup Radiance Sensors.py new file mode 100644 index 00000000..2db5bbbb --- /dev/null +++ b/ansys_optical_automation/application/Setup Radiance Sensors.py @@ -0,0 +1,138 @@ +# ---------------------------------------------------------------------------------------- +# Script Description: +# +# This script automates the creation of Radiance Sensors based on geometric elements +# found in the model. Each sensor requires three inputs: +# +# • An origin point curve → named: Radiance_Sensor_Origin_ +# • An X direction line curve → named: Radiance_Sensor_XDirection_ +# • A Y direction line curve → named: Radiance_Sensor_YDirection_ +# +# For each set of curves sharing the same , a radiance sensor is created using +# a predefined configuration template. +# +# Workflow: +# 1. Search both the root part and all subcomponents for curves matching the naming pattern. +# 2. Extract and group curves into origin, X direction, and Y direction dictionaries by index. +# 3. Identify common indices where all three components (origin, X, Y) exist. +# 4. For each complete triplet, create a new Radiance Sensor with: +# - Origin, X, Y directions assigned +# - Colorimetric mode +# - Fixed resolution settings (0.1 x 0.1) +# +# If no valid triplets are found, a user-friendly message box is displayed. +# ---------------------------------------------------------------------------------------- +import ctypes +import re + +# === Windows MessageBox setup === + +# MessageBox flags +MB_OK = 0x00000000 +MB_ICONINFORMATION = 0x00000040 +MB_TOPMOST = 0x00040000 + + +# Get handle to foreground window +def get_foreground_hwnd(): + """ + Retrieves the handle to the foreground window. + + Returns + ------- + int + Handle (HWND) of the current foreground window. + """ + return ctypes.windll.user32.GetForegroundWindow() + + +# Function to show a topmost message box +def show_message(message, title="Message"): + """ + Displays a message box on top of all windows. + + The message box will be shown with an information icon and will stay on top + of all other windows. + + Parameters + ---------- + message : str + The text to display in the message box. + title : str, optional + The title of the message box window. Default is "Message". + """ + hwnd = get_foreground_hwnd() + ctypes.windll.user32.MessageBoxW(hwnd, message, title, MB_OK | MB_ICONINFORMATION | MB_TOPMOST) + + +# === STEP 1: Find all curves and classify them by type and index === +origin_curves = {} +xdir_curves = {} +ydir_curves = {} + +# Search curves in the root part +for curve in GetRootPart().Curves: + name = curve.GetName() + if name.startswith("Radiance_Sensor_Origin_"): + index = re.findall(r"\d+$", name) + if index: + origin_curves[int(index[0])] = curve + elif name.startswith("Radiance_Sensor_XDirection_"): + index = re.findall(r"\d+$", name) + if index: + xdir_curves[int(index[0])] = curve + elif name.startswith("Radiance_Sensor_YDirection_"): + index = re.findall(r"\d+$", name) + if index: + ydir_curves[int(index[0])] = curve + +# Search curves in all components +for comp in GetRootPart().GetAllComponents(): + for curve in comp.GetAllCurves(): + name = curve.GetName() + if name.startswith("Radiance_Sensor_Origin_"): + index = re.findall(r"\d+$", name) + if index: + origin_curves[int(index[0])] = curve + elif name.startswith("Radiance_Sensor_XDirection_"): + index = re.findall(r"\d+$", name) + if index: + xdir_curves[int(index[0])] = curve + elif name.startswith("Radiance_Sensor_YDirection_"): + index = re.findall(r"\d+$", name) + if index: + ydir_curves[int(index[0])] = curve + +# === STEP 2: Match indices only if they have all three directions === +common_indices = sorted(set(origin_curves) & set(xdir_curves) & set(ydir_curves)) + +# === STEP 3: Error popup if no complete sensors found === +if not common_indices: + show_message("No complete sensor triplet (origin, X, Y) was found in the model.", "No Sensors Found") +else: + # === STEP 4: Create sensors === + for i, index in enumerate(common_indices): + try: + origin_curve = origin_curves[index] + xdir_curve = xdir_curves[index] + ydir_curve = ydir_curves[index] + + # Create point selections + origin_point = Selection.Create(origin_curve.GetChildren[ICurvePoint]()[0]) + xdir_point = Selection.Create(xdir_curve) + ydir_point = Selection.Create(ydir_curve) + + # Create and configure sensor + radiance = SpeosSim.SensorRadiance.Create() + radiance.Name = "Radiance_" + str(i) + radiance.OriginPoint.Set(origin_point.Items) + radiance.XDirection.Set(xdir_point.Items) + radiance.YDirection.Set(ydir_point.Items) + radiance.SensorType = SpeosSim.SensorRadiance.EnumSensorType.Colorimetric + radiance.XResolution = 0.1 + radiance.YResolution = 0.1 + + print("✓ Created sensor:", radiance.Name) + + except Exception as error: + show_message("Error while creating sensor #" + str(i) + ": " + str(error), "Sensor Creation Error") diff --git a/ansys_optical_automation/application/Setup Surface Sources.py b/ansys_optical_automation/application/Setup Surface Sources.py new file mode 100644 index 00000000..fc31aa34 --- /dev/null +++ b/ansys_optical_automation/application/Setup Surface Sources.py @@ -0,0 +1,78 @@ +# ---------------------------------------------------------------------------------------- +# Script Description: +# +# This script automates the creation of surface light sources in Speos based on +# geometry names that match predefined LED identifiers loaded from a JSON file. +# +# The JSON file `LED_Surface_Sources.json` must be located in: +# C:\Program Files\ANSYS Inc\v252\Optical Products\OpticalLibraries +# +# Each key in the JSON: +# - Key: Substring expected to be found in the body name +# - Value: { +# "Flux": , +# "Spectrum": +# } +# ---------------------------------------------------------------------------------------- +import json +import os + + +def get_optical_lib_dir(): + ansys_dir = os.environ.get("ANSYS252_DIR") + if not ansys_dir: + raise EnvironmentError("Environment variable 'ANSYS252_DIR' is not defined.") + v252_root = os.path.dirname(ansys_dir) # ...\v252 + return os.path.join(v252_root, "Optical Products", "OpticalLibraries") + + +OPTICAL_LIB_DIR = get_optical_lib_dir() + + +def resolve_optical_path(path_str): + """Return absolute path; if already absolute, return as is.""" + if not path_str: + return None + if os.path.isabs(path_str): + return path_str + return os.path.join(OPTICAL_LIB_DIR, path_str) + + +# Load LED definitions from JSON +led_json_path = os.path.join(OPTICAL_LIB_DIR, "LED_Surface_Sources.json") +if not os.path.isfile(led_json_path): + raise IOError("LED definition file not found: " + led_json_path) + +with open(led_json_path, "r") as f: + leds_invented = json.load(f) + +# Loop over all bodies in the root part +for body in GetRootPart().GetAllBodies(): + body_name = body.GetName() + + # Check if the body's name contains any of the LED dictionary keys + for key, data in leds_invented.items(): + if key in body_name: + flux = data.get("Flux") + spectrum_rel = data.get("Spectrum") + spectrum_full = resolve_optical_path(spectrum_rel) + + # Create a new surface light source + surface = SpeosSim.SourceSurface.Create() + surface.Name = body_name + + # If a flux is provided, use it; otherwise, keep default + if flux is not None: + surface.FluxValueLuminous = float(flux) + + surface.SpectrumType = SpeosSim.SourceSurface.EnumSpectrumType.Library + if spectrum_full: + surface.SpectrumValueLibrary = spectrum_full + + surface.RayLength = 5 # mm + + # Assign the first face of the body as the emissive surface + emissive_face = FaceSelection.Create(body.Faces[0]) + surface.EmissiveFaces.Set(emissive_face.Items) + + print("✓ Created light source: {0} | Flux: {1} | Spectrum: {2}".format(body_name, flux, spectrum_full)) diff --git a/ansys_optical_automation/application/Setup VOP-SOP.py b/ansys_optical_automation/application/Setup VOP-SOP.py new file mode 100644 index 00000000..b4fbf20d --- /dev/null +++ b/ansys_optical_automation/application/Setup VOP-SOP.py @@ -0,0 +1,279 @@ +# ====================================================================================== +# Script: Create Speos Materials from VOP-SOP.json +# +# Purpose +# ------- +# Map CATMaterial names (from CATIA / NX / CAD) to Speos optical materials +# using a JSON file (VOP-SOP.json) located in the official OpticalLibraries folder. +# +# JSON structure (VOP-SOP.json) +# ----------------------------- +# { +# "PMMA": { +# "Volume": ".../volume_optical_properties/.../PMMA.material", +# "Surface": "Polished", +# "IsOptic": true +# } +# } +# +# Behavior +# -------- +# - If Surface == "Polished": +# Create a full optical material: +# * VOPType = Library (volume from JSON) +# * SOPType = OpticalPolished +# * Assign VolumeGeometries to all bodies with that CATMaterial +# +# - If Surface != "Polished": +# Create a surface-only material: +# * VOPType = None +# * SOPType = Library (surface from JSON) +# * Assign VolumeGeometries to the geometry list +# +# Material name matching +# ---------------------- +# The script is robust to differences between CAD material names and JSON keys: +# - Handles names with or without ".material" +# - Handles "-" and "_" differences +# - Trims spaces +# - Tries several candidate variants until it finds a match in the JSON +# +# Environment +# ----------- +# Uses environment variable: +# ANSYS252_DIR = C:\Program Files\ANSYS Inc\v252\ANSYS +# +# JSON folder: +# C:\Program Files\ANSYS Inc\v252\Optical Products\OpticalLibraries +# +# ====================================================================================== + +import json +import os + + +# -------------------------------------------------------------------------------------- +# Utility: get OpticalLibraries directory from environment variable +# -------------------------------------------------------------------------------------- +def get_optical_lib_dir(): + """ + Returns the absolute path to the OpticalLibraries directory + based on the ANSYS252_DIR environment variable. + """ + ansys_dir = os.environ.get("ANSYS252_DIR") + if not ansys_dir: + raise EnvironmentError("Environment variable 'ANSYS252_DIR' is not defined.") + + # Example: + # ANSYS252_DIR = C:\Program Files\ANSYS Inc\v252\ANSYS + # v252_root = C:\Program Files\ANSYS Inc\v252 + v252_root = os.path.dirname(ansys_dir) + + optical_lib_dir = os.path.join(v252_root, "Optical Products", "OpticalLibraries") + + if not os.path.isdir(optical_lib_dir): + raise IOError("OpticalLibraries folder not found: " + optical_lib_dir) + + return optical_lib_dir + + +OPTICAL_LIB_DIR = get_optical_lib_dir() + + +# -------------------------------------------------------------------------------------- +# Utility: resolve optical file paths (relative -> absolute) +# -------------------------------------------------------------------------------------- +def resolve_optical_path(path_str): + """ + Convert a relative path (inside OpticalLibraries) into an absolute path. + If the path is already absolute or None/empty, it is returned as is. + """ + if not path_str: + return None + if os.path.isabs(path_str): + return path_str + return os.path.join(OPTICAL_LIB_DIR, path_str) + + +# -------------------------------------------------------------------------------------- +# Utility: robust mapping from CAD material name to JSON key +# -------------------------------------------------------------------------------------- +def normalize_name_base(name): + """ + Returns a basic normalized version of the material name: + - Strip spaces at both ends + - Remove common file extensions (e.g. .material) + """ + if not name: + return "" + + name = name.strip() + + # Remove ".material" extension if present (case-insensitive) + lower = name.lower() + if lower.endswith(".material"): + name = name[: -len(".material")] + + # You can extend this if needed (e.g. remove .mirror, .bsdf, etc.) + return name + + +def generate_name_candidates(raw_name): + """ + Generates a set of candidate names to search in the JSON dictionary. + This makes the matching robust to: + - With or without ".material" + - "-" vs "_" + """ + candidates = set() + + if not raw_name: + return candidates + + # Base normalized name without extension + base = normalize_name_base(raw_name) + if base: + candidates.add(base) + + # Also consider the raw name itself + candidates.add(raw_name.strip()) + + # Replace "-" <-> "_" variants + temp_list = list(candidates) + for c in temp_list: + candidates.add(c.replace("-", "_")) + candidates.add(c.replace("_", "-")) + + return candidates + + +def find_material_key(material_name, materials_dict): + """ + Try to find the corresponding key in VOP-SOP.json for the given CAD material name. + + It generates multiple name variants and returns the first one that exists in + the materials_dict. If no match is found, returns None. + """ + if not material_name: + return None + + candidates = generate_name_candidates(material_name) + + for candidate in candidates: + if candidate in materials_dict: + return candidate + + return None + + +# -------------------------------------------------------------------------------------- +# Load JSON dictionary +# -------------------------------------------------------------------------------------- +vop_sop_path = os.path.join(OPTICAL_LIB_DIR, "VOP-SOP.json") +if not os.path.isfile(vop_sop_path): + raise IOError("Material definition file not found: " + vop_sop_path) + +with open(vop_sop_path, "r") as f: + materials = json.load(f) + +print("Loaded material definitions from:", vop_sop_path) + + +# -------------------------------------------------------------------------------------- +# Group bodies by material key (JSON key) instead of raw CAD name +# -------------------------------------------------------------------------------------- +material_to_bodies = {} + +for body in GetActivePart().GetAllBodies(): + master = body.GetMaster() + if not master: + continue + + material_obj = master.Material + if not material_obj or not material_obj.Name: + continue + + raw_name = material_obj.Name + key_name = find_material_key(raw_name, materials) + + if key_name is None: + # Optional debug: show which material names are not in the JSON + print("No JSON entry for CAD material:", raw_name) + continue + + if key_name not in material_to_bodies: + material_to_bodies[key_name] = [] + + material_to_bodies[key_name].append(body) + + +if not material_to_bodies: + print("No matching materials found between CAD and VOP-SOP.json.") +else: + print("Found", len(material_to_bodies), "material(s) to create.") + + +# -------------------------------------------------------------------------------------- +# Create Speos materials according to VOP-SOP.json +# -------------------------------------------------------------------------------------- +for material_key, bodies_list in material_to_bodies.items(): + props = materials[material_key] + + surface_def = props.get("Surface") + volume_def = props.get("Volume") + + selection = BodySelection.Create(bodies_list) + + # Create a new Speos material + new_material = SpeosSim.Material.Create() + new_material.Name = material_key # You can use material_key or the raw CAD name + + # ------------------------------------------------------------------ + # Case 1: Full optical material (Volume + Polished surface) + # ------------------------------------------------------------------ + if surface_def == "Polished": + new_material.SOPType = SpeosSim.Material.EnumSOPType.OpticalPolished + new_material.VOPType = SpeosSim.Material.EnumVOPType.Library + + volume_path = resolve_optical_path(volume_def) + + if volume_path and os.path.isfile(volume_path): + try: + new_material.VOPLibrary = volume_path + print("✓ Created material:", material_key, "with VOP:", volume_path) + except Exception as e: + print("⚠ Error assigning VOP for material", material_key) + print(" Path:", volume_path) + print(" Exception:", str(e)) + else: + print("⚠", material_key, "has Surface='Polished' but Volume path is missing or invalid.") + volume_path = None + + new_material.VolumeGeometries.Set(selection.Items) + print("→ Assigned", len(bodies_list), "geometries to material:", material_key) + + # ------------------------------------------------------------------ + # Case 2: Surface-only material (no Volume) + # ------------------------------------------------------------------ + else: + new_material.VOPType = getattr(SpeosSim.Material.EnumVOPType, "None") + new_material.SOPType = SpeosSim.Material.EnumSOPType.Library + + surface_path = resolve_optical_path(surface_def) + + if surface_path and os.path.isfile(surface_path): + try: + new_material.SOPLibrary = surface_path + print("✓ Created material:", material_key, "with SOP:", surface_path) + except Exception as e: + print("⚠ Error assigning SOP for material", material_key) + print(" Path:", surface_path) + print(" Exception:", str(e)) + else: + print("⚠", material_key, "has no valid surface definition.") + + new_material.VolumeGeometries.Set(selection.Items) + print("→ Assigned", len(bodies_list), "geometries to material:", material_key) + + +print("Material creation from VOP-SOP.json completed.") diff --git a/ansys_optical_automation/application/scdm_script_tool/Deactivate FOP.png b/ansys_optical_automation/application/scdm_script_tool/Deactivate FOP.png new file mode 100644 index 00000000..5bf1e0f2 Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/Deactivate FOP.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/FOP.json b/ansys_optical_automation/application/scdm_script_tool/FOP.json new file mode 100644 index 00000000..a59915fb --- /dev/null +++ b/ansys_optical_automation/application/scdm_script_tool/FOP.json @@ -0,0 +1,47 @@ +{ + "VDI12": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-12.unpolished" + }, + "VDI15": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-15.unpolished" + }, + "VDI18": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-18.unpolished" + }, + "VDI21": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-21.unpolished" + }, + "VDI24": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-24.unpolished" + }, + "VDI27": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-27.unpolished" + }, + "VDI30": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-30.unpolished" + }, + "VDI33": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-33.unpolished" + }, + "VDI36": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-36.unpolished" + }, + "VDI38": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-38.unpolished" + }, + "VDI42": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-42.unpolished" + }, + "VDI45": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-45.unpolished" + }, + "VDI31": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi_edm/AgieCharmillesVDI_EDM-31.unpolished" + }, + "VDI33_2": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi_edm/AgieCharmillesVDI_EDM-33.unpolished" + }, + "VDI35": { + "FOP": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi_edm/AgieCharmillesVDI_EDM-35.unpolished" + } +} \ No newline at end of file diff --git a/ansys_optical_automation/application/scdm_script_tool/GPU Compute All.png b/ansys_optical_automation/application/scdm_script_tool/GPU Compute All.png new file mode 100644 index 00000000..646135d8 Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/GPU Compute All.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/LED_Surface_Sources.json b/ansys_optical_automation/application/scdm_script_tool/LED_Surface_Sources.json new file mode 100644 index 00000000..b1b6ad2f --- /dev/null +++ b/ansys_optical_automation/application/scdm_script_tool/LED_Surface_Sources.json @@ -0,0 +1,147 @@ +{ + "CREE_XR_C_2600K_3700K": { + "Flux": 45.7, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/CREE XR-C 2600K-3700K.spectrum" + }, + "CREE_XR_C_3700K_5000K": { + "Flux": 56.8, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/CREE XR-C 3700K-5000K.spectrum" + }, + "CREE_XR_C_5000K_10000K": { + "Flux": 56.8, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/CREE XR-C 5000K-10000K.spectrum" + }, + + "Luxeon_K2_6200K": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/Luxeon K2 6200K.spectrum" + }, + + "Luxeon_Rebel_Cool_White_5800K": { + "Flux": 80, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/Luxeon Rebel Cool White 5800K .spectrum" + }, + "Luxeon_Rebel_Neutral_White_4500K": { + "Flux": 75, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/Luxeon Rebel Neutral White 4500K.spectrum" + }, + "Luxeon_Rebel_Warm_White_3200K": { + "Flux": 66, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/Luxeon Rebel Warm White 3200K.spectrum" + }, + + "Luxeon_standard_6600K": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/Luxeon standard 6600K.spectrum" + }, + + "NICHIA_NSCU275T": { + "Flux": null, + "Spectrum": "Source_SPEOS/uv_led_-_nichia_ncsu275t/SPEOS input files/NICHIA NSCU275T.spectrum" + }, + + "OSRAM_Golden_Dragon_Warm_White_3100K": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/OSRAM Golden Dragon - Warm White 3100K.spectrum" + }, + "OSRAM_Golden_Dragon_White_5300K": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/OSRAM Golden Dragon - White 5300K.spectrum" + }, + + "OSRAM_Hyper_Bright_LED_Amber": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Hyper-Bright LED_Amber.spectrum" + }, + "OSRAM_Hyper_Bright_LED_Blue_GaN": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Hyper-Bright LED_Blue(GaN).spectrum" + }, + "OSRAM_Hyper_Bright_LED_Hyper_Red": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Hyper-Bright LED_Hyper-Red.spectrum" + }, + "OSRAM_Hyper_Bright_LED_Orange": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Hyper-Bright LED_Orange.spectrum" + }, + "OSRAM_Hyper_Bright_LED_Super_Red": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Hyper-Bright LED_Super-Red.spectrum" + }, + "OSRAM_Hyper_Bright_LED_White_GaN": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Hyper-Bright LED_White(GaN).spectrum" + }, + "OSRAM_Hyper_Bright_LED_Yellow": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Hyper-Bright LED_Yellow.spectrum" + }, + + "OSRAM_Single_Chip_White_LED_Standard_InGaN_LED_HOP_LED_Amber": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Single Chip White LED - Standard-InGaN LED - HOP LED_Amber.spectrum" + }, + "OSRAM_Single_Chip_White_LED_Standard_InGaN_LED_HOP_LED_Blue_InGaN": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Single Chip White LED - Standard-InGaN LED - HOP LED_Blue(InGaN).spectrum" + }, + "OSRAM_Single_Chip_White_LED_Standard_InGaN_LED_HOP_LED_True_Green": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Single Chip White LED - Standard-InGaN LED - HOP LED_True Green.spectrum" + }, + "OSRAM_Single_Chip_White_LED_Standard_InGaN_LED_HOP_LED_Verde": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Single Chip White LED - Standard-InGaN LED - HOP LED_Verde.spectrum" + }, + "OSRAM_Single_Chip_White_LED_Standard_InGaN_LED_HOP_LED_White_InGaN": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Single Chip White LED - Standard-InGaN LED - HOP LED_White(InGaN).spectrum" + }, + "OSRAM_Single_Chip_White_LED_Standard_InGaN_LED_HOP_LED_Yellow": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Single Chip White LED - Standard-InGaN LED - HOP LED_Yellow.spectrum" + }, + + "OSRAM_Standard_current_LED_Low_current_LED_High_current_LED_Green": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Standard-current LED - Low-current LED - High-current LED_Green.spectrum" + }, + "OSRAM_Standard_current_LED_Low_current_LED_High_current_LED_Hyper_Red": { + "Flux": 20, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Standard-current LED - Low-current LED - High-current LED_Hyper-Red.spectrum" + }, + "OSRAM_Standard_current_LED_Low_current_LED_High_current_LED_Orange": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Standard-current LED - Low-current LED - High-current LED_Orange.spectrum" + }, + "OSRAM_Standard_current_LED_Low_current_LED_High_current_LED_Pure_Green": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Standard-current LED - Low-current LED - High-current LED_Pure Green.spectrum" + }, + "OSRAM_Standard_current_LED_Low_current_LED_High_current_LED_Red": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Standard-current LED - Low-current LED - High-current LED_Red.spectrum" + }, + "OSRAM_Standard_current_LED_Low_current_LED_High_current_LED_Super_Red": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Standard-current LED - Low-current LED - High-current LED_Super-Red.spectrum" + }, + "OSRAM_Standard_current_LED_Low_current_LED_High_current_LED_Yellow": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_osram_led/OSRAM_Standard-current LED - Low-current LED - High-current LED_Yellow.spectrum" + }, + + "OSRAM_standard_5400K": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/OSRAM standard 5400K.spectrum" + }, + "OSRAM_standard_GaN_7300K": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/OSRAM standard GaN 7300K.spectrum" + }, + "OSRAM_standard_InGaN_5700K": { + "Flux": null, + "Spectrum": "Source_SPEOS/spectrum_-_white_led_/OSRAM standard InGaN 5700K.spectrum" + } +} diff --git a/ansys_optical_automation/application/scdm_script_tool/Reactivate Library FOP.png b/ansys_optical_automation/application/scdm_script_tool/Reactivate Library FOP.png new file mode 100644 index 00000000..085eb29a Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/Reactivate Library FOP.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/Readme Materials & Sources.txt b/ansys_optical_automation/application/scdm_script_tool/Readme Materials & Sources.txt new file mode 100644 index 00000000..e69de29b diff --git a/ansys_optical_automation/application/scdm_script_tool/Reverse Surface Source.png b/ansys_optical_automation/application/scdm_script_tool/Reverse Surface Source.png new file mode 100644 index 00000000..602f2bcb Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/Reverse Surface Source.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/Setup Blue FOP.png b/ansys_optical_automation/application/scdm_script_tool/Setup Blue FOP.png new file mode 100644 index 00000000..0e73bf25 Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/Setup Blue FOP.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/Setup Coarse Meshing.png b/ansys_optical_automation/application/scdm_script_tool/Setup Coarse Meshing.png new file mode 100644 index 00000000..030d300f Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/Setup Coarse Meshing.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/Setup Radiance Sensors.png b/ansys_optical_automation/application/scdm_script_tool/Setup Radiance Sensors.png new file mode 100644 index 00000000..b20709ad Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/Setup Radiance Sensors.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/Setup Surface Sources.png b/ansys_optical_automation/application/scdm_script_tool/Setup Surface Sources.png new file mode 100644 index 00000000..11a33b0b Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/Setup Surface Sources.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/Setup VOP-SOP.png b/ansys_optical_automation/application/scdm_script_tool/Setup VOP-SOP.png new file mode 100644 index 00000000..d3ff69ad Binary files /dev/null and b/ansys_optical_automation/application/scdm_script_tool/Setup VOP-SOP.png differ diff --git a/ansys_optical_automation/application/scdm_script_tool/VOP-SOP.json b/ansys_optical_automation/application/scdm_script_tool/VOP-SOP.json new file mode 100644 index 00000000..c30a22d0 --- /dev/null +++ b/ansys_optical_automation/application/scdm_script_tool/VOP-SOP.json @@ -0,0 +1,23437 @@ +{ + "0_4_reflectance": { + "Volume": null, + "Surface": "Optical_Property/components_texasinstruments-dlp5530-q1/SPEOS input files/0.4%reflectance.coated", + "IsOptic": false + }, + "CORNING_EAGLE_XG_Slim_Glass": { + "Volume": "Optical_Property/components_texasinstruments-dlp5530-q1/SPEOS input files/CORNING EAGLE XG Slim Glass.material", + "Surface": "Polished", + "IsOptic": true + }, + "Metal_Gold": { + "Volume": null, + "Surface": "Optical_Property/components_texasinstruments-dlp5530-q1/SPEOS input files/Metal Gold.brdf", + "IsOptic": false + }, + "RAL3012_BeigeRed_SemiMatt": { + "Volume": null, + "Surface": "Optical_Property/components_texasinstruments-dlp5530-q1/SPEOS input files/RAL3012-BeigeRed-SemiMatt.brdf", + "IsOptic": false + }, + "RL_MescalitoBlack": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Car Paints/RL_MescalitoBlack.anisotropicbsdf", + "IsOptic": false + }, + "RL_ValloireWhite": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Car Paints/RL_ValloireWhite.anisotropicbsdf", + "IsOptic": false + }, + "RL_GalvanisedSteel": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Environment/RL_GalvanisedSteel.anisotropicbsdf", + "IsOptic": false + }, + "RL_Grass": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Environment/RL_Grass.anisotropicbsdf", + "IsOptic": false + }, + "RL_LaurelLeaf": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Environment/RL_LaurelLeaf.anisotropicbsdf", + "IsOptic": false + }, + "RL_BlackLetter_PlasticPolicePlate": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Police Plates/RL_BlackLetter_PlasticPolicePlate.anisotropicbsdf", + "IsOptic": false + }, + "RL_BlackLetters_AluPolicePlate": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Police Plates/RL_BlackLetters_AluPolicePlate.anisotropicbsdf", + "IsOptic": false + }, + "RL_BlueGeo_AluPolicePlate": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Police Plates/RL_BlueGeo_AluPolicePlate.anisotropicbsdf", + "IsOptic": false + }, + "RL_White_AluPolicePlate_Final": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Police Plates/RL_White_AluPolicePlate_Final.anisotropicbsdf", + "IsOptic": false + }, + "RL_White_PlasticPolicePlate": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Police Plates/RL_White_PlasticPolicePlate.anisotropicbsdf", + "IsOptic": false + }, + "RL_RoadMarking": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road & RoadMarkings/RL_RoadMarking.anisotropicbsdf", + "IsOptic": false + }, + "RL_Road_10": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road & RoadMarkings/RL_Road_10%.anisotropicbsdf", + "IsOptic": false + }, + "RL_Road_7": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road & RoadMarkings/RL_Road_7%.anisotropicbsdf", + "IsOptic": false + }, + "RL_Road_7_5": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road & RoadMarkings/RL_Road_7.5%.anisotropicbsdf", + "IsOptic": false + }, + "RL_Red_EngineerGrade": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road Signs/RL_Red_EngineerGrade.anisotropicbsdf", + "IsOptic": false + }, + "RL_Red_HighIntensity": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road Signs/RL_Red_HighIntensity.anisotropicbsdf", + "IsOptic": false + }, + "RL_White_DiamondGrade": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road Signs/RL_White_DiamondGrade.anisotropicbsdf", + "IsOptic": false + }, + "RL_White_EngineerGrade": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road Signs/RL_White_EngineerGrade.anisotropicbsdf", + "IsOptic": false + }, + "RL_White_HighIntensity": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Road Signs/RL_White_HighIntensity.anisotropicbsdf", + "IsOptic": false + }, + "RL_SafetyVest_Yellow": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Safety Vest/RL_SafetyVest_Yellow.anisotropicbsdf", + "IsOptic": false + }, + "RL_VisibilityVest_Retro": { + "Volume": null, + "Surface": "Optical_Property/road_library_for_sensors_simulations/Safety Vest/RL_VisibilityVest_Retro.anisotropicbsdf", + "IsOptic": false + }, + "photopic": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/CIE/photopic.coated", + "IsOptic": false + }, + "scotopic": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/CIE/scotopic.coated", + "IsOptic": false + }, + "x1931": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/CIE/x1931.coated", + "IsOptic": false + }, + "x1964": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/CIE/x1964.coated", + "IsOptic": false + }, + "y1931": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/CIE/y1931.coated", + "IsOptic": false + }, + "y1964": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/CIE/y1964.coated", + "IsOptic": false + }, + "z1931": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/CIE/z1931.coated", + "IsOptic": false + }, + "z1964": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/CIE/z1964.coated", + "IsOptic": false + }, + "beamsplitter": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/beamsplitter.coated", + "IsOptic": false + }, + "d_mirror": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/d_mirror.coated", + "IsOptic": false + }, + "w_coating": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_coatings/Coated/w_coating.coated", + "IsOptic": false + }, + "IGP_DURA_face_521M_matt_white_ca_RAL_9016": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_igp-dura_face_high_class_powder_coating_system/IGP-DURA face 521M - matt white - ca RAL 9016 .bsdf", + "IsOptic": false + }, + "IGP_DURA_face_581M_matt_white_RAL_9016_HR": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_igp-dura_face_high_class_powder_coating_system/IGP-DURA face 581M - matt white - RAL 9016 HR .bsdf", + "IsOptic": false + }, + "Vantablack_S_VIS": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_surrey_nanosystems_vantablack_s-vis/Vantablack-S-VIS.anisotropicbsdf", + "IsOptic": false + }, + "Vantablack_VBx2_datasheet": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/coating/surface_surrey_nanosystems_vantablack_vbx2/Vantablack_VBx2_datasheet.anisotropicbsdf", + "IsOptic": false + }, + "BWF_colourLED_ecoRAIL_BCL2_white_PC": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_bwf_colourled_ecorail_bcl2/BWF_colourLED_ecoRAIL_BCL2_white_PC.anisotropicbsdf", + "IsOptic": false + }, + "Hi_clear": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_diffuser_film_kuraray_ParapureHI-GradeClear-Type_HI001/Hi-clear.anisotropicbsdf", + "IsOptic": false + }, + "Hi_clear_interpolation": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_diffuser_film_kuraray_ParapureHI-GradeClear-Type_HI001/Hi-clear_interpolation.anisotropicbsdf", + "IsOptic": false + }, + "LH_mat": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_diffuser_film_kuraray_ParapureLH-GradeMat-Type_LM122/LH-mat.anisotropicbsdf", + "IsOptic": false + }, + "LH_mat_interpolation": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_diffuser_film_kuraray_ParapureLH-GradeMat-Type_LM122/LH-mat_interpolation.anisotropicbsdf", + "IsOptic": false + }, + "KURARAY_H304RT_5": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_diffuser_film_kuraray_h304rt-5/KURARAY_H304RT-5.bsdf180", + "IsOptic": false + }, + "KURARAY_H305RW_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_diffuser_film_kuraray_h305rw-2_/KURARAY_H305RW-2.bsdf180", + "IsOptic": false + }, + "KURARAY_H406RW_5": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_diffuser_film_kuraray_h406rw-5/KURARAY_H406RW-5.bsdf180", + "IsOptic": false + }, + "ET_166A": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_exploit/ET_166A.anisotropicbsdf", + "IsOptic": false + }, + "PBSS_072": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_keiwa/PBSS_072.anisotropicbsdf", + "IsOptic": false + }, + "WS_220E": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_mitsui_chemicals/WS_220E.anisotropicbsdf", + "IsOptic": false + }, + "rm402": { + "Volume": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_sumitomo_chemical/rm402.material", + "Surface": "Polished", + "IsOptic": true + }, + "PC_9391_2mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_teijin/PC_9391 - 2mm.anisotropicbsdf", + "IsOptic": true + }, + "UX_188": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_teijin/UX_188.anisotropicbsdf", + "IsOptic": false + }, + "E20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_toray/E20.anisotropicbsdf", + "IsOptic": false + }, + "E6SL": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_toray/E6SL.anisotropicbsdf", + "IsOptic": false + }, + "E6SV": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_lcd_simulation_toray/E6SV.anisotropicbsdf", + "IsOptic": false + }, + "LUMINIT_LSD_80x80deg": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_luminit_light_shaping_diffuser_80x80deg/LUMINIT-LSD-80x80deg.bsdf180", + "IsOptic": false + }, + "LUMINIT_LSD_60x60deg": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_luminit_light_shaping_diffusers_60x60deg/LUMINIT-LSD-60x60deg.bsdf180", + "IsOptic": false + }, + "Luminit80x50": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_luminit_light_shaping_diffusers_80x50deg/Luminit80x50.anisotropicbsdf", + "IsOptic": false + }, + "D121_SIII": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_tsujiden/D121_SIII.anisotropicbsdf", + "IsOptic": false + }, + "D122_SIII": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/diffuser/surface_tsujiden/D122_SIII.anisotropicbsdf", + "IsOptic": false + }, + "AlcantaraBlack": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_alcantara/AlcantaraBlack.brdf", + "IsOptic": false + }, + "AlcantaraRed": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_alcantara/AlcantaraRed.brdf", + "IsOptic": false + }, + "Alcantara_Red_Rose": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_alcantara/Alcantara Red Rose.brdf", + "IsOptic": false + }, + "Fabric_Coarse_black": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Coarse black.brdf", + "IsOptic": false + }, + "Fabric_Coarse_black_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Coarse black 2.brdf", + "IsOptic": false + }, + "Fabric_Coarse_blue_green": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Coarse blue green.brdf", + "IsOptic": false + }, + "Fabric_Coarse_grey": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Coarse grey.brdf", + "IsOptic": false + }, + "Fabric_Coarse_grey_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Coarse grey 2.brdf", + "IsOptic": false + }, + "Fabric_Coarse_light_grey": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Coarse light grey.brdf", + "IsOptic": false + }, + "Fabric_Coarse_red": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Coarse red.brdf", + "IsOptic": false + }, + "Fabric_Satin_light_blue": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Satin light blue .brdf", + "IsOptic": false + }, + "Fabric_Satin_light_red": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Satin light red.brdf", + "IsOptic": false + }, + "Fabric_Satin_yellow": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Satin yellow.brdf", + "IsOptic": false + }, + "Fabric_Velvet_Orange": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_fabric/Fabric Velvet Orange.brdf", + "IsOptic": false + }, + "Skin_Desire": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_human_skin/Skin_Desire.brdf", + "IsOptic": false + }, + "Skin_Eugene": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_human_skin/Skin_Eugene.brdf", + "IsOptic": false + }, + "Skin_Eugenie": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_human_skin/Skin_Eugenie.brdf", + "IsOptic": false + }, + "Skin_Sierra": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_human_skin/Skin_Sierra.brdf", + "IsOptic": false + }, + "Skin_Suzanne": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_human_skin/Skin_Suzanne.brdf", + "IsOptic": false + }, + "Skin_multi_scan": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_human_skin/Skin_multi_scan.brdf", + "IsOptic": false + }, + "Skin_simple_scan": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_human_skin/Skin_simple_ scan.brdf", + "IsOptic": false + }, + "Leather_black_glossy": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_leather/Leather black glossy.brdf", + "IsOptic": false + }, + "Leather_black_matt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_leather/Leather black matt.brdf", + "IsOptic": false + }, + "Leather_brown_dark_glossy": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_leather/Leather brown dark glossy.brdf", + "IsOptic": false + }, + "Leather_brown_glossy": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_leather/Leather brown glossy.brdf", + "IsOptic": false + }, + "Leather_green_glossy": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_leather/Leather green glossy.brdf", + "IsOptic": false + }, + "Leather_grey_matt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_leather/Leather grey matt.brdf", + "IsOptic": false + }, + "Leather_red_matt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_leather/Leather red matt.brdf", + "IsOptic": false + }, + "Leather_silver_glossy": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_leather/Leather silver glossy.brdf", + "IsOptic": false + }, + "33013_Slate": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33013 - Slate.brdf", + "IsOptic": false + }, + "33015_Lead": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33015 - Lead.brdf", + "IsOptic": false + }, + "33018_Glacier": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33018 - Glacier.brdf", + "IsOptic": false + }, + "33019_Steel": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33019 - Steel.brdf", + "IsOptic": false + }, + "33020_Smoke": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33020 - Smoke.brdf", + "IsOptic": false + }, + "33052_Charcoal": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33052 - Charcoal.brdf", + "IsOptic": false + }, + "33059_Blue_Stone": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33059 - Blue Stone.brdf", + "IsOptic": false + }, + "33062_Sahara": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33062 - Sahara.brdf", + "IsOptic": false + }, + "33063_Mushroom": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33063 - Mushroom.brdf", + "IsOptic": false + }, + "33067_Mustard": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33067 - Mustard.brdf", + "IsOptic": false + }, + "33098_Marigold": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33098 - Marigold.brdf", + "IsOptic": false + }, + "33111_Camel": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33111 - Camel.brdf", + "IsOptic": false + }, + "33509_Lipstick": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33509 - Lipstick.brdf", + "IsOptic": false + }, + "33530_Magnolia": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33530 - Magnolia.brdf", + "IsOptic": false + }, + "33531_Bone": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33531 - Bone.brdf", + "IsOptic": false + }, + "33532_Brown": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33532 - Brown.brdf", + "IsOptic": false + }, + "33533_Cardinal": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33533 - Cardinal.brdf", + "IsOptic": false + }, + "33534_Kobalt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33534 - Kobalt.brdf", + "IsOptic": false + }, + "33535_Dark_Blue": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33535 - Dark Blue.brdf", + "IsOptic": false + }, + "33599_Black_M": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/organic/surface_wollsdorf_automotive_leather_montana_/33599 - Black M.brdf", + "IsOptic": false + }, + "Spectralon": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/other/surface_labsphere_spectralon_srs-99-010_reflectance_standard/Spectralon.anisotropicbsdf", + "IsOptic": false + }, + "IGP_DURA_face_521M_matt_white_ca_RAL_9016_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/other/surface_sphereoptics/IGP-DURA face 521M - matt white - ca RAL 9016 .anisotropicbsdf", + "IsOptic": false + }, + "IGP_DURA_face_581M_matt_white_RAL_9016_HR_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/other/surface_sphereoptics/IGP-DURA face 581M - matt white - RAL 9016 HR .anisotropicbsdf", + "IsOptic": false + }, + "CAR_PAINT_MescalitoBlack1600": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_car_paint_mescalito_black_vis_nir/CAR-PAINT-MescalitoBlack1600.anisotropicbsdf", + "IsOptic": false + }, + "CAR_PAINT_ValloireWhite1600": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_car_paint_-_valloire_white_vis_nir/CAR-PAINT-ValloireWhite1600.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_000_15_00": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 000 15 00.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_000_30_00": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 000 30 00.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_010_60_10": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 010 60 10.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_010_60_20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 010 60 20.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_010_92_05": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 010 92 05.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_011_90_35": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 011 90 35.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_020_30_05": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 020 30 05.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_021_90_05": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 021 90 05.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_040_40_50": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 040 40 50.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_040_40_67": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 040 40 67.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_040_50_70": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 040 50 70.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_050_60_40": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 050 60 40.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_050_60_80": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 050 60 80.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_070_40_10": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 070 40 10.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_080_80_80": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 080 80 80.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_090_90_20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 090 90 20.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_095_90_50": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 095 90 50.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_110_50_30": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 110 50 30.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_130_80_50": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 130 80 50.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_160_70_35": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 160 70 35.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_220_70_35": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 220 70 35.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_220_80_25": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 220 80 25.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_240_60_40": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 240 60 40.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_250_50_20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 250 50 20.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_250_50_30": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 250 50 30.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_280_50_05": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 280 50 05.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_290_50_15": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 290 50 15.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_290_50_30": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 290 50 30.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_330_60_40": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 330 60 40.anisotropicbsdf", + "IsOptic": false + }, + "RAL_D2_340_80_20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_color_ral-d2/RAL D2 340 80 20.anisotropicbsdf", + "IsOptic": false + }, + "Iridescent_Hologram": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent Hologram.brdf", + "IsOptic": false + }, + "Iridescent_blue": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent blue.brdf", + "IsOptic": false + }, + "Iridescent_green_pink": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent green pink.brdf", + "IsOptic": false + }, + "Iridescent_green_scarab": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent green scarab.brdf", + "IsOptic": false + }, + "Iridescent_light_green": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent light green.brdf", + "IsOptic": false + }, + "Iridescent_light_purple": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent light purple.brdf", + "IsOptic": false + }, + "Iridescent_nacre": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent nacre.brdf", + "IsOptic": false + }, + "Iridescent_red": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent red.brdf", + "IsOptic": false + }, + "Iridescent_red_yellow": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent red yellow.brdf", + "IsOptic": false + }, + "Iridescent_yellow": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_iridescent/Iridescent yellow.brdf", + "IsOptic": false + }, + "OMS2_Iridescent_Demo": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_oms2_iridescent_sample_demo/OMS2-Iridescent-Demo.brdf", + "IsOptic": false + }, + "TransmittingScatteringPaint_White": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_oms4_white_transmitting_scattering_paint_demo/TransmittingScatteringPaint_White.bsdf180", + "IsOptic": false + }, + "Paint_Black": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Black.brdf", + "IsOptic": false + }, + "Paint_Black_light": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Black light.brdf", + "IsOptic": false + }, + "Paint_Blue_dark": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Blue dark.brdf", + "IsOptic": false + }, + "Paint_Blue_darker": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Blue darker.brdf", + "IsOptic": false + }, + "Paint_Copper": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Copper.brdf", + "IsOptic": false + }, + "Paint_Gold": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Gold.brdf", + "IsOptic": false + }, + "Paint_Grey_frost": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Grey frost.brdf", + "IsOptic": false + }, + "Paint_Iridescent_Green_purple": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Iridescent Green purple.brdf", + "IsOptic": false + }, + "Paint_Purple": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Purple.brdf", + "IsOptic": false + }, + "Paint_Red": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Red.brdf", + "IsOptic": false + }, + "Paint_Sapphire_blue": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_paint/Paint Sapphire blue.brdf", + "IsOptic": false + }, + "4831Iriodin9303RoyalgoldWR1": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9303-9323_arcticfire/4831Iriodin9303RoyalgoldWR1.brdf", + "IsOptic": false + }, + "4831Iriodin9303RoyalgoldWR2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9303-9323_arcticfire/4831Iriodin9303RoyalgoldWR2.brdf", + "IsOptic": false + }, + "4832Iriodin9323RoyalgoldsatinWR1": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9303-9323_arcticfire/4832Iriodin9323RoyalgoldsatinWR1.brdf", + "IsOptic": false + }, + "4832Iriodin9323RoyalgoldsatinWR2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9303-9323_arcticfire/4832Iriodin9323RoyalgoldsatinWR2.brdf", + "IsOptic": false + }, + "T10_02_ArcticFire_40838": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9303-9323_arcticfire/T10-02_ArcticFire_40838.brdf", + "IsOptic": false + }, + "10_Iriodin_9514_1_Iriodin_9103_3_4_P_R_202_73905_1_3_P_R_179_71130": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9514-silk_red_wrii/10%Iriodin(9514)+1%Iriodin(9103)+3.4%P.R.202 73905+1.3%P.R.179 71130.brdf", + "IsOptic": false + }, + "2_3_Iriodin_9514_3_5_P_R_202_73905_2_3_P_R_224_71127_0_8_P_V_42_0_1_P_Bk_7_77266": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9514-silk_red_wrii/2.3%Iriodin(9514)+3.5%P.R.202 73905+2.3%P.R.224 71127+0.8%P.V.42+0.1%P.Bk.7 77266.brdf", + "IsOptic": false + }, + "5_Iriodin_9514": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9514-silk_red_wrii/5%Iriodin(9514).brdf", + "IsOptic": false + }, + "5_Iriodin_9514_0_5_P_Bk_7_77266": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9514-silk_red_wrii/5%Iriodin(9514)+0.5%P.Bk.7 77266.brdf", + "IsOptic": false + }, + "6_2_Iriodin_9514_0_8_P_Metall_1_77000": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9514-silk_red_wrii/6.2%Iriodin(9514)+0.8%P.Metall.1 77000.brdf", + "IsOptic": false + }, + "7_Iriodin_9514_3_5_P_R_216_59710_3_P_V_42_0_7_P_R_224_71127_0_1_P_Bk_7_77266": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9514-silk_red_wrii/7%Iriodin(9514)+3.5%P.R.216 59710+3%P.V.42+0.7%P.R.224 71127+0.1%P.Bk.7 77266.brdf", + "IsOptic": false + }, + "WhitePaperFromTheBrochure": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9514-silk_red_wrii/WhitePaperFromTheBrochure.brdf", + "IsOptic": false + }, + "2_Iriodin_9612_2_G": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/2%Iriodin(9612)+2%G.brdf", + "IsOptic": false + }, + "3_Iriodin_9612_0_3_C_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/3%Iriodin(9612)+0.3%C.B.brdf", + "IsOptic": false + }, + "4_95_Iriodin_9602_0_08_D_V_1_G_P_BK": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/4.95%Iriodin(9602)+0.08%D.V+1%G.P.BK.brdf", + "IsOptic": false + }, + "4_9_Iriodin_9612_0_1_I_B_2_G": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/4.9%Iriodin(9612)+0.1%I.B+2%G.brdf", + "IsOptic": false + }, + "4_9_Iriodin_9612_0_1_P_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/4.9%Iriodin(9612)+0.1%P.B.brdf", + "IsOptic": false + }, + "4_Iriodin_9602_0_3_C_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/4%Iriodin(9602)+0.3%C.B.brdf", + "IsOptic": false + }, + "4_Iriodin_9602_0_5_C_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/4%Iriodin(9602)+0.5%C.B.brdf", + "IsOptic": false + }, + "4_Iriodin_9612_0_5_C_B_0_5_P_G": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/4%Iriodin(9612)+0.5%C.B+0.5%P.G.brdf", + "IsOptic": false + }, + "5_Iriodin_9602": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/5%Iriodin(9602).brdf", + "IsOptic": false + }, + "5_Iriodin_9612": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/5%Iriodin(9612).brdf", + "IsOptic": false + }, + "6_93_Iriodin_9602_0_1_D_V": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/6.93%Iriodin(9602)+0.1%D.V.brdf", + "IsOptic": false + }, + "6_93_Iriodin_9602_0_1_P_BLUE": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/paint/surface_pigments_merck_iriodin_9602-9612_silvergray/6.93%Iriodin(9602)+0.1%P.BLUE.brdf", + "IsOptic": false + }, + "Makrofol_LM_228_2_4_160005_300my": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_lm228_2-4_160005_300my/Makrofol_LM_228_2-4-160005_300my.bsdf180", + "IsOptic": false + }, + "Makrofol_LM267_4_5_100um": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_lm267_4-5_140009/Makrofol-LM267-4-5-100um.bsdf180", + "IsOptic": false + }, + "Makrofol_LM267_4_5_75um": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_lm267_4-5_140009/Makrofol-LM267-4-5-75um.bsdf180", + "IsOptic": false + }, + "Makrofol_LM296_1_2_GM_760125_500my_matter_side_is_normal_side": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_lm296_1-2_GM_760125_500my/Makrofol_LM296_1_2_GM_760125_500my_matter_side_is_normal_side.bsdf180", + "IsOptic": false + }, + "Makrofol_LM_309_2_4_300um": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_lm309_2-4_160004/Makrofol_LM_309_2-4-300um.bsdf180", + "IsOptic": false + }, + "Makrofol_LM_309_2_4_500um": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_lm309_2-4_160004/Makrofol_LM_309_2-4-500um.bsdf180", + "IsOptic": false + }, + "Makrofol_LM322_2_4_160006_300my": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_lm322_2-4_160006_300my/Makrofol_LM322_2-4_160006_300my.bsdf180", + "IsOptic": false + }, + "Covestro_LM905_2_4_C_160009_500my": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_lm905_2-4_160009/Covestro_LM905_2-4_C-160009_500my.bsdf180", + "IsOptic": false + }, + "Makrofol_DE_1_4_500\u2561m": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_scattering_films_/Makrofol - DE 1-4 - 500\u2561m.anisotropicbsdf", + "IsOptic": false + }, + "Makrofol_DE_6_2_000000_wo_anisotropy_glossier_side_is_normal": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_scattering_films_/Makrofol_DE_6_2_000000_wo_anisotropy_glossier_side_is_normal.bsdf180", + "IsOptic": false + }, + "Makrofol_DP1243_150\u2561m": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_scattering_films_/Makrofol - DP1243 - 150\u2561m.anisotropicbsdf", + "IsOptic": false + }, + "Makrofol_TP1243_150\u2561m": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_scattering_films_/Makrofol - TP1243 - 150\u2561m.anisotropicbsdf", + "IsOptic": false + }, + "Makrofol_TP1243_300\u2561m": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_scattering_films_/Makrofol - TP1243 - 300\u2561m.anisotropicbsdf", + "IsOptic": false + }, + "Makrofol_TP1243_375\u2561m": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_scattering_films_/Makrofol - TP1243 - 375\u2561m.anisotropicbsdf", + "IsOptic": false + }, + "Makrofol_TP1243_500\u2561m": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_scattering_films_/Makrofol - TP1243 - 500\u2561m.anisotropicbsdf", + "IsOptic": false + }, + "Makrofol_UV_503_9_2_060004_wo_anisotropy_glossy_side_is_Normal": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrofol_scattering_films_/Makrofol_UV_503_9_2_060004_wo_anisotropy_glossy_side_is_Normal.bsdf180", + "IsOptic": false + }, + "MAKROLON_DX_NR_COOL_1_5": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX NR COOL/BSDF - 1.5mm/MAKROLON DX NR COOL 1.5.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_NR_COOL_3mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX NR COOL/BSDF - 3mm/MAKROLON DX NR COOL 3mm.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_NR_WARM_1_5mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX NR WARM/BSDF - 1.5mm/MAKROLON DX NR WARM 1.5mm.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_NR_WARM_3mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX NR WARM/BSDF - 3mm/MAKROLON DX NR WARM 3mm.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_UV_COOL_1_5_mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX UV COOL/BSDF - 1.5mm/MAKROLON DX UV COOL 1.5 mm.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_UV_COOL_3mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX UV COOL/BSDF - 3mm/MAKROLON DX UV COOL 3mm.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_UV_WARM_1_5mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX UV WARM/BSDF - 1.5mm/MAKROLON DX UV WARM 1.5mm.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_UV_WARM_3mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX UV WARM/BSDF - 3mm/MAKROLON DX UV WARM 3mm.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_WARM_1_5mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX WARM/BSDF - 1.5mm/MAKROLON DX WARM 1.5mm.anisotropicbsdf", + "IsOptic": false + }, + "MAKROLON_DX_WARM_3mm": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_dx_line-diffuser_sheets_/MAKROLON DX WARM/BSDF - 3mm/MAKROLON DX WARM 3mm.anisotropicbsdf", + "IsOptic": false + }, + "Makrolon_RX_FR": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_rx_line-reflector_sheets/MAKROLON RX FR/Makrolon RX FR.anisotropicbsdf", + "IsOptic": false + }, + "Makrolon_RX": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_makrolon_rx_line-reflector_sheets/MAKROLON RX/Makrolon RX.anisotropicbsdf", + "IsOptic": false + }, + "COVESTRO_RW2405_012797": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_covestro_rw2405/Materials/COVESTRO_RW2405-012797.anisotropicbsdf", + "IsOptic": false + }, + "LCDBlackGreySemiMatt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_displays/LCDBlackGreySemiMatt.brdf", + "IsOptic": false + }, + "LCDBlackMatt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_displays/LCDBlackMatt.brdf", + "IsOptic": false + }, + "LCDBlackSemiGloss": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_displays/LCDBlackSemiGloss.brdf", + "IsOptic": false + }, + "LCDBlackSemiMatt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_displays/LCDBlackSemiMatt.brdf", + "IsOptic": false + }, + "LCD_Blue": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_displays/LCD Blue.brdf", + "IsOptic": false + }, + "LCD_TV_Black_glossy": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_displays/LCD TV Black glossy.brdf", + "IsOptic": false + }, + "FurukawaElectric_MCPET": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_furukawa_electric_mc-pet/FurukawaElectric-MCPET.anisotropicbsdf", + "IsOptic": false + }, + "Plastic_Black_Coarse": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_plastic_hard/Plastic Black Coarse.brdf", + "IsOptic": false + }, + "Plastic_Black_Grey": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_plastic_hard/Plastic Black Grey.brdf", + "IsOptic": false + }, + "Plastic_Black_Matt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_plastic_hard/Plastic Black Matt.brdf", + "IsOptic": false + }, + "Plastic_Black_Satin": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_plastic_hard/Plastic Black Satin.brdf", + "IsOptic": false + }, + "Plastic_Black_Specular": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_plastic_hard/Plastic Black Specular.brdf", + "IsOptic": false + }, + "Plastic_Soft_Black": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_plastic_soft/Plastic Soft Black.brdf", + "IsOptic": false + }, + "Plastic_Soft_Black_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_plastic_soft/Plastic Soft Black 2.brdf", + "IsOptic": false + }, + "Plastic_Soft_Blue": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/plastic/surface_plastic_soft/Plastic Soft Blue.brdf", + "IsOptic": false + }, + "MIRO20_2000GP": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro/MIRO20-2000GP.anisotropicbsdf", + "IsOptic": false + }, + "MIRO6_6000GP_W2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro/MIRO6-6000GP_W2.anisotropicbsdf", + "IsOptic": false + }, + "MIRO7_5000GP": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro/MIRO7-5000GP.anisotropicbsdf", + "IsOptic": false + }, + "MIRO8_5100GP": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro/MIRO8-5100GP.anisotropicbsdf", + "IsOptic": false + }, + "MIRO20SILVER_2000AG": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro-silver/MIRO20SILVER-2000AG.anisotropicbsdf", + "IsOptic": false + }, + "MIRO5SILVER_5013AG": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro-silver/MIRO5SILVER-5013AG.anisotropicbsdf", + "IsOptic": false + }, + "MIRO7SILVER_5000AG": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro-silver/MIRO7SILVER-5000AG.anisotropicbsdf", + "IsOptic": false + }, + "MIRO85SILVER_8510AG": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro-silver/MIRO85SILVER-8510AG.anisotropicbsdf", + "IsOptic": false + }, + "MIRO8SILVER_5100AG": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro-silver/MIRO8SILVER-5100AG.anisotropicbsdf", + "IsOptic": false + }, + "MIRO8SILVER_5120AG": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_alanod_miro-silver/MIRO8SILVER-5120AG.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_99_5_D_ML_Matt_lite": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - 99.5 D ML Matt-lite.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_99_90_S_SB_SuperBrite_Sandblasting_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - 99.90 S SB SuperBrite Sandblasting B.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_99_90_S_SB_SuperBrite_Sandblasting_D": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - 99.90 S SB SuperBrite Sandblasting D.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_99_90_S_SB_SuperBrite_Sandblasting_F": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - 99.90 S SB SuperBrite Sandblasting F.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_99_90_S_SB_SuperBrite_Sandblasting_H": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - 99.90 S SB SuperBrite Sandblasting H.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_99_98_D_SB_SuperBrite": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - 99.98 D SB SuperBrite.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_99_9_D_SB_Superbrite": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - 99.9 D SB Superbrite.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_VEGA_95100": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - VEGA 95100.simplescattering", + "IsOptic": false + }, + "ALMECO_VEGA_95110": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - VEGA 95110.simplescattering", + "IsOptic": false + }, + "ALMECO_VEGA_95120": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - VEGA 95120.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_VEGA_95125": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - VEGA 95125.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_VEGA_95210": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - VEGA 95210.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_VEGA_95230": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - VEGA 95230.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_finish_090_050_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 090 050 B.simplescattering", + "IsOptic": false + }, + "ALMECO_finish_101_050_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 101 050 B.simplescattering", + "IsOptic": false + }, + "ALMECO_finish_103_050_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 103 050 B.simplescattering", + "IsOptic": false + }, + "ALMECO_finish_106_040_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 106 040 B.simplescattering", + "IsOptic": false + }, + "ALMECO_finish_121_4_040_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 121-4 040 B.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_finish_125_4_040_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 125-4 040 B.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_finish_130_050_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 130 050 B.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_finish_190_040_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 190 040 B.simplescattering", + "IsOptic": false + }, + "ALMECO_finish_230_050_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 230 050 B.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_finish_236_040_B": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/ALMECO - finish 236 040 B.anisotropicbsdf", + "IsOptic": false + }, + "D121_SIII_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/D121_SIII.anisotropicbsdf", + "IsOptic": false + }, + "D122_SIII_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco/D122_SIII.anisotropicbsdf", + "IsOptic": false + }, + "1000": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/1000.mirror", + "IsOptic": false + }, + "1160": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/1160.mirror", + "IsOptic": false + }, + "1170": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/1170.mirror", + "IsOptic": false + }, + "1175": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/1175.mirror", + "IsOptic": false + }, + "1180": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/1180.mirror", + "IsOptic": false + }, + "1280": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/1280.mirror", + "IsOptic": false + }, + "1499S": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/1499S.mirror", + "IsOptic": false + }, + "2008": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/2008.mirror", + "IsOptic": false + }, + "Helia560": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_satma/Helia560.mirror", + "IsOptic": false + }, + "ALMECO_V98120_040L": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_vega-98/ALMECO - V98120 040L.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_V98125_040L": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_vega-98/ALMECO - V98125 040L.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_V98127_050L": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_vega-98/ALMECO - V98127 050L.anisotropicbsdf", + "IsOptic": false + }, + "ALMECO_V98D80_040L": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_almeco_vega-98/ALMECO - V98D80 040L.anisotropicbsdf", + "IsOptic": false + }, + "Altuglas_Reflect_M31": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_arkema_altuglas_reflect_m31/Altuglas Reflect M31.anisotropicbsdf", + "IsOptic": false + }, + "Metal_Brushed_Copper": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_brushed/Metal Brushed Copper.brdf", + "IsOptic": false + }, + "Metal_Brushed_Iron": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_brushed/Metal Brushed Iron.brdf", + "IsOptic": false + }, + "Metal_Gold_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_gold/Metal Gold.brdf", + "IsOptic": false + }, + "Metal_Satin_Alu": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Alu.brdf", + "IsOptic": false + }, + "Metal_Satin_Alu_2": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Alu 2.brdf", + "IsOptic": false + }, + "Metal_Satin_Alu_3": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Alu 3.brdf", + "IsOptic": false + }, + "Metal_Satin_Blue": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Blue.brdf", + "IsOptic": false + }, + "Metal_Satin_Blue_Sky": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Blue Sky.brdf", + "IsOptic": false + }, + "Metal_Satin_Brown": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Brown.brdf", + "IsOptic": false + }, + "Metal_Satin_Brown_dark": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Brown dark.brdf", + "IsOptic": false + }, + "Metal_Satin_Brown_ligth": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Brown ligth.brdf", + "IsOptic": false + }, + "Metal_Satin_Gold": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Gold.brdf", + "IsOptic": false + }, + "Metal_Satin_Green": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Green.brdf", + "IsOptic": false + }, + "Metal_Satin_Green_dark": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Green dark.brdf", + "IsOptic": false + }, + "Metal_Satin_Green_grey": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Green grey.brdf", + "IsOptic": false + }, + "Metal_Satin_Pink": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Pink.brdf", + "IsOptic": false + }, + "Metal_Satin_Purple": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Purple.brdf", + "IsOptic": false + }, + "Metal_Satin_Red_Rose": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metal_satin/Metal Satin Red Rose.brdf", + "IsOptic": false + }, + "Ag": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Ag.mirror", + "IsOptic": false + }, + "Al": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Al.mirror", + "IsOptic": false + }, + "Au": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Au.mirror", + "IsOptic": false + }, + "Cr": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Cr.mirror", + "IsOptic": false + }, + "Cu": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Cu.mirror", + "IsOptic": false + }, + "Hg": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Hg.mirror", + "IsOptic": false + }, + "Ni": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Ni.mirror", + "IsOptic": false + }, + "Pt": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Pt.mirror", + "IsOptic": false + }, + "Rh": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_metalic_mirror/Rh.mirror", + "IsOptic": false + }, + "OpticsLite_C12": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_opticslite_metalized_surfaces/OpticsLite - C12.anisotropicbsdf", + "IsOptic": false + }, + "OpticsLite_C4_1": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_opticslite_metalized_surfaces/OpticsLite - C4-1.anisotropicbsdf", + "IsOptic": false + }, + "OpticsLite_C7": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_opticslite_metalized_surfaces/OpticsLite - C7.anisotropicbsdf", + "IsOptic": false + }, + "OpticsLite_C9": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_opticslite_metalized_surfaces/OpticsLite - C9.anisotropicbsdf", + "IsOptic": false + }, + "OpticsLite_K10": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_opticslite_metalized_surfaces/OpticsLite - K10.anisotropicbsdf", + "IsOptic": false + }, + "OpticsLite_K30": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_opticslite_metalized_surfaces/OpticsLite - K30.anisotropicbsdf", + "IsOptic": false + }, + "OpticsLite_K5": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_opticslite_metalized_surfaces/OpticsLite - K5.anisotropicbsdf", + "IsOptic": false + }, + "OpticsLite_K50": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_opticslite_metalized_surfaces/OpticsLite - K50.anisotropicbsdf", + "IsOptic": false + }, + "Reflector_RAL_9003_GL": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_siteco_luminaries_samples/Reflector RAL 9003 GL.anisotropicbsdf", + "IsOptic": false + }, + "Reflector_RAL_9006_MT": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_siteco_luminaries_samples/Reflector RAL 9006 MT.anisotropicbsdf", + "IsOptic": false + }, + "Reflector_RAL_9010_GL": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_siteco_luminaries_samples/Reflector RAL 9010 GL.anisotropicbsdf", + "IsOptic": false + }, + "Reflector_RAL_9010_MT": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_siteco_luminaries_samples/Reflector RAL 9010 MT.anisotropicbsdf", + "IsOptic": false + }, + "Reflector_RAL_9010_PT": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_siteco_luminaries_samples/Reflector RAL 9010 PT.anisotropicbsdf", + "IsOptic": false + }, + "Solar_Material_R85G20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_solar_reflector_exemple_files/Solar_Material_R85G20.simplescattering", + "IsOptic": false + }, + "Solar_Material_R85G80": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_solar_reflector_exemple_files/Solar_Material_R85G80.simplescattering", + "IsOptic": false + }, + "Solar_Material_R90G20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_solar_reflector_exemple_files/Solar_Material_R90G20.simplescattering", + "IsOptic": false + }, + "Solar_Material_R90G80": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_solar_reflector_exemple_files/Solar_Material_R90G80.simplescattering", + "IsOptic": false + }, + "Solar_Material_R98G20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_solar_reflector_exemple_files/Solar_Material_R98G20.simplescattering", + "IsOptic": false + }, + "Solar_Material_R98G80": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/reflector/surface_solar_reflector_exemple_files/Solar_Material_R98G80.simplescattering", + "IsOptic": false + }, + "Dashboard_Basic": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/surface_dashboard/Dashboard Basic.brdf", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_12": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-12.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_15": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-15.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_18": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-18.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_21": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-21.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_24": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-24.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_27": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-27.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_30": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-30.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_33": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-33.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_36": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-36.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_38": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-38.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_42": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-42.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_Chemical_Etching_45": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi-chemical_etching/AgieCharmillesVDI_Chemical-Etching-45.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_EDM_31": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi_edm/AgieCharmillesVDI_EDM-31.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_EDM_33": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi_edm/AgieCharmillesVDI_EDM-33.unpolished", + "IsOptic": false + }, + "AgieCharmillesVDI_EDM_35": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/rough/unpolished_agiecharmilles_vdi_edm/AgieCharmillesVDI_EDM-35.unpolished", + "IsOptic": false + }, + "Mirror_000_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_000_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_005_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_005_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_010_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_010_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_015_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_015_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_020_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_020_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_025_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_025_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_030_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_030_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_035_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_035_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_040_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_040_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_045_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_045_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_050_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_050_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_055_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_055_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_060_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_060_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_065_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_065_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_070_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_070_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_075_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_075_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_080_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_080_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_085_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_085_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_090_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_090_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_095_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_095_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Mirror_100_percent_absorption": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Absorbing Mirrors/Mirror_100_percent_absorption.perfectmirror", + "IsOptic": false + }, + "Lambertian_Reflector_R0": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R0%.simplescattering", + "IsOptic": false + }, + "Lambertian_Reflector_R10": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R10%.simplescattering", + "IsOptic": false + }, + "Lambertian_Reflector_R100": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R100%.simplescattering", + "IsOptic": false + }, + "Lambertian_Reflector_R20": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R20%.simplescattering", + "IsOptic": false + }, + "Lambertian_Reflector_R5": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R5%.simplescattering", + "IsOptic": false + }, + "Lambertian_Reflector_R50": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R50%.simplescattering", + "IsOptic": false + }, + "Lambertian_Reflector_R80": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R80%.simplescattering", + "IsOptic": false + }, + "Lambertian_Reflector_R90": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R90%.simplescattering", + "IsOptic": false + }, + "Lambertian_Reflector_R95": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_ansys_basic_surfaces/Lambertian Reflectors/Lambertian_Reflector-R95%.simplescattering", + "IsOptic": false + }, + "Diffusor10deg": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_diffusors_for_training/Diffusor10deg.simplescattering", + "IsOptic": false + }, + "Diffusor20deg": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_diffusors_for_training/Diffusor20deg.simplescattering", + "IsOptic": false + }, + "Diffusor30deg": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_diffusors_for_training/Diffusor30deg.simplescattering", + "IsOptic": false + }, + "Diffusor40deg": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_diffusors_for_training/Diffusor40deg.simplescattering", + "IsOptic": false + }, + "Diffusor50deg": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_diffusors_for_training/Diffusor50deg.simplescattering", + "IsOptic": false + }, + "Diffusor_a": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_set_of_diffusors_for_training/Diffusor-a.simplescattering", + "IsOptic": false + }, + "Diffusor_b": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_set_of_diffusors_for_training/Diffusor-b.simplescattering", + "IsOptic": false + }, + "Diffusor_c": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_set_of_diffusors_for_training/Diffusor-c.simplescattering", + "IsOptic": false + }, + "Diffusor_d": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_set_of_diffusors_for_training/Diffusor-d.simplescattering", + "IsOptic": false + }, + "Diffusor_e": { + "Volume": null, + "Surface": "Optical_Property/surface_optical_properties/surface_set_of_diffusors_for_training/Diffusor-e.simplescattering", + "IsOptic": false + }, + "AIR": { + "Volume": "Optical_Property/volume_optical_properties/material_ansys_basic_materials/AIR.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK7": { + "Volume": "Optical_Property/volume_optical_properties/material_ansys_basic_materials/BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "PMMA": { + "Volume": "Optical_Property/volume_optical_properties/material_ansys_basic_materials/PMMA.material", + "Surface": "Polished", + "IsOptic": true + }, + "POLYCARBONATE": { + "Volume": "Optical_Property/volume_optical_properties/material_ansys_basic_materials/POLYCARBONATE.material", + "Surface": "Polished", + "IsOptic": true + }, + "POLYSTYROL": { + "Volume": "Optical_Property/volume_optical_properties/material_ansys_basic_materials/POLYSTYROL.material", + "Surface": "Polished", + "IsOptic": true + }, + "SAN": { + "Volume": "Optical_Property/volume_optical_properties/material_ansys_basic_materials/SAN.material", + "Surface": "Polished", + "IsOptic": true + }, + "SILICA": { + "Volume": "Optical_Property/volume_optical_properties/material_ansys_basic_materials/SILICA.material", + "Surface": "Polished", + "IsOptic": true + }, + "WATER": { + "Volume": "Optical_Property/volume_optical_properties/material_ansys_basic_materials/WATER.material", + "Surface": "Polished", + "IsOptic": true + }, + "AMTIR1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/AMTIR/AMTIR1.material", + "Surface": "Polished", + "IsOptic": true + }, + "AMTIR2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/AMTIR/AMTIR2.material", + "Surface": "Polished", + "IsOptic": true + }, + "AMTIR3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/AMTIR/AMTIR3.material", + "Surface": "Polished", + "IsOptic": true + }, + "AL_6261_OKP4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ANGSTROMLINK/AL-6261-(OKP4).material", + "Surface": "Polished", + "IsOptic": true + }, + "AL_6263_OKP4HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ANGSTROMLINK/AL-6263-(OKP4HT).material", + "Surface": "Polished", + "IsOptic": true + }, + "AL_6264_OKP1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ANGSTROMLINK/AL-6264-(OKP1).material", + "Surface": "Polished", + "IsOptic": true + }, + "AL_6265_OKP_850": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ANGSTROMLINK/AL-6265-(OKP-850).material", + "Surface": "Polished", + "IsOptic": true + }, + "APL5014CL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/APEL/APL5014CL.material", + "Surface": "Polished", + "IsOptic": true + }, + "APL5014GH": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/APEL/APL5014GH.material", + "Surface": "Polished", + "IsOptic": true + }, + "APL5015AL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/APEL/APL5015AL.material", + "Surface": "Polished", + "IsOptic": true + }, + "APL5514ML": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/APEL/APL5514ML.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC79M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/K-VC79M.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BAL35M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/L-BAL35M.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAM69M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/L-LAM69M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL3M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-BAL3M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL41M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-BAL41M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL42M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-BAL42M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSL7M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-BSL7M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FSL5M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-FSL5M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH53M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-LAH53M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH60M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-LAH60M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL12M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-LAL12M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL13M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-LAL13M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM60M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-LAM60M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL3M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-NSL3M.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM2M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARCHER/S-TIM2M.material", + "Surface": "Polished", + "IsOptic": true + }, + "D4000": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARTON/D4000.material", + "Surface": "Polished", + "IsOptic": true + }, + "D4531F": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARTON/D4531F.material", + "Surface": "Polished", + "IsOptic": true + }, + "D4532": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARTON/D4532.material", + "Surface": "Polished", + "IsOptic": true + }, + "D4540": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARTON/D4540.material", + "Surface": "Polished", + "IsOptic": true + }, + "DX4900": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARTON/DX4900.material", + "Surface": "Polished", + "IsOptic": true + }, + "F3500": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARTON/F3500.material", + "Surface": "Polished", + "IsOptic": true + }, + "F4520": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARTON/F4520.material", + "Surface": "Polished", + "IsOptic": true + }, + "F5023": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ARTON/F5023.material", + "Surface": "Polished", + "IsOptic": true + }, + "SUPRAX": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/AUER-LIGHTING/SUPRAX.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADP": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/ADP.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADP_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/ADP-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "AGASS3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/AGASS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "AGASS3_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/AGASS3-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "AGGAS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/AGGAS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "AGGAS2_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/AGGAS2-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "AGGASE2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/AGGASE2.material", + "Surface": "Polished", + "IsOptic": true + }, + "AGGASE2_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/AGGASE2-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "AL2O3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/AL2O3.material", + "Surface": "Polished", + "IsOptic": true + }, + "AL2O3_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/AL2O3-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "ALN": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/ALN.material", + "Surface": "Polished", + "IsOptic": true + }, + "ALN_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/ALN-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "BATIO3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/BATIO3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BATIO3_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/BATIO3-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "BBO": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/BBO.material", + "Surface": "Polished", + "IsOptic": true + }, + "BBO_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/BBO-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "BEO": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/BEO.material", + "Surface": "Polished", + "IsOptic": true + }, + "BEO_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/BEO-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "CALCITE": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CALCITE.material", + "Surface": "Polished", + "IsOptic": true + }, + "CALCITE_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CALCITE-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "CAMOO4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CAMOO4.material", + "Surface": "Polished", + "IsOptic": true + }, + "CAMOO4_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CAMOO4-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "CAWO4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CAWO4.material", + "Surface": "Polished", + "IsOptic": true + }, + "CAWO4_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CAWO4-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDGEAS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CDGEAS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDGEAS2_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CDGEAS2-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CDS.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDSE": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CDSE.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDSE_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CDSE-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDS_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CDS-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "CUGAS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CUGAS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "CUGAS2_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/CUGAS2-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "KDP": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/KDP.material", + "Surface": "Polished", + "IsOptic": true + }, + "KDP_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/KDP-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF3_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/LAF3-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "LINBO3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/LINBO3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LINBO3_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/LINBO3-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "LIO3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/LIO3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LIO3_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/LIO3-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "LIYF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/LIYF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LIYF4_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/LIYF4-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "MGF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/MGF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "MGF2_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/MGF2-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBMOO4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/PBMOO4.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBMOO4_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/PBMOO4-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "QUARTZ": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/QUARTZ.material", + "Surface": "Polished", + "IsOptic": true + }, + "QUARTZ_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/QUARTZ-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "SRMOO4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/SRMOO4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SRMOO4_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/SRMOO4-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/TAS.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAS_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/TAS-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "TE": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/TE.material", + "Surface": "Polished", + "IsOptic": true + }, + "TEO2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/TEO2.material", + "Surface": "Polished", + "IsOptic": true + }, + "TEO2_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/TEO2-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "TE_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/TE-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "YVO4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/YVO4.material", + "Surface": "Polished", + "IsOptic": true + }, + "YVO4_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/YVO4-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNGEP2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/ZNGEP2.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNGEP2_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/ZNGEP2-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNO": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/ZNO.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNO_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/BIREFRINGENT/ZNO-E.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/BAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/BAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/BAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-FK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK61A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-FK61A.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK61A_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-FK61A-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK61_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-FK61-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-FK95.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK95_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-FK95-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_K59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-K59.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_K59_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-K59-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_K9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-K9.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_K9GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-K9GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_K9GT_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-K9GT-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_K9_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-K9-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF050": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAF050.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF050_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAF050-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF50_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAF50-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF53_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAF53-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF79": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAF79.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF79_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAF79-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAK52.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK52_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAK52-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK5_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAK5-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK6_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAK6-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAK70.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK70_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-LAK70-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_PK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-PK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_PK3_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-PK3-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_QK3L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-QK3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_QK3L_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-QK3L-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZF10_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZF10-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZF93": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZF93.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZF93_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZF93-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK21_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK21-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK2A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK2A.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK2A_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK2A-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK2L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK2L.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK2L_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK2L-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK2_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK2-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK3A.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3A_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK3A-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3L_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK3L-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK3-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK79": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK79.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK79_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZK79-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF50_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF50-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF52LA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF52LA.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF52LA_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF52LA-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF61.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF61_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF61-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF67.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF67_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF67-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF81": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF81.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF81_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF81-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF85A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF85A.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF85A_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF85A-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF85L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF85L.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF85LN": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF85LN.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF85LN_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF85LN-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF85LS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF85LS.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF85LS_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF85LS-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF85L_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZLAF85L-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZPK1A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZPK1A.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZPK1A_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZPK1A-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZPK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZPK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZPK3_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZPK3-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZPK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZPK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZPK5_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZPK5-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZPK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZPK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZPK7_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/D-ZPK7-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "F1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "F13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F13.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "F3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "F4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "F4GTI": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F4GTI.material", + "Surface": "Polished", + "IsOptic": true + }, + "F5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "F6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F6.material", + "Surface": "Polished", + "IsOptic": true + }, + "F7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/F7.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS1.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS27.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS4.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS5.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS6.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS7.material", + "Surface": "Polished", + "IsOptic": true + }, + "HWS9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/HWS9.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK7A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK7A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK7GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK7GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-BAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-F13.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-F51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-FK55.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-FK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK61B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-FK61B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-FK71.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK71A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-FK71A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK95N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-FK95N.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K11.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K12.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K8.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K90GTI": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K90GTI.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K9L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K9L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K9LA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K9LA.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K9LAGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K9LAGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K9LGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K9LGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K9L_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-K9L.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_KF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF10LA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF10LA.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF3B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF3B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF4GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF4GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF50B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF50B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF54.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF55.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF62": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF62.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF6LA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF6LA.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAFL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAFL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK2A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK2A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK4L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK4L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK50A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK50A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK51A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK51A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK53A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK53A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK53B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK53B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK54.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK59A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK59A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK5A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK5A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK67.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK6A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK6A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK7A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK7A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK8A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK8A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK8B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-LAK8B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF50A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QF50A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QF56.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF6A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QF6A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QK3L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QK3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QK3LGTI": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-QK3LGTI.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_TF3L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-TF3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_TF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-TF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_TF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-TF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF16.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF20.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF21.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZBAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF13GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF13GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF1A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF1A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF39": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF39.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF4A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF4A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF4AGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF4AGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF52A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF52A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF52GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF52GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF52TT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF52TT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF62": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF62.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF62GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF62GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF71.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF71GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF71GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF72A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF72A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF72AGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF72AGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF73": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF73.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF73GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF73GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF7LA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF7LA.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF7LAGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF7LAGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF88": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF88.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF88GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZF88GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK10L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK10L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK20.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK3A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK3A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK50GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK50GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK7A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK7A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK9A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK9A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK9B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZK9B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF2A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF2A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF4LA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF4LA.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF4LB": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF4LB.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF50D": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF50D.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF50E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF50E.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF52A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF52A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF53B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF53B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF53BGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF53BGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF55C": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF55C.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF55D": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF55D.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF56B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF56B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF66.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF66GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF66GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF68B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF68B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF68C": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF68C.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF68N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF68N.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF69": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF69.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF69A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF69A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF71.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF71AGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF71AGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF73": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF73.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF75A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF75A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF75B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF75B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF75C": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF75C.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF76": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF76.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF76A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF76A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF78B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF78B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF89L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF89L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF89LA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF89LA.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF90.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF92": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF92.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF96": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZLAF96.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZPK1A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZPK1A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZPK2A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZPK2A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZPK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZPK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZPK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZPK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZPK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/H-ZPK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "K4A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/K4A.material", + "Surface": "Polished", + "IsOptic": true + }, + "QF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/QF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "QF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/QF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "QF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/QF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "QF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/QF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "QF50GTI": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/QF50GTI.material", + "Surface": "Polished", + "IsOptic": true + }, + "QF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/QF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "QF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/QF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "TF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/TF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZBAF17": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZBAF17.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZBAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZBAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZBAF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZBAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF7L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF7L.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF7LGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF7LGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF7LTT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF7LTT.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CDGM/ZF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "A63_65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/A63-65.material", + "Surface": "Polished", + "IsOptic": true + }, + "A86_82": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/A86-82.material", + "Surface": "Polished", + "IsOptic": true + }, + "A87_70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/A87-70.material", + "Surface": "Polished", + "IsOptic": true + }, + "A87_84": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/A87-84.material", + "Surface": "Polished", + "IsOptic": true + }, + "A88_66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/A88-66.material", + "Surface": "Polished", + "IsOptic": true + }, + "B10_63": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B10-63.material", + "Surface": "Polished", + "IsOptic": true + }, + "B11_60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B11-60.material", + "Surface": "Polished", + "IsOptic": true + }, + "B16_64": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B16-64.material", + "Surface": "Polished", + "IsOptic": true + }, + "B18_60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B18-60.material", + "Surface": "Polished", + "IsOptic": true + }, + "B18_65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B18-65.material", + "Surface": "Polished", + "IsOptic": true + }, + "B19_61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B19-61.material", + "Surface": "Polished", + "IsOptic": true + }, + "B23_59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B23-59.material", + "Surface": "Polished", + "IsOptic": true + }, + "B29_52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B29-52.material", + "Surface": "Polished", + "IsOptic": true + }, + "B29_77": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B29-77.material", + "Surface": "Polished", + "IsOptic": true + }, + "B39_59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B39-59.material", + "Surface": "Polished", + "IsOptic": true + }, + "B42_73": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B42-73.material", + "Surface": "Polished", + "IsOptic": true + }, + "B48_46": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B48-46.material", + "Surface": "Polished", + "IsOptic": true + }, + "B48_53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B48-53.material", + "Surface": "Polished", + "IsOptic": true + }, + "B52_67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B52-67.material", + "Surface": "Polished", + "IsOptic": true + }, + "B58_53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B58-53.material", + "Surface": "Polished", + "IsOptic": true + }, + "B58_72": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B58-72.material", + "Surface": "Polished", + "IsOptic": true + }, + "B64_61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B64-61.material", + "Surface": "Polished", + "IsOptic": true + }, + "B69_56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B69-56.material", + "Surface": "Polished", + "IsOptic": true + }, + "B72_57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B72-57.material", + "Surface": "Polished", + "IsOptic": true + }, + "B81_41": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B81-41.material", + "Surface": "Polished", + "IsOptic": true + }, + "B89_61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B89-61.material", + "Surface": "Polished", + "IsOptic": true + }, + "B96_67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/B96-67.material", + "Surface": "Polished", + "IsOptic": true + }, + "C04_38": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C04-38.material", + "Surface": "Polished", + "IsOptic": true + }, + "C04_64": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C04-64.material", + "Surface": "Polished", + "IsOptic": true + }, + "C0550": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C0550.material", + "Surface": "Polished", + "IsOptic": true + }, + "C05_50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C05-50.material", + "Surface": "Polished", + "IsOptic": true + }, + "C06_44": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C06-44.material", + "Surface": "Polished", + "IsOptic": true + }, + "C07_57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C07-57.material", + "Surface": "Polished", + "IsOptic": true + }, + "C09_59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C09-59.material", + "Surface": "Polished", + "IsOptic": true + }, + "C13_44": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C13-44.material", + "Surface": "Polished", + "IsOptic": true + }, + "C13_56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C13-56.material", + "Surface": "Polished", + "IsOptic": true + }, + "C13_58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C13-58.material", + "Surface": "Polished", + "IsOptic": true + }, + "C16_44": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C16-44.material", + "Surface": "Polished", + "IsOptic": true + }, + "C17_55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C17-55.material", + "Surface": "Polished", + "IsOptic": true + }, + "C20_36": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C20-36.material", + "Surface": "Polished", + "IsOptic": true + }, + "C20_60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C20-60.material", + "Surface": "Polished", + "IsOptic": true + }, + "C23_53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C23-53.material", + "Surface": "Polished", + "IsOptic": true + }, + "C23_57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C23-57.material", + "Surface": "Polished", + "IsOptic": true + }, + "C23_58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C23-58.material", + "Surface": "Polished", + "IsOptic": true + }, + "C24_47": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C24-47.material", + "Surface": "Polished", + "IsOptic": true + }, + "C26_36": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C26-36.material", + "Surface": "Polished", + "IsOptic": true + }, + "C37_35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C37-35.material", + "Surface": "Polished", + "IsOptic": true + }, + "C38_42": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C38-42.material", + "Surface": "Polished", + "IsOptic": true + }, + "C39_56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C39-56.material", + "Surface": "Polished", + "IsOptic": true + }, + "C41_60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C41-60.material", + "Surface": "Polished", + "IsOptic": true + }, + "C42_58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C42-58.material", + "Surface": "Polished", + "IsOptic": true + }, + "C48_34": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C48-34.material", + "Surface": "Polished", + "IsOptic": true + }, + "C48_46": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C48-46.material", + "Surface": "Polished", + "IsOptic": true + }, + "C51_39": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C51-39.material", + "Surface": "Polished", + "IsOptic": true + }, + "C51_56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C51-56.material", + "Surface": "Polished", + "IsOptic": true + }, + "C52_58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C52-58.material", + "Surface": "Polished", + "IsOptic": true + }, + "C55_40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C55-40.material", + "Surface": "Polished", + "IsOptic": true + }, + "C57_57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C57-57.material", + "Surface": "Polished", + "IsOptic": true + }, + "C58_51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C58-51.material", + "Surface": "Polished", + "IsOptic": true + }, + "C67_33": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C67-33.material", + "Surface": "Polished", + "IsOptic": true + }, + "C67_48": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C67-48.material", + "Surface": "Polished", + "IsOptic": true + }, + "C70_47": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C70-47.material", + "Surface": "Polished", + "IsOptic": true + }, + "C72_32": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C72-32.material", + "Surface": "Polished", + "IsOptic": true + }, + "C78_56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C78-56.material", + "Surface": "Polished", + "IsOptic": true + }, + "C79_80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C79-80.material", + "Surface": "Polished", + "IsOptic": true + }, + "C89_31": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C89-31.material", + "Surface": "Polished", + "IsOptic": true + }, + "C90_50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C90-50.material", + "Surface": "Polished", + "IsOptic": true + }, + "C90_55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C90-55.material", + "Surface": "Polished", + "IsOptic": true + }, + "C97_36": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C97-36.material", + "Surface": "Polished", + "IsOptic": true + }, + "C97_55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C97-55.material", + "Surface": "Polished", + "IsOptic": true + }, + "C97_56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C97-56.material", + "Surface": "Polished", + "IsOptic": true + }, + "C99_30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/C99-30.material", + "Surface": "Polished", + "IsOptic": true + }, + "D01_41": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D01-41.material", + "Surface": "Polished", + "IsOptic": true + }, + "D13_54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D13-54.material", + "Surface": "Polished", + "IsOptic": true + }, + "D17_29": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D17-29.material", + "Surface": "Polished", + "IsOptic": true + }, + "D17_48": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D17-48.material", + "Surface": "Polished", + "IsOptic": true + }, + "D20_50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D20-50.material", + "Surface": "Polished", + "IsOptic": true + }, + "D23_38": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D23-38.material", + "Surface": "Polished", + "IsOptic": true + }, + "D28_28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D28-28.material", + "Surface": "Polished", + "IsOptic": true + }, + "D34_26": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D34-26.material", + "Surface": "Polished", + "IsOptic": true + }, + "D34_51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D34-51.material", + "Surface": "Polished", + "IsOptic": true + }, + "D40_28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D40-28.material", + "Surface": "Polished", + "IsOptic": true + }, + "D44_45": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D44-45.material", + "Surface": "Polished", + "IsOptic": true + }, + "D56_27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D56-27.material", + "Surface": "Polished", + "IsOptic": true + }, + "D62_27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D62-27.material", + "Surface": "Polished", + "IsOptic": true + }, + "D85_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D85-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "D85_26": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D85-26.material", + "Surface": "Polished", + "IsOptic": true + }, + "D88_47": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D88-47.material", + "Surface": "Polished", + "IsOptic": true + }, + "D96_43": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/D96-43.material", + "Surface": "Polished", + "IsOptic": true + }, + "E00_46": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/E00-46.material", + "Surface": "Polished", + "IsOptic": true + }, + "E03_47": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/E03-47.material", + "Surface": "Polished", + "IsOptic": true + }, + "E05_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/E05-25.material", + "Surface": "Polished", + "IsOptic": true + }, + "E37_30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/E37-30.material", + "Surface": "Polished", + "IsOptic": true + }, + "E65_40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/E65-40.material", + "Surface": "Polished", + "IsOptic": true + }, + "E78_38": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/CORNING/E78-38.material", + "Surface": "Polished", + "IsOptic": true + }, + "KATIOBOND_OM614": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/DELO/KATIOBOND-OM614.material", + "Surface": "Polished", + "IsOptic": true + }, + "DOWSIL_MS1002": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/DOWSIL_MS/DOWSIL_MS1002.material", + "Surface": "Polished", + "IsOptic": true + }, + "DOWSIL_MS1003": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/DOWSIL_MS/DOWSIL_MS1003.material", + "Surface": "Polished", + "IsOptic": true + }, + "DOWSIL_MS4002": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/DOWSIL_MS/DOWSIL_MS4002.material", + "Surface": "Polished", + "IsOptic": true + }, + "DOWSIL_MS4007": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/DOWSIL_MS/DOWSIL_MS4007.material", + "Surface": "Polished", + "IsOptic": true + }, + "DOWSIL_MS4022": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/DOWSIL_MS/DOWSIL_MS4022.material", + "Surface": "Polished", + "IsOptic": true + }, + "Dow_Silastic_MS_5002": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/DOWSIL_MS/Dow_Silastic MS 5002.material", + "Surface": "Polished", + "IsOptic": true + }, + "F1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "F3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "F4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "F5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "F6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/F6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-BAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-BAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-BAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-F13.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K51A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-K51A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K9L_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-K9L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_KF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF53_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF54_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAF54.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF62_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAF62.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK2C": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK2C.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK53.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK54_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK54.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK59.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK7A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK7A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK8A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-LAK8A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QK3L_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-QK3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZBAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZBAF16.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF20_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZBAF20.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF21_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZBAF21.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZBAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZBAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF50_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZBAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZBAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF13GT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF13GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF4GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF4GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF50_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF52A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF52A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF52AGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF52AGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF62_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF62.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF62GT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF62GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF72": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF72.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF72GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF72GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF7L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF7L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF7LGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF7LGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF88_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF88.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF88GT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZF88GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK10L_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK10L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK20_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK20.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK21_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK50_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK9A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZK9A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF4L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF4L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF50E_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF50E.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF53A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF53A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF55.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF56.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF66_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF66.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF68": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF68.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF69_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF69.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF71_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF71.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF75": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF75.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF76_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF76.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF78": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF78.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF89": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF89.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF90_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZLAF90.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZPK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZPK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZPK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/H-ZPK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG205": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/IRG205.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG206": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/IRG206.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/ZF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/ZF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/ZF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/ZF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/ZF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/ZF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF7L_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/GBJ/ZF7L.material", + "Surface": "Polished", + "IsOptic": true + }, + "HERASIL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/HERASIL.material", + "Surface": "Polished", + "IsOptic": true + }, + "HOMOSIL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/HOMOSIL.material", + "Surface": "Polished", + "IsOptic": true + }, + "HOMOSIL101_HERASIL102": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/HOMOSIL101_HERASIL102.material", + "Surface": "Polished", + "IsOptic": true + }, + "HOQ": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/HOQ.material", + "Surface": "Polished", + "IsOptic": true + }, + "HOQ_310": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/HOQ_310.material", + "Surface": "Polished", + "IsOptic": true + }, + "INFRASIL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/INFRASIL.material", + "Surface": "Polished", + "IsOptic": true + }, + "INFRASIL_301_302": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/INFRASIL_301_302.material", + "Surface": "Polished", + "IsOptic": true + }, + "SPECTROSIL_2000": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/SPECTROSIL_2000.material", + "Surface": "Polished", + "IsOptic": true + }, + "SUPRASIL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/SUPRASIL.material", + "Surface": "Polished", + "IsOptic": true + }, + "SUPRASIL_1_2A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/SUPRASIL_1_2A.material", + "Surface": "Polished", + "IsOptic": true + }, + "SUPRASIL_2B_CG": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/SUPRASIL_2B_CG.material", + "Surface": "Polished", + "IsOptic": true + }, + "SUPRASIL_300_3001_3002": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/SUPRASIL_300_3001_3002.material", + "Surface": "Polished", + "IsOptic": true + }, + "SUPRASIL_311_312": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/SUPRASIL_311_312.material", + "Surface": "Polished", + "IsOptic": true + }, + "SUPRASIL_311_312_313": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/SUPRASIL_311_312_313.material", + "Surface": "Polished", + "IsOptic": true + }, + "SUPRASIL_3301_3302": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HERAEUS/SUPRASIL_3301_3302.material", + "Surface": "Polished", + "IsOptic": true + }, + "4786": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/4786.material", + "Surface": "Polished", + "IsOptic": true + }, + "5165": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/5165.material", + "Surface": "Polished", + "IsOptic": true + }, + "5742": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/5742.material", + "Surface": "Polished", + "IsOptic": true + }, + "5859": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/5859.material", + "Surface": "Polished", + "IsOptic": true + }, + "7054": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/7054.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BASF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BASF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BASF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BASF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/BASF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BALF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BALF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BASF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BASF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BASF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BASF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BASF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BASF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BASF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-F16.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F2_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-F2.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FK01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-FK01.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FKH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-FKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FKH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-FKH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_K3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_K5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_KF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_KZFH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-KZFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF010": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF016.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF04": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF04.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF05": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF05.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF09": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAFH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAFH3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAFH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK01.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK011": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK011.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK02.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK04": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK04.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK06": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK06.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK09": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK09.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK13.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAKH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LAKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF010": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF013": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF013.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF014": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF014.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF015": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF015.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF016.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF017.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF021": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF021.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF03": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF04": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF04.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF05": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF05.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF08": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF08.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF09": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASFH13.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASFH15.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH17": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASFH17.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASFH9.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASKH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LASKH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LLF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LLF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LLF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LLF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_PKH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-PKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_PSK02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-PSK02.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_PSK03": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-PSK03.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_PSKH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-PSKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF03": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SFH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SFH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SFS3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SFS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SSK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SSK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SSK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SSK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/E-SSK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "F1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "F3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "F5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "F8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BALF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BALF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BASF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BASF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BASF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BASF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BASF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BASF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BASF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BK7A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-BK7A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-F16.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FK01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-FK01.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FK01A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-FK01A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FKH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-FKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FKH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-FKH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_K3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_K5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-KZFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-KZFH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-KZFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-KZFH7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF010": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF016.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF016HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF016HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF04": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF04.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF05": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF05.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF09": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAFH3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAFH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAFH3HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAFH3HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK01.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK011": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK011.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK02.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK04": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK04.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK06": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK06.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK09": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK09.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK13.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK7R": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK7R.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF010": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF013": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF013.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF014": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF014.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF015": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF015.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF015HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF015HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF016.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF017.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF021": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF021.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF021HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF021HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF03": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF05": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF05.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF05HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF05HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF08": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF08.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF08A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF08A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF09": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF09A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASF09A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH13.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH13HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH13HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH15.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH15HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH15HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH16.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH17": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH17.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH17HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH17HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH21.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH22.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH23.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH24": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH24.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH24HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH24HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH9.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH9A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASFH9A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASKH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LASKH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LLF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LLF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LLF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LLF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PKH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-PKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSK02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-PSK02.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSK03": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-PSK03.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSKH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-PSKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSKH4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-PSKH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF03": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF03HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF03HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF6HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF6HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH1HS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SFH1HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFS3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SFS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SSK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SSK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SSK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SSK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/J-SSK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "K3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/KZFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/KZFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/KZFS4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF09": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK011": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAK011.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK04": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAK04.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK09": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAK09.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LASF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF010": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LASF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF02": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LASF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFH6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LASFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LLF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/NICF-A.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_U": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/NICF-U.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/NICF-V.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/NIFS-A.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/NIFS-S.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_U": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/NIFS-U.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/NIFS-V.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/PK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/PK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_FK01S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-FK01S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_FKH2S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-FKH2S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LAF010S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-LAF010S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LAK13S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-LAK13S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASF03S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-LASF03S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASFH11S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-LASFH11S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASFH12S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-LASFH12S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASFH18S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-LASFH18S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASFH19S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-LASFH19S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_PSKH1S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-PSKH1S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK12S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-SK12S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK5S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/P-SK5S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_FK01AS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-FK01AS.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_FK01S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-FK01S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_FKH1S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-FKH1S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_FKH2S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-FKH2S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAF010S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LAF010S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAFPH1S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LAFPH1S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAK13S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LAK13S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAK52S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LAK52S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAK53S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LAK53S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASF03S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASF03S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH11S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASFH11S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH12S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASFH12S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH18S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASFH18S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH19S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASFH19S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH58S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASFH58S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH59S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASFH59S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFPH2S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASFPH2S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFPH3S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-LASFPH3S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_PSKH1S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-PSKH1S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_PSKH2S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-PSKH2S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_PSKH4S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-PSKH4S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_PSKH52S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-PSKH52S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SF6S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-SF6S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK12S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-SK12S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK15S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-SK15S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK52S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-SK52S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK55S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-SK55S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK5S": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/Q-SK5S.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF03": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFS3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SFS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SSK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HIKARI/SSK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADC1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADC1.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADC2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADC2.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF355": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF355.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF40.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF405": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF405.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF455": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF455.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF505": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF505.material", + "Surface": "Polished", + "IsOptic": true + }, + "ADF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ADF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "ATC1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ATC1.material", + "Surface": "Polished", + "IsOptic": true + }, + "ATF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ATF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "ATF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ATF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAC1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAC1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAC2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAC2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAC4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAC4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAC5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAC5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAC6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAC6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD11.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD13.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD14.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD15.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD16.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD18.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD50.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACD9.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACED1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACED1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACED2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACED2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACED20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACED20.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACED3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACED3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACED4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACED4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACED5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACED5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACED9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACED9.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BACL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF20.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF21.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF22.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF23.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD14.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD15.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD16.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFD8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFD8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFL4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFL4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BAFL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSC1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BSC1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSC3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BSC3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSC4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BSC4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSC6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BSC6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSC7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/BSC7.material", + "Surface": "Polished", + "IsOptic": true + }, + "C10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/C10.material", + "Surface": "Polished", + "IsOptic": true + }, + "C12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/C12.material", + "Surface": "Polished", + "IsOptic": true + }, + "C2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/C2.material", + "Surface": "Polished", + "IsOptic": true + }, + "C3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/C3.material", + "Surface": "Polished", + "IsOptic": true + }, + "C40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/C40.material", + "Surface": "Polished", + "IsOptic": true + }, + "C5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/C5.material", + "Surface": "Polished", + "IsOptic": true + }, + "C7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/C7.material", + "Surface": "Polished", + "IsOptic": true + }, + "CF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/CF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "CF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/CF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "CF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/CF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "CF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/CF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "CF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/CF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_ADF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-ADF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_ADF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-ADF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BACD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-BACD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BACED20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-BACED20.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_C3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-C3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_CF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-CF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD13.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD15.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FD80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FD80.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FDS1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FDS1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FDS1_W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FDS1-W.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FDS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FDS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FDS3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FDS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FEL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FEL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FEL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FEL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FEL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FEL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-FL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/E-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "F1_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "F11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F11.material", + "Surface": "Polished", + "IsOptic": true + }, + "F15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F15.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "F3_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "F4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "F5_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "F6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F6.material", + "Surface": "Polished", + "IsOptic": true + }, + "F7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F7.material", + "Surface": "Polished", + "IsOptic": true + }, + "F8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "F9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/F9.material", + "Surface": "Polished", + "IsOptic": true + }, + "FC1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FC1.material", + "Surface": "Polished", + "IsOptic": true + }, + "FC3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FC3.material", + "Surface": "Polished", + "IsOptic": true + }, + "FC5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FC5.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD100.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD10A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD10A.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD1B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD1B.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD505": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD505.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD515": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD515.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD600": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD600.material", + "Surface": "Polished", + "IsOptic": true + }, + "FCD705": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FCD705.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD11.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD110": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD110.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD12.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD13.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD14.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD140": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD140.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD15.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD18.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD19": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD19.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD20.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD225": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD225.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD3.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD4.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD41": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD41.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD5.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD6.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD60.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD60_W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD60-W.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD7.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD8.material", + "Surface": "Polished", + "IsOptic": true + }, + "FD9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FD9.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS1.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS16_W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS16-W.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS18.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS18_W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS18-W.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS20_W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS20-W.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS24": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS24.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS30.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS5.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS9.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS90.material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS90_P": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS90(P).material", + "Surface": "Polished", + "IsOptic": true + }, + "FDS90_SG": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FDS90-SG.material", + "Surface": "Polished", + "IsOptic": true + }, + "FEL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FEL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "FEL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FEL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "FEL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FEL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "FEL4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FEL4.material", + "Surface": "Polished", + "IsOptic": true + }, + "FEL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FEL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "FEL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FEL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "FF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "FF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "FF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "FF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "FL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "FL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "FL4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FL4.material", + "Surface": "Polished", + "IsOptic": true + }, + "FL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "FL57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FL57.material", + "Surface": "Polished", + "IsOptic": true + }, + "FL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "FL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/FL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC14.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC15.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAC9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAC9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL60.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LACL9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LACL9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAF20.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAF30.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAFL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAFL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFL20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAFL20.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFL23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAFL23.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAFL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFL4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAFL4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAFL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LAFL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LBC3N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/LBC3N.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_BACD12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-BACD12.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_BACD5N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-BACD5N.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_FCD1_M20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-FCD1-M20.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_FCD500_20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-FCD500-20.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_FD80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-FD80.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_FDS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-FDS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_FDS910_50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-FDS910-50.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_LAC130": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-LAC130.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_NBF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-NBF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_NBFD135": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-NBFD135.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_PCD4_40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-PCD4-40.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_PCD51_70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-PCD51-70.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_TAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-TAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_TAF101_100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-TAF101-100.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_TAF105": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-TAF105.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_TAF31_15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-TAF31-15.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_TAF401": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-TAF401.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_TAFD305": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-TAFD305.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_TAFD307": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-TAFD307.material", + "Surface": "Polished", + "IsOptic": true + }, + "MC_TAFD51_50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MC-TAFD51-50.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_BACD12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-BACD12.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_BACD15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-BACD15.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_BACD5N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-BACD5N.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_FCD1_M20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-FCD1-M20.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_FCD500_20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-FCD500-20.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_FD80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-FD80.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_FDS1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-FDS1.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_FDS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-FDS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_FDS910_50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-FDS910-50.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_LAC130": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-LAC130.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_LAC14_80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-LAC14-80.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_LAC8_30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-LAC8-30.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_LAF81": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-LAF81.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_NBF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-NBF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_NBFD10_20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-NBFD10-20.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_NBFD130": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-NBFD130.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_PCD4_40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-PCD4-40.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_PCD51_70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-PCD51-70.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_PCD55AR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-PCD55AR.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAC60_90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAC60-90.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAC80_60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAC80-60.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAF101_100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAF101-100.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAF105": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAF105.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAF31_15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAF31-15.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAF401": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAF401.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAFD305": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAFD305.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAFD307": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAFD307.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAFD405": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAFD405.material", + "Surface": "Polished", + "IsOptic": true + }, + "MP_TAFD51_50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/MP-TAFD51-50.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_BACD12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-BACD12.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_BACD15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-BACD15.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_BACD5N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-BACD5N.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_BAF41": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-BAF41.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_FCD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-FCD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_FCD500": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-FCD500.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_FD80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-FD80.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_FDS1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-FDS1.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_FDS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-FDS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_FDS910": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-FDS910.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_LAC130": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-LAC130.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_LAC14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-LAC14.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_LAC8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-LAC8.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_LAF81": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-LAF81.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_NBF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-NBF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_NBFD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-NBFD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_NBFD13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-NBFD13.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_NBFD130": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-NBFD130.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_NBFD82": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-NBFD82.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_NBFD83": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-NBFD83.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_PCD4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-PCD4.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_PCD51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-PCD51.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_PCD55AR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-PCD55AR.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAC60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAC60.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAC80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAC80.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAF101": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAF101.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAF105": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAF105.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAF31": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAF31.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAF401": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAF401.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAFD305": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAFD305.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAFD307": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAFD307.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAFD405": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAFD405.material", + "Surface": "Polished", + "IsOptic": true + }, + "M_TAFD51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/M-TAFD51.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD11.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD12.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD13.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD14.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD15.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD15_W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD15-W.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD25.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD29": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD29.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD3.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD30.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD32": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD32.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD40.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD5.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD6.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD7.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD8.material", + "Surface": "Polished", + "IsOptic": true + }, + "NBFD9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/NBFD9.material", + "Surface": "Polished", + "IsOptic": true + }, + "PC1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PC1.material", + "Surface": "Polished", + "IsOptic": true + }, + "PC2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PC2.material", + "Surface": "Polished", + "IsOptic": true + }, + "PC3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PC3.material", + "Surface": "Polished", + "IsOptic": true + }, + "PCD2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PCD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "PCD3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PCD3.material", + "Surface": "Polished", + "IsOptic": true + }, + "PCD4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PCD4.material", + "Surface": "Polished", + "IsOptic": true + }, + "PCD40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PCD40.material", + "Surface": "Polished", + "IsOptic": true + }, + "PCD5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PCD5.material", + "Surface": "Polished", + "IsOptic": true + }, + "PCD51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PCD51.material", + "Surface": "Polished", + "IsOptic": true + }, + "PCD53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PCD53.material", + "Surface": "Polished", + "IsOptic": true + }, + "PCS1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/PCS1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SBF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/SBF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SBF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/SBF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SBF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/SBF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAC1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAC1.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAC2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAC2.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAC4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAC4.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAC6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAC6.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAC8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAC8.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAF3D": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAF3D.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD10.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD13.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD17": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD17.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD20.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD21.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD25.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD30.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD31": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD31.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD32": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD32.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD33": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD33.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD35.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD37": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD37.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD37A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD37A.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD40.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD40_W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD40-W.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD43": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD43.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD45": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD45.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD5.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD55.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD55_W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD55-W.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD5F": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD5F.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD5G": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD5G.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD6.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD65.material", + "Surface": "Polished", + "IsOptic": true + }, + "TAFD9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/TAFD9.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNC1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ZNC1.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNC7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/HOYA/ZNC7.material", + "Surface": "Polished", + "IsOptic": true + }, + "AGCL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/AGCL.material", + "Surface": "Polished", + "IsOptic": true + }, + "ALN_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/ALN.material", + "Surface": "Polished", + "IsOptic": true + }, + "ALON": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/ALON.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/BAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BEO_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/BEO.material", + "Surface": "Polished", + "IsOptic": true + }, + "CAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/CAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "CALCITE_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/CALCITE.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDSE_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/CDSE.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDTE": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/CDTE.material", + "Surface": "Polished", + "IsOptic": true + }, + "CLEARTRAN": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/CLEARTRAN.material", + "Surface": "Polished", + "IsOptic": true + }, + "CLEARTRAN_OLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/CLEARTRAN_OLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "CSBR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/CSBR.material", + "Surface": "Polished", + "IsOptic": true + }, + "F_SILICA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/F_SILICA.material", + "Surface": "Polished", + "IsOptic": true + }, + "GAAS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/GAAS.material", + "Surface": "Polished", + "IsOptic": true + }, + "GEO2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/GEO2.material", + "Surface": "Polished", + "IsOptic": true + }, + "GERMANIUM": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/GERMANIUM.material", + "Surface": "Polished", + "IsOptic": true + }, + "GE_LONG": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/GE_LONG.material", + "Surface": "Polished", + "IsOptic": true + }, + "GE_OLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/GE_OLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/IRG100.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/IRG11.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/IRG15.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/IRG2.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/IRG3.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/IRG7.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/IRG9.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRGN6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/IRGN6.material", + "Surface": "Polished", + "IsOptic": true + }, + "KBR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/KBR.material", + "Surface": "Polished", + "IsOptic": true + }, + "KCL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/KCL.material", + "Surface": "Polished", + "IsOptic": true + }, + "KRS5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/KRS5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LIF": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/LIF.material", + "Surface": "Polished", + "IsOptic": true + }, + "MGF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/MGF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "MGO": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/MGO.material", + "Surface": "Polished", + "IsOptic": true + }, + "NACL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/NACL.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/PBF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SAPPHIRE": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/SAPPHIRE.material", + "Surface": "Polished", + "IsOptic": true + }, + "SILICON": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/SILICON.material", + "Surface": "Polished", + "IsOptic": true + }, + "SPINEL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/SPINEL.material", + "Surface": "Polished", + "IsOptic": true + }, + "SRF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/SRF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SRTIO3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/SRTIO3.material", + "Surface": "Polished", + "IsOptic": true + }, + "TI_1173": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/TI_1173.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZBLA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/ZBLA.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZBLAN": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/ZBLAN.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNSE": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/ZNSE.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNS_BROAD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/ZNS_BROAD.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNS_IR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/ZNS_IR.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNS_VIS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/INFRARED/ZNS_VIS.material", + "Surface": "Polished", + "IsOptic": true + }, + "UVIR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/IRPHOTONICS/UVIR.material", + "Surface": "Polished", + "IsOptic": true + }, + "IIR_SF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ISUZU/IIR-SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "K1021": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K1021.material", + "Surface": "Polished", + "IsOptic": true + }, + "K1071": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K1071.material", + "Surface": "Polished", + "IsOptic": true + }, + "K1290": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K1290.material", + "Surface": "Polished", + "IsOptic": true + }, + "K2004": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K2004.material", + "Surface": "Polished", + "IsOptic": true + }, + "K3124": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K3124.material", + "Surface": "Polished", + "IsOptic": true + }, + "K3625": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K3625.material", + "Surface": "Polished", + "IsOptic": true + }, + "K4184": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K4184.material", + "Surface": "Polished", + "IsOptic": true + }, + "K4289": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K4289.material", + "Surface": "Polished", + "IsOptic": true + }, + "K4650": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K4650.material", + "Surface": "Polished", + "IsOptic": true + }, + "K4786": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K4786.material", + "Surface": "Polished", + "IsOptic": true + }, + "K4885": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K4885.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5426": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K5426.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5500": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K5500.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5600": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K5600.material", + "Surface": "Polished", + "IsOptic": true + }, + "K6150": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K6150.material", + "Surface": "Polished", + "IsOptic": true + }, + "K6250": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K6250.material", + "Surface": "Polished", + "IsOptic": true + }, + "K7063": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K7063.material", + "Surface": "Polished", + "IsOptic": true + }, + "K9000": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K9000.material", + "Surface": "Polished", + "IsOptic": true + }, + "K9500": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K9500.material", + "Surface": "Polished", + "IsOptic": true + }, + "K9530": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K9530.material", + "Surface": "Polished", + "IsOptic": true + }, + "K9531": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K9531.material", + "Surface": "Polished", + "IsOptic": true + }, + "K9611": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K9611.material", + "Surface": "Polished", + "IsOptic": true + }, + "K9703": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/KOPPGLASS/K9703.material", + "Surface": "Polished", + "IsOptic": true + }, + "CORNING_7980_0A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/CORNING_7980_0A.material", + "Surface": "Polished", + "IsOptic": true + }, + "CORNING_7980_0F": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/CORNING_7980_0F.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAK4HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BAK4HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BK7HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-BK7HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_F2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK51A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-FK51A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-FK58.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_K5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-KF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-KZFS11.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-KZFS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-KZFS4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS4HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-KZFS4HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-KZFS5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-KZFS8.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAF21.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF33": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAF33.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF34": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAF34.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAF35.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK22.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK33B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK33B.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK34": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK34.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF31A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LASF31A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LASF40.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF41": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LASF41.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF43": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LASF43.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF44": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LASF44.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF45": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LASF45.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF45HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LASF45HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF46B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-LASF46B.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PK51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-PK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PK52A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-PK52A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PSK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-PSK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PSK53A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-PSK53A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF57.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF57HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF57HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF57HTultra": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF57HTultra.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF66.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF6HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF6HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF6HTultra": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF6HTultra.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SSK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SSK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SSK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SSK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SSK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/N-SSK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAH10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAH27.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAH28.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAL11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAL12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAL14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAL35.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL41": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAL41.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL42": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAL42.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAM12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAM12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAM3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAM4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BAM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM15.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM16.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM18.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM22.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM25.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM28.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM71.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM81": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-BSM81.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-FPL51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-FPL53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-FPL55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPM2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-FPM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPM3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-FPM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPM4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-FPM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FSL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-FSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FTM16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-FTM16.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH55V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH55V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH55VS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH55VS.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH58.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH59.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH60.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH60V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH60V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH63": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH63.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH64": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH64.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH65.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH65V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH65V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH66.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH71.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH79": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH79.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH88": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH88.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH89": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH89.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH92": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH92.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH93": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH93.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH95.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH96": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH96.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH97": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH97.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH99": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAH99.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL13.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL18.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL19": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL19.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL20.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL58.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL59.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL61.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL8.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAL9.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM60.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM61.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM66.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM73": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-LAM73.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH52V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH52V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH53V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH53V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH56.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH57.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH58.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBH8.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBM51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NBM51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NPH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH1W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NPH1W.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NPH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NPH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NPH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NPH5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NPH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NSL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL36": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NSL36.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-NSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PHM52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-PHM52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PHM53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-PHM53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH13.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH18.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH23.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH53W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH53W.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH57.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIL25.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL26": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIL26.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIL27.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM22.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM25.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM27.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM28.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM35.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LACROIX/S-TIM8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/BD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BD2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/BD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BD2_L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/BD2_L.material", + "Surface": "Polished", + "IsOptic": true + }, + "C0550_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/C0550.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK6M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/D-LAK6M.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/D-ZK3M.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF52LAM": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/D-ZLAF52LAM.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF52LA_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/D-ZLAF52LA_M.material", + "Surface": "Polished", + "IsOptic": true + }, + "ECO550": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/ECO550.material", + "Surface": "Polished", + "IsOptic": true + }, + "ECO550M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/ECO550M.material", + "Surface": "Polished", + "IsOptic": true + }, + "ECO550_E": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/ECO550_E.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAL12M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/L-LAL12M.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICHIA_MELT1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/NICHIA_MELT1.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LIGHTPATH/PBH71.material", + "Surface": "Polished", + "IsOptic": true + }, + "LUX_OPTICLEAR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LUXEXCEL/LUX-OPTICLEAR.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF16.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF21.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF24": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF24.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF25.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF27.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF28.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BK13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BK13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_BK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_BK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_CTK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_CTK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_CTK16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_CTK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_CTK19": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_CTK19.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_CTK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_CTK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_CTK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_CTK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_CTK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_CTK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_F1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_F13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_F13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_F2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_F4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_F6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_F6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_F8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_K100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_K100.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_K14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_K14.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_K8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_K8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_KF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_KF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_KF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_KF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_KF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_KF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_KF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_LK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_LK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_OF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_OF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_OF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_OF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_OF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_OF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_OK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_OK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TBF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TBF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK17": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK17.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK20.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK23.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LZ_TK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/LZOS/LZ_TK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "ORMOCLAD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MICRO_RESIST_TECHNOLOGY/ORMOCLAD.material", + "Surface": "Polished", + "IsOptic": true + }, + "ORMOCLEAR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MICRO_RESIST_TECHNOLOGY/ORMOCLEAR.material", + "Surface": "Polished", + "IsOptic": true + }, + "ORMOCLEAR30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MICRO_RESIST_TECHNOLOGY/ORMOCLEAR30.material", + "Surface": "Polished", + "IsOptic": true + }, + "ORMOCLEARFX": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MICRO_RESIST_TECHNOLOGY/ORMOCLEARFX.material", + "Surface": "Polished", + "IsOptic": true + }, + "ORMOCOMP": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MICRO_RESIST_TECHNOLOGY/ORMOCOMP.material", + "Surface": "Polished", + "IsOptic": true + }, + "ORMOCORE": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MICRO_RESIST_TECHNOLOGY/ORMOCORE.material", + "Surface": "Polished", + "IsOptic": true + }, + "ORMOSTAMP": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MICRO_RESIST_TECHNOLOGY/ORMOSTAMP.material", + "Surface": "Polished", + "IsOptic": true + }, + "ACRYLIC": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/ACRYLIC.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/BASF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/BASF55.material", + "Surface": "Polished", + "IsOptic": true + }, + "CAF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/CAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "CDS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/CDS.material", + "Surface": "Polished", + "IsOptic": true + }, + "COC": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/COC.material", + "Surface": "Polished", + "IsOptic": true + }, + "CR39": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/CR39.material", + "Surface": "Polished", + "IsOptic": true + }, + "F_SILICA_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/F_SILICA.material", + "Surface": "Polished", + "IsOptic": true + }, + "KDP_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/KDP.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF3_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "N15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/N15.material", + "Surface": "Polished", + "IsOptic": true + }, + "PMMA_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/PMMA.material", + "Surface": "Polished", + "IsOptic": true + }, + "POLYCARB": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/POLYCARB.material", + "Surface": "Polished", + "IsOptic": true + }, + "POLYSTYR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/POLYSTYR.material", + "Surface": "Polished", + "IsOptic": true + }, + "PYREX": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/PYREX.material", + "Surface": "Polished", + "IsOptic": true + }, + "QUARTZ_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/QUARTZ.material", + "Surface": "Polished", + "IsOptic": true + }, + "SAN_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/SAN.material", + "Surface": "Polished", + "IsOptic": true + }, + "SEAWATER": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/SEAWATER.material", + "Surface": "Polished", + "IsOptic": true + }, + "SILICA_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/SILICA.material", + "Surface": "Polished", + "IsOptic": true + }, + "TEO2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/TEO2.material", + "Surface": "Polished", + "IsOptic": true + }, + "TYPEA": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/TYPEA.material", + "Surface": "Polished", + "IsOptic": true + }, + "VACUUM": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/VACUUM.material", + "Surface": "Polished", + "IsOptic": true + }, + "WATER_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/MISC/WATER.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK61_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-FK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-FK90.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_FK95_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-FK95.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_K9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-K9.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF050_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-LAF050.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF731": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-LAF731.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAF743": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-LAF743.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-LAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_PK60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-PK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_PK62": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-PK62.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_PK70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-PK70.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZF52N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZF52N.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZF93_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZF93.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK2N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZK2N.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3L_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZK3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK3L_M90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZK3L-M90.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF50_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZLAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF52L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZLAF52L.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF52N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZLAF52N.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF52N_M170": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZLAF52N-M170.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZLAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF814": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZLAF814.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF851": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/D-ZLAF851.material", + "Surface": "Polished", + "IsOptic": true + }, + "F4_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK7B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-BAK7B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_BAK8_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-BAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F13_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-F13.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_F4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK61_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-FK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK69": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-FK69.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK76": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-FK76.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-FK90.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_FK95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-FK95.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-K10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-K12.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-K51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-K6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_K9L_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-K9L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_KF6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF10A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF10A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF3B_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF3B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF50_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF50B_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF50B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF52_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF53_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF54_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF54.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF55_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF55.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF56.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF62_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF62.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF6LB": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF6LB.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF72": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF72.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAF76": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAF76.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK10_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK12_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK2H": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK2H.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK4L_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK4L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK50_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK50A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK50A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK52_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK53A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK53A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK54_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK54.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK5A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK5A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK61_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK68": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK68.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK77": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK77.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK8A_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK8A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_PK60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-PK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_PK62A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-PK62A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_PK63": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-PK63.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_PK65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-PK65.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-QF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QF50_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-QF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_QK3L_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-QK3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_TF3L_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-TF3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF16_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF16.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF20_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF20.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF21_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF21.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF50_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF52_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZBAF65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZBAF65.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF10_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF11_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF12_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF12GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF12GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF13_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF13GT_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF13GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF4GT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF4GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF50_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF50GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF50GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF52N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF52N.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF5GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF5GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF62_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF62.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF62GT_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF62GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF6GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF6GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF72B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF72B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF72GT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF72GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF75A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF75A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF75GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF75GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF7L_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF7L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZF7LGT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZF7LGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK10N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK10N.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK11_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK14_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK20_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK20.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK21_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK3A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK3A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK50_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZK9A_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZK9A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF52_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF54.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF55F": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF55F.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF56_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF56.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF56B_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF56B.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF57.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF59.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF60.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF60GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF60GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF64": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF64.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF65.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF66A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF66A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF66GT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF66GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF67.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF68A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF68A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF68L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF68L.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF70.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF72": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF72.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF75_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF75.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF76_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF76.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF77A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF77A.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF78_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF78.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF79": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF79.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF80.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF82": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF82.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF86": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF86.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/H-ZLAF95.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG101": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG101.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG102": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG102.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG104": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG104.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG105": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG105.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG106": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG106.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG201": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG201.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG202": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG202.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG203": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG203.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG204": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG204.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG205_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG205.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG206_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG206.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG207": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG207.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG208": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG208.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG209": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/IRG209.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/LAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_FK61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-FK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_FK90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-FK90.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_FK95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-FK95.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_K9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-K9.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAF050": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-LAF050.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAF731": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-LAF731.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAF743": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-LAF743.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-LAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_PK60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-PK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_PK62": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-PK62.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_PK70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-PK70.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZF52N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZF52N.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZF93": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZF93.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZK2N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZK2N.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZK3L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZK3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZK3L_M90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZK3L-M90.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZLAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZLAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZLAF52L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZLAF52L.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZLAF52N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZLAF52N.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZLAF52N_M170": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZLAF52N-M170.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZLAF53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZLAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZLAF814": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZLAF814.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_ZLAF851": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/L-ZLAF851.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAK7B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-BAK7B.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-BAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_F1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_F13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-F13.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_F4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FK61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-FK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FK69": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-FK69.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FK76": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-FK76.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FK90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-FK90.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FK95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-FK95.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_K10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-K10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_K12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-K12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_K51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-K51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_K6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-K6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_K9L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-K9L.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_KF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF10A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF10A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF3B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF3B.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF50B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF50B.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF56.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF62": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF62.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF6LB": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF6LB.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF72": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF72.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAF76": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAF76.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK2H": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK2H.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK4L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK4L.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK50A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK50A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK53A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK53A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK5A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK5A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK61.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK68": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK68.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK77": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK77.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK8A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK8A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PK60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-PK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PK62A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-PK62A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PK63": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-PK63.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PK65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-PK65.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_QF14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-QF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_QF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-QF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_QK3L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-QK3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TF3L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-TF3L.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF16.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF20.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF21.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZBAF65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZBAF65.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF12GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF12GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF13GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF13GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF4GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF4GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF50GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF50GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF52N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF52N.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF5GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF5GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF62": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF62.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF62GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF62GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF6GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF6GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF72B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF72B.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF72GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF72GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF75A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF75A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF75GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF75GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF7L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF7L.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZF7LGT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZF7LGT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK10N": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK10N.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK20.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK3A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK3A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZK9A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZK9A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF55F": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF55F.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF56.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF56B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF56B.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF57.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF59.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF60.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF60GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF60GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF64": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF64.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF65.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF66A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF66A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF66GT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF66GT.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF67.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF68A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF68A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF68L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF68L.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF70.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF72": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF72.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF75": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF75.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF76": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF76.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF77A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF77A.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF78": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF78.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF79": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF79.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF80.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF82": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF82.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF86": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF86.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_ZLAF95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/S-ZLAF95.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/ZF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF13_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/ZF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/ZF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/ZF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/ZF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/ZF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZF7L_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/ZF7L.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZLAF58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NHG/ZLAF58.material", + "Surface": "Polished", + "IsOptic": true + }, + "CaF2_ArF": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIHON_KESSHO_KOGAKU/CaF2(ArF).material", + "Surface": "Polished", + "IsOptic": true + }, + "CaF2_IR": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIHON_KESSHO_KOGAKU/CaF2(IR).material", + "Surface": "Polished", + "IsOptic": true + }, + "4786_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/4786.material", + "Surface": "Polished", + "IsOptic": true + }, + "5165_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/5165.material", + "Surface": "Polished", + "IsOptic": true + }, + "5742_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/5742.material", + "Surface": "Polished", + "IsOptic": true + }, + "5859_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/5859.material", + "Surface": "Polished", + "IsOptic": true + }, + "7054_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/7054.material", + "Surface": "Polished", + "IsOptic": true + }, + "4786_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/4786.material", + "Surface": "Polished", + "IsOptic": true + }, + "5165_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/5165.material", + "Surface": "Polished", + "IsOptic": true + }, + "5742_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/5742.material", + "Surface": "Polished", + "IsOptic": true + }, + "5859_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/5859.material", + "Surface": "Polished", + "IsOptic": true + }, + "7054_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/7054.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF10_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF11_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF4_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF8_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BASF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BASF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BASF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BASF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/BASF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAF8_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BAK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BALF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BALF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BASF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BASF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BASF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BASF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BASF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BASF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BASF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_BK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-F16.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F2_1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-F2.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_F8_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FK01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-FK01.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FKH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-FKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_FKH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-FKH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_K3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_K5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_KF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_KZFH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-KZFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF010_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF016_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF016.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF04_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF04.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF05_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF05.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF09_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAF9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAFH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAFH3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAFH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK01.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK011_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK011.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK02.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK04_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK04.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK06_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK06.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK09_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK09.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK13.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAK9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LAKH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LAKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF010_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF013_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF013.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF014_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF014.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF015_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF015.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF016_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF016.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF017_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF017.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF021_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF021.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF03_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF04_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF04.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF05_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF05.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF08_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF08.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASF09_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASFH13.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASFH15.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH17_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASFH17.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASFH9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASFH9.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LASKH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LASKH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LLF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LLF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LLF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_LLF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_PKH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-PKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_PSK02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-PSK02.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_PSK03_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-PSK03.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_PSKH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-PSKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF03_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SFH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SFH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SFS3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SFS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SSK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SSK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SSK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "E_SSK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/E-SSK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "F1_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "F3_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "F5_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "F8_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BAK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BALF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BALF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BASF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BASF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BASF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BASF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BASF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BASF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BASF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_BK7A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-BK7A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-F16.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_F8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FK01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-FK01.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FK01A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-FK01A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FKH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-FKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_FKH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-FKH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_K3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_K5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-KZFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-KZFH10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-KZFH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-KZFH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-KZFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-KZFH7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_KZFH9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-KZFH9.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF010_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF016_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF016.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF016HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF016HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF04_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF04.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF05_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF05.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF09_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAFH3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAFH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAFH3HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAFH3HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK01.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK011_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK011.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK02.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK04_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK04.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK06_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK06.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK09_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK09.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK13.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK7R_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK7R.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LAK9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF010_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF013_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF013.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF014_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF014.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF015_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF015.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF015HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF015HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF016_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF016.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF017_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF017.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF021_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF021.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF021HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF021HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF03_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF05_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF05.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF05HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF05HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF08_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF08.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF08A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF08A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF09_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASF09A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASF09A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH13.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH13HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH13HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH15.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH15HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH15HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH16.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH17_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH17.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH17HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH17HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH21_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH21.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH22_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH22.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH23_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH23.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH24_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH24.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH24HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH24HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH9.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASFH9A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASFH9A.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LASKH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LASKH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LLF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LLF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LLF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_LLF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PKH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-PKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSK02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-PSK02.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSK03_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-PSK03.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSKH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-PSKH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSKH4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-PSKH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_PSKH8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-PSKH8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF03_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF03HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF03HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF6HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF6HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH1HS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFH1HS.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFH5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFH8.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFH9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFH9.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SFS3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SFS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SSK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SSK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SSK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "J_SSK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/J-SSK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "K3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/KZFH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/KZFH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/KZFS4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF09_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAF09.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF3_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK011_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAK011.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK04_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAK04.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK09_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAK09.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF01_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LASF01.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF010_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LASF010.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF02_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LASF02.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFH6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LASFH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LLF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/NICF-A.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_U_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/NICF-U.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_V_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/NICF-V.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/NIFS-A.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/NIFS-S.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_U_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/NIFS-U.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_V_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/NIFS-V.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/PK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/PK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_FK01S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-FK01S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_FKH2S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-FKH2S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LAF010S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-LAF010S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LAK13S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-LAK13S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASF03S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-LASF03S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASFH11S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-LASFH11S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASFH12S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-LASFH12S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASFH18S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-LASFH18S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASFH19S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-LASFH19S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_PSKH1S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-PSKH1S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK12S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-SK12S.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK5S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/P-SK5S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_FK01AS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-FK01AS.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_FK01S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-FK01S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_FKH1S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-FKH1S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_FKH2S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-FKH2S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAF010S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LAF010S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAFPH1S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LAFPH1S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAK13S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LAK13S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAK52S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LAK52S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LAK53S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LAK53S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASF03S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASF03S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH11S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASFH11S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH12S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASFH12S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH18S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASFH18S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH19S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASFH19S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH58S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASFH58S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFH59S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASFH59S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFPH2S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASFPH2S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_LASFPH3S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-LASFPH3S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_PSKH1S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-PSKH1S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_PSKH2S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-PSKH2S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_PSKH4S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-PSKH4S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_PSKH52S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-PSKH52S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SF6S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-SF6S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK12S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-SK12S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK15S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-SK15S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK52S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-SK52S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK55S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-SK55S.material", + "Surface": "Polished", + "IsOptic": true + }, + "Q_SK5S_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/Q-SK5S.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF03_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF03.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFS3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SFS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SSK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON-HIKARI/SSK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_A_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/NICF-A.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_U_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/NICF-U.material", + "Surface": "Polished", + "IsOptic": true + }, + "NICF_V_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/NICF-V.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_A_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/NIFS-A.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_S_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/NIFS-S.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_U_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/NIFS-U.material", + "Surface": "Polished", + "IsOptic": true + }, + "NIFS_V_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/NIKON/NIFS-V.material", + "Surface": "Polished", + "IsOptic": true + }, + "7980_0F": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/7980_0F.material", + "Surface": "Polished", + "IsOptic": true + }, + "APL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/APL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH13.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH22.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH26": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH26.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH27.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH28.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH30.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH32": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH32.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH54.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH71.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH77": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH77.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAH78": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAH78.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL11.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL14.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL15.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL15Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL15Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL22.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL35.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL35Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL35Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL41": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL41.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL42": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL42.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL50.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM21.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM23.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM25.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAM9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BAM9.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPH35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BPH35.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPH40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BPH40.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPH45": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BPH45.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPH5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BPH5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPH50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BPH50.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPH8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BPH8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPM4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BPM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPM51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BPM51.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSL21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSL21.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSL22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSL22.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSL7Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSL7Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM14.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM15.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM16.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM16C": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM16C.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM18.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM21.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM22.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM23.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM24": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM24.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM25.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM28.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM36": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM36.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM51Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM51Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM71.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM81": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM81.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM9.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSM93": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/BSM93.material", + "Surface": "Polished", + "IsOptic": true + }, + "FPL51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FPL51.material", + "Surface": "Polished", + "IsOptic": true + }, + "FPL52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FPL52.material", + "Surface": "Polished", + "IsOptic": true + }, + "FPL53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FPL53.material", + "Surface": "Polished", + "IsOptic": true + }, + "FSL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FSL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "FSL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "FTL10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FTL10.material", + "Surface": "Polished", + "IsOptic": true + }, + "FTL8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FTL8.material", + "Surface": "Polished", + "IsOptic": true + }, + "FTM16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FTM16.material", + "Surface": "Polished", + "IsOptic": true + }, + "FTM8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/FTM8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH51.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH52.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH54.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH55.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH58.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH59.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH60.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH63": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH63.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH64": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH64.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH65.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH66.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH67.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH71": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH71.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH75": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH75.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH78": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH78.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAH80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAH80.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL14.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL18.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL52.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL54.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL56.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL58.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL59.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL60.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL61.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAL9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAL9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM51.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM52.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM54.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM55.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM58.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM59.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM60.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM61": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM61.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM66.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAM7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/LAM7.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BAL35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-BAL35.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BAL35P": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-BAL35P.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BAL42": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-BAL42.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BAL42P": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-BAL42P.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BAL43": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-BAL43.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BBH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-BBH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BBH2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-BBH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_BSL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-BSL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH81": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH81.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH83": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH83.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH84": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH84.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH84P": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH84P.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH85": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH85.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH85V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH85V.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH86": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH86.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH87": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH87.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH90.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH91": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH91.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAH94": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAH94.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAL12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAL12.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAL13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAL13.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAL15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAL15.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAM60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAM60.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAM69": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAM69.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_LAM72": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-LAM72.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_NBH54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-NBH54.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_PHL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-PHL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_PHL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-PHL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_TIH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-TIH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_TIM28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-TIM28.material", + "Surface": "Polished", + "IsOptic": true + }, + "L_TIM28P": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/L-TIM28P.material", + "Surface": "Polished", + "IsOptic": true + }, + "NSL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/NSL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "NSL3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/NSL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "NSL33": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/NSL33.material", + "Surface": "Polished", + "IsOptic": true + }, + "NSL36": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/NSL36.material", + "Surface": "Polished", + "IsOptic": true + }, + "NSL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/NSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "NSL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/NSL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK51A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/N-FK51A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_K5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/N-K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PK51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/N-PK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/N-SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH10.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH11W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH11W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH13.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH13W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH13W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH14.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH14W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH14W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH18.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH21.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH23.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH23W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH23W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH25.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH25W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH25W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH3W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH3W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH4W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH4W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH53W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH53W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH55.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH56.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH6W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH6W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH71_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH71.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBH72": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBH72.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL1Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL1Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL21.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL22.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL25.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL25Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL25Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL26": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL26.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL26Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL26Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL27.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL35Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL35Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL6Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL6Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBL7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM1.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM11.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM18Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM18Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM22.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM25.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM27.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM28.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM28W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM28W.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM2Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM2Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM35.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM39": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM39.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM5.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM6.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM8.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM8Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM8Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "PBM9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PBM9.material", + "Surface": "Polished", + "IsOptic": true + }, + "PHM51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PHM51.material", + "Surface": "Polished", + "IsOptic": true + }, + "PHM52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PHM52.material", + "Surface": "Polished", + "IsOptic": true + }, + "PHM53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/PHM53.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK_1300": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/SK-1300.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK_1310": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/SK-1310.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/SSL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSL5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/SSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_APL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-APL.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_APL1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-APL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAH10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH10_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAH10.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH27_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAH27.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH28_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAH28.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH32": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAH32.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAH54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL14_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL14.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL22.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL35_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL35.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL35R": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL35R.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL35_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL35.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL41_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL41.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL42_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL42.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAL50.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAM12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAM12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAM3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAM4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BAM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSL7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSL7R": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSL7R.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSL7_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSL7.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM15.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM16.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM18.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM21.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM22_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM22.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM25_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM25.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM28_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM28.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM2_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM2.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM36": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM36.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM4_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM4.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM71_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM71.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM81_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM81.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM9.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM93": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-BSM93.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPL51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL51Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPL51Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL51_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPL51.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPL52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL53_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPL53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL55_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPL55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPM2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPM3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPM4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPM5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FPM5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FSL5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FSL5Y": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FSL5Y.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FSL5_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FSL5.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FTL10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FTL10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FTM16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-FTM16.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH51_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH51.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH52Q": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH52Q.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH53_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH53V": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH53V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH53_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH53.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH55_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH55V_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH55V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH55VS_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH55VS.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH58_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH58.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH58_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH58.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH59_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH59.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH60_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH60.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH60MQ": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH60MQ.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH60V_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH60V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH63_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH63.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH63Q": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH63Q.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH64_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH64.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH64_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH64.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH65_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH65.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH65V_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH65V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH65VS": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH65VS.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH66_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH66.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH67.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH71_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH71.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH75": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH75.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH79_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH79.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH88_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH88.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH89_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH89.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH92_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH92.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH93_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH93.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH95_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH95.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH96_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH96.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH97_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH97.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH98": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH98.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH99_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH99.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH99W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAH99W.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL12.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL12Q": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL12Q.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL13.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL18.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL19_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL19.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL20_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL20.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL21.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL54_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL54Q": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL54Q.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL54_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL54.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL56.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL58_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL58.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL59_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL59.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL60.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL61_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL61.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL61Q": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL61Q.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL7Q": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL7Q.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL8.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL8_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL8.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL9.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL9_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAL9.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM2_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM2.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM54_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM55_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM58.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM59.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM60_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM60.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM61_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM61.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM66_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM66.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM73_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM73.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM7_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-LAM7.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH52V_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH52V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH53_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH53V_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH53V.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH55_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH55.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH56_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH56.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH57_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH57.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH58_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH58.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH59.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBH8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBH8.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NBM51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NBM51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH1W_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH1W.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH2_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH2.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH53_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NPH7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NSL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NSL3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL36_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NSL36.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL5_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-NSL5.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PHM51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-PHM51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PHM52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-PHM52.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PHM52Q": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-PHM52Q.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_PHM53_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-PHM53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH11_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH11.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH13.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH18.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH1_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH1.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH20.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH23_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH23.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH4_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH4.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH53_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH53W_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH53W.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH53_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH53.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH57_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH57.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH6_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIH6.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL1_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL1.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL25_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL25.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL25_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL25.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL26_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL26.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL27_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL27.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL6_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIL6.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM22_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM22.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM22_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM22.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM25_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM25.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM25_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM25.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM27_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM27.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM28_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM28.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM28_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM28.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM2_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM2.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM3.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM35_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM35.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM39": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM39.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM5_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM5.1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-TIM8.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_YGH51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-YGH51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_YGH52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/S-YGH52.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIH11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/TIH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIH14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/TIH14.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIH23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/TIH23.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIH53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/TIH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIH6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/TIH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIM11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/TIM11.material", + "Surface": "Polished", + "IsOptic": true + }, + "TPH55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/TPH55.material", + "Surface": "Polished", + "IsOptic": true + }, + "YGH51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/YGH51.material", + "Surface": "Polished", + "IsOptic": true + }, + "YGH52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OHARA/YGH52.material", + "Surface": "Polished", + "IsOptic": true + }, + "7980_0F_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/7980_0F.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK51A_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/N-FK51A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PK51_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/N-PK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAH10_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-BAH10.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL14_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-BAL14.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BAL35_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-BAL35.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSL7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-BSL7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-BSM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_BSM4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-BSM4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FPL51_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-FPL51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_FSL5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-FSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH51_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAH51.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH53_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH58_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAH58.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAH64_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAH64.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL54_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAL54.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL8_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAL8.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAL9_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAL9.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_LAM7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-LAM7.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NPH2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-NPH2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_NSL5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-NSL5.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIH1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH11_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIH11.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIH4.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH53_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIH53.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIH6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIH6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIL1.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL25_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIL25.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIL6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIM2.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM22_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIM22.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM25_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIM25.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM28_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIM28.material", + "Surface": "Polished", + "IsOptic": true + }, + "S_TIM5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTIMAX/S-TIM5.material", + "Surface": "Polished", + "IsOptic": true + }, + "OL1024": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTOTUNE/OL1024.material", + "Surface": "Polished", + "IsOptic": true + }, + "OL1126": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTOTUNE/OL1126.material", + "Surface": "Polished", + "IsOptic": true + }, + "OL1129": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTOTUNE/OL1129.material", + "Surface": "Polished", + "IsOptic": true + }, + "OL1224": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OPTOTUNE/OL1224.material", + "Surface": "Polished", + "IsOptic": true + }, + "OKP4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OSAKAGASCHEMICAL/OKP4.material", + "Surface": "Polished", + "IsOptic": true + }, + "OKP4HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OSAKAGASCHEMICAL/OKP4HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "OKP4HT_L": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OSAKAGASCHEMICAL/OKP4HT-L.material", + "Surface": "Polished", + "IsOptic": true + }, + "OKP_1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OSAKAGASCHEMICAL/OKP-1.material", + "Surface": "Polished", + "IsOptic": true + }, + "OKP_A1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OSAKAGASCHEMICAL/OKP-A1.material", + "Surface": "Polished", + "IsOptic": true + }, + "OKP_A2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/OSAKAGASCHEMICAL/OKP-A2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSC517642B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/BSC517642B.material", + "Surface": "Polished", + "IsOptic": true + }, + "BSC517642C": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/BSC517642C.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC589613A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC589613A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC603606A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC603606A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC607567A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC607567A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC613586A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC613586A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC620603A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC620603A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC620603B": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC620603B.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC623569A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC623569A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC623581A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC623581A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC639554A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC639554A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DBC658509A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DBC658509A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DEDF717295A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DEDF717295A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DEDF728284A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DEDF728284A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DEDF741278A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DEDF741278A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DEDF755276A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DEDF755276A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DEDF762265A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DEDF762265A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DEDF785258A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DEDF785258A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DEDF805254A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DEDF805254A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DEDF847238A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DEDF847238A.material", + "Surface": "Polished", + "IsOptic": true + }, + "DF620364A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/DF620364A.material", + "Surface": "Polished", + "IsOptic": true + }, + "EDF648339A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/EDF648339A.material", + "Surface": "Polished", + "IsOptic": true + }, + "EDF673322A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/EDF673322A.material", + "Surface": "Polished", + "IsOptic": true + }, + "EDF689312A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/EDF689312A.material", + "Surface": "Polished", + "IsOptic": true + }, + "EDF699301A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/EDF699301A.material", + "Surface": "Polished", + "IsOptic": true + }, + "ELF541472A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/ELF541472A.material", + "Surface": "Polished", + "IsOptic": true + }, + "HC522595A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/HC522595A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LDF673321A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/LDF673321A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LDF728285A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/LDF728285A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LDF805254A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/LDF805254A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF581409A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/LF581409A.material", + "Surface": "Polished", + "IsOptic": true + }, + "MBC569561A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/MBC569561A.material", + "Surface": "Polished", + "IsOptic": true + }, + "MBC573576A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PILKINGTON/MBC573576A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LIBA2000": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/PRECIOSA/LIBA2000+.material", + "Surface": "Polished", + "IsOptic": true + }, + "MG448": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/REDWAVE_IR/MG448.material", + "Surface": "Polished", + "IsOptic": true + }, + "MG452": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/REDWAVE_IR/MG452.material", + "Surface": "Polished", + "IsOptic": true + }, + "MG463": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/REDWAVE_IR/MG463.material", + "Surface": "Polished", + "IsOptic": true + }, + "MG523": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/REDWAVE_IR/MG523.material", + "Surface": "Polished", + "IsOptic": true + }, + "BACD14_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/BACD14_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_K59_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/D-K59_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK6_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/D-LAK6_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_LAK70_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/D-LAK70_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "D_ZLAF52A_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/D-ZLAF52A_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_LAK54_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/H-LAK54_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF50B_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/H-ZLAF50B_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF52_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/H-ZLAF52_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF53_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/H-ZLAF53_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "H_ZLAF56_MOLD": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/RPO/H-ZLAF56_MOLD.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK7G18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/Rad_Hard/BK7G18.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2G12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/Rad_Hard/F2G12.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5G20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/Rad_Hard/K5G20.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK9G15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/Rad_Hard/LAK9G15.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5G15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/Rad_Hard/LF5G15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF6G05": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/Rad_Hard/SF6G05.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF8G07": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/Rad_Hard/SF8G07.material", + "Surface": "Polished", + "IsOptic": true + }, + "EXTEM_RH1016UCL": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SABIC_Thermo_Optical_Polymers/EXTEM_RH1016UCL.material", + "Surface": "Polished", + "IsOptic": true + }, + "EXTEM_XH1015": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SABIC_Thermo_Optical_Polymers/EXTEM_XH1015.material", + "Surface": "Polished", + "IsOptic": true + }, + "LEXAN_CXT17": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SABIC_Thermo_Optical_Polymers/LEXAN_CXT17.material", + "Surface": "Polished", + "IsOptic": true + }, + "LEXAN_CXT19": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SABIC_Thermo_Optical_Polymers/LEXAN_CXT19.material", + "Surface": "Polished", + "IsOptic": true + }, + "ULTEM_1010": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SABIC_Thermo_Optical_Polymers/ULTEM_1010.material", + "Surface": "Polished", + "IsOptic": true + }, + "AF32ECO": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/AF32ECO.material", + "Surface": "Polished", + "IsOptic": true + }, + "B270": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/B270.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF3_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF4_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF8_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFN10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAFN10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFN11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAFN11.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFN6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAFN6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BAK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "BALF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BALF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BALF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BALF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BALF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BALF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "BALKN3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BALKN3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF12_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF54.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF56.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF57.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF64A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BASF64A.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK7G18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BK7G18.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK7HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BK7HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/BK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "D263TECO": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/D263TECO.material", + "Surface": "Polished", + "IsOptic": true + }, + "F1_6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "F13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F13.material", + "Surface": "Polished", + "IsOptic": true + }, + "F14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F14.material", + "Surface": "Polished", + "IsOptic": true + }, + "F14HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F14HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "F15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F15.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2_6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2G12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F2G12.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F2HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2HTi": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F2HTi.material", + "Surface": "Polished", + "IsOptic": true + }, + "F3_6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "F4_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "F5_6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "F6_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F6.material", + "Surface": "Polished", + "IsOptic": true + }, + "F7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F7.material", + "Surface": "Polished", + "IsOptic": true + }, + "F8_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "F8HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F8HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "F9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/F9.material", + "Surface": "Polished", + "IsOptic": true + }, + "FK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/FK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "FK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "FK51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/FK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "FK52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/FK52.material", + "Surface": "Polished", + "IsOptic": true + }, + "FK54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/FK54.material", + "Surface": "Polished", + "IsOptic": true + }, + "FK5HTi": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/FK5HTi.material", + "Surface": "Polished", + "IsOptic": true + }, + "FN11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/FN11.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT_IRG/IRG22.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT_IRG/IRG23.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG24": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT_IRG/IRG24.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT_IRG/IRG25.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG26": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT_IRG/IRG26.material", + "Surface": "Polished", + "IsOptic": true + }, + "IRG27": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT_IRG/IRG27.material", + "Surface": "Polished", + "IsOptic": true + }, + "K10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K10.material", + "Surface": "Polished", + "IsOptic": true + }, + "K11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K11.material", + "Surface": "Polished", + "IsOptic": true + }, + "K3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K4.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K50.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5G20_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K5G20.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K5HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "K7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K7.material", + "Surface": "Polished", + "IsOptic": true + }, + "K7HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/K7HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFN1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFN1.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFN2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFN2.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFS1.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFS12.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFS6.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS7A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFS7A.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFS8.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFSN2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFSN2.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFSN4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFSN4.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFSN5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFSN5.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFSN9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/KZFSN9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF11A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAF11A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF2_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF20_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAF20.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF22A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAF22A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF3_6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF9_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAFN10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAFN21.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAFN23.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN24": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAFN24.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAFN28.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAFN7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAFN8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK16A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK16A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK23.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK28.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK31": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK31.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK33": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK33.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK9_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK9G15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAK9G15.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKL12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAKL12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKL21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAKL21.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAKN12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAKN13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAKN14.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAKN22.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAKN6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LAKN7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF14A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASF14A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF18A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASF18A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF32": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASF32.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF33": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASF33.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASF35.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASF36A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASF36A.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASFN15.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASFN30.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN31": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASFN31.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LASFN9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5G15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LF5G15.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5G19": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LF5G19.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LF5HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5HTi": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LF5HTi.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF6HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LF6HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LITHOSIL_Q": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LITHOSIL-Q.material", + "Surface": "Polished", + "IsOptic": true + }, + "LITHOTEC_CAF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LITHOTEC-CAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF1HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LLF1HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF1HTi": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LLF1HTi.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LLF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF6HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LLF6HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/LLF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF51_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAF52_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAF52.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAK4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BAK4HT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BAK4HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BALF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BALF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BALF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BALF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BASF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BASF64": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BASF64.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BK7HT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BK7HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_BK7HTi": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-BK7HTi.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_F2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-FK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK51A_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-FK51A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-FK56.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_FK58_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-FK58.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_K5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KF9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-KF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-KZFS11.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-KZFS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-KZFS4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS4HT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-KZFS4HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-KZFS5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_KZFS8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-KZFS8.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF21_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF21.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF32": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF32.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF33_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF33.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF34_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF34.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF35_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF35.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF36": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF36.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK21_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK21.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK22_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK22.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK28": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK28.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK33": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK33.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK33A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK33A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK33B_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK33B.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK34_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK34.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LAK9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF31": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF31.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF31A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF31A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF40_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF40.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF41_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF41.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF43_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF43.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF44_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF44.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF45_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF45.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF45HT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF45HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF46": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF46.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF46A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF46A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF46B_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF46B.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF55.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LASF9HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LASF9HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LLF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_LLF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PK51_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-PK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PK52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-PK52.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PK52A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-PK52A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PSK3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-PSK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PSK53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-PSK53.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PSK53A_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-PSK53A.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PSK57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-PSK57.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_PSK58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-PSK58.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF15_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF19": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF19.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF4_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF56.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF57_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF57.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF57HT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF57HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF57HTultra_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF57HTultra.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF6_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF64": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF64.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF66_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF66.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF6HT_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF6HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF6HTultra_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF6HTultra.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF6Q2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF6Q2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SF8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK16_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK2HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK2HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SK5HTi": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SK5HTi.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SSK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SSK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SSK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SSK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_SSK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-SSK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_ZK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-ZK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "N_ZK7A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/N-ZK7A.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "PK51A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PK51A.material", + "Surface": "Polished", + "IsOptic": true + }, + "PSK2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PSK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "PSK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PSK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "PSK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PSK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "PSK52": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PSK52.material", + "Surface": "Polished", + "IsOptic": true + }, + "PSK53A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PSK53A.material", + "Surface": "Polished", + "IsOptic": true + }, + "PSK54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/PSK54.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_BK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LAF37": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-LAF37.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LAK35": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-LAK35.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASF47": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-LASF47.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASF50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-LASF50.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_LASF51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-LASF51.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_PK53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-PK53.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SF67": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-SF67.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SF68": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-SF68.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SF69": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-SF69.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-SK57.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK57Q1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-SK57Q1.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK58A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-SK58A.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/P-SK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "REALVIEW_1_9_LIGHTWEIGHT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/REALVIEW_1.9_LIGHTWEIGHT.material", + "Surface": "Polished", + "IsOptic": true + }, + "REALVIEW_2_0": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/REALVIEW_2.0.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF10_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF11_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF12_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF13_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF14_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF15_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF16.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF18.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF19": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF19.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF53": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF53.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF54": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF54.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF55.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF56A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF56A.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF57.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF57HHT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF57HHT.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF57HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF57HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF57HTultra": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF57HTultra.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF58.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF59": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF59.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF63": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF63.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF64A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF64A.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF66.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF6G05_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF6G05.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF6HT": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF6HT.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF8_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF9_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFL4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SFL4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFL56": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SFL56.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFL57": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SFL57.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFL6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SFL6.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK13.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK15_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK16_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK18A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK18A.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK55.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK1_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK2_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SSK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SSK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK4A": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SSK4A.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SSK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK51": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SSK51.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSKN5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SSKN5.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSKN8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/SSKN8.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/TIF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/TIF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "TIFN5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/TIFN5.material", + "Surface": "Polished", + "IsOptic": true + }, + "UBK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/UBK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "UK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/UK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "ULTRAN20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/ULTRAN20.material", + "Surface": "Polished", + "IsOptic": true + }, + "ULTRAN30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/ULTRAN30.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/ZK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZKN7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SCHOTT/ZKN7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF10_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF11_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF13_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF3_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF4_6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF5_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF8_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAF9_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFN1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAFN1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAFN3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAFN3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK2_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BAK4_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BAK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BALF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BALF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BALF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BALF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BALF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BALF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BALK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BALK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF12_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF2_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF6_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BASF8_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BASF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "BK7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "BPG2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/BPG2.material", + "Surface": "Polished", + "IsOptic": true + }, + "CAFK95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/CAFK95.material", + "Surface": "Polished", + "IsOptic": true + }, + "CD120": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/CD120.material", + "Surface": "Polished", + "IsOptic": true + }, + "CD45": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/CD45.material", + "Surface": "Polished", + "IsOptic": true + }, + "CSK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/CSK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "CSK120": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/CSK120.material", + "Surface": "Polished", + "IsOptic": true + }, + "F1_7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/F1.material", + "Surface": "Polished", + "IsOptic": true + }, + "F2_7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/F2.material", + "Surface": "Polished", + "IsOptic": true + }, + "F3_7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/F3.material", + "Surface": "Polished", + "IsOptic": true + }, + "F4_6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/F4.material", + "Surface": "Polished", + "IsOptic": true + }, + "F5_7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/F5.material", + "Surface": "Polished", + "IsOptic": true + }, + "F6_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/F6.material", + "Surface": "Polished", + "IsOptic": true + }, + "F8_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/F8.material", + "Surface": "Polished", + "IsOptic": true + }, + "F9_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/F9.material", + "Surface": "Polished", + "IsOptic": true + }, + "FK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "GFK68": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/GFK68.material", + "Surface": "Polished", + "IsOptic": true + }, + "GFK70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/GFK70.material", + "Surface": "Polished", + "IsOptic": true + }, + "K11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K11.material", + "Surface": "Polished", + "IsOptic": true + }, + "K3_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K5_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K7.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF6_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "KF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "KN1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KN1.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KZF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS4_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KZFS4.material", + "Surface": "Polished", + "IsOptic": true + }, + "KZFS50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/KZFS50.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BOC20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BOC20.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BOC30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BOC30.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BPG2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BPG2.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BaF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BaF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BaF9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BaF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BaFn1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BaFn1.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BaFn3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BaFn3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BaSF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BaSF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_BaSF5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-BaSF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CD120": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CD120.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CD120_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CD120(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CD300": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CD300.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CD300_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CD300(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CD45": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CD45.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CD45_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CD45(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CSK120": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CSK120.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CSK120_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CSK120(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CSK158": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CSK158.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CSK158_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CSK158(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CaFK95": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CaFK95.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_CaFK95_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-CaFK95(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_FIR100UV": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-FIR100UV.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_FIR100UV_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-FIR100UV(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_FIR97UV": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-FIR97UV.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_FIR98UV": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-FIR98UV.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_FK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-FK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_GFK68": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-GFK68.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_GFK68_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-GFK68(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_GFK70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-GFK70.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_GFK70_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-GFK70(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_GIR140": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-GIR140.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_GIR79": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-GIR79.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LCV161": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LCV161.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LCV161_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LCV161(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LCV93": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LCV93.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LCV93_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LCV93(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK50T": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK50T.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK50T_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK50T(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK50_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK50(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK55.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK55_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK55(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK58": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK58.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK58_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK58(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK60_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK60(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK63": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK63.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK63_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK63(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK65": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK65.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFK65_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFK65(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFn11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFn11.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFn3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFn3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaFn5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaFn5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaKn11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaKn11.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaKn14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaKn14.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaKn2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaKn2.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaKn4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaKn4.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaKn5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaKn5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaKn7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaKn7.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn1.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn10.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn14.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn16.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn17": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn17.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn2.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn21.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn22.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn23": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn23.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn4.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn6.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn7.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn8.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn8W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn8W.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSFn9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSFn9.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_LaSKn1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-LaSKn1.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PBK40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PBK40.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PBK40_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PBK40(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PBK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PBK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PBK50_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PBK50(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PBK60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PBK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PBK60_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PBK60(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PFK80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PFK80.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PFK80_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PFK80(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PFK85": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PFK85.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PFK85_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PFK85(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PFK90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PFK90.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PFK90_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PFK90(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PG325": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PG325.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PG325_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PG325(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PG375": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PG375.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PG375_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PG375(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PG395": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PG395.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PG395_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PG395(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PMK155": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PMK155.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PMK155_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PMK155(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PMK30": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PMK30.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PMK30_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PMK30(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn1.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn166": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn166.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn166_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn166(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn173": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn173.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn173_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn173(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn185": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn185.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn185_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn185(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn190": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn190.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn190_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn190(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn1_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn1(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn2.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn202": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn202.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn202_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn202(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn203": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn203.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn203_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn203(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn214": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn214.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn214P": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn214P.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn214P_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn214P(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn214_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn214(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn215": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn215.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn2_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn2(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn3_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn3(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn4.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn4_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn4(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSFn5_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSFn5(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK100.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK100_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK100(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK11_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK11(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK200": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK200.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK200_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK200(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK300": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK300.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK300_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK300(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK400": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK400.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK400_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK400(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK500": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK500.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSK500_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSK500(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_PSKn2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-PSKn2.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLD1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLD1.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLD11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLD11.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLD14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLD14.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLD4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLD4.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLD6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLD6.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLD66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLD66.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLD8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLD8.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLD8W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLD8W.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLDn3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLDn3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SFLDn3W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SFLDn3W.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SK15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SK16RH": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SK16RH.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SK18RH": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SK18RH.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SK7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKF6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKF6_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKF6(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD100.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD100_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD100(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD120": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD120.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD120_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD120(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD200": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD200.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD200_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD200(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD300": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD300.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD300_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD300(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD5.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SKLD5_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SKLD5(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SSK1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SSK3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SSK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SSK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SSK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_SSK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-SSK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC100.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC100_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC100(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC174": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC174.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC179": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC179.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC179_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC179(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC181": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC181.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC181_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC181(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC185": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC185.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC185_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC185(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC78": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC78.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC78_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC78(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC79": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC79.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC79_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC79(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC80.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC80_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC80(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC82": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC82.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC82_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC82(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC89": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC89.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC89_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC89(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC90": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC90.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC90_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC90(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC91": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC91.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC91_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC91(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC99": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC99.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_VC99_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-VC99(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "K_ZnSF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-ZnSF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "K_ZnSF8_M": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/K-ZnSF8(M).material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF2_5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF3_7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAF70": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAF70.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFK55": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFK55.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFK60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN12": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAFN9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAFN9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK12_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK18": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK8_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAK9_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN11.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN12.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN13_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN14.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LAKN9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LAKN9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN10": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN10.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN13": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN13.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN14": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN14.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN16.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN17": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN17.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN19": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN19.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN21": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN21.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN22": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN22.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN7": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN8.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASFN9_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASFN9.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASKN1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASKN1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LASKN3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LASKN3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF5_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF6_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LF7_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF1_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LLF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF2_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LLF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LLF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF6_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LLF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LLF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "LLF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/LLF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "PFK80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/PFK80.material", + "Surface": "Polished", + "IsOptic": true + }, + "PFK85": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/PFK85.material", + "Surface": "Polished", + "IsOptic": true + }, + "PSK2_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/PSK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "PSKN2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/PSKN2.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_BK40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/P-BK40.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK100": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/P-SK100.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/P-SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK50": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/P-SK50.material", + "Surface": "Polished", + "IsOptic": true + }, + "P_SK60_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/P-SK60.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF1_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF10_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF10.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF10W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF10W.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF11_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF11.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF11W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF11W.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF12_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF12.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF13_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF13.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF14_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF14.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF15_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF18_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF18.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF19_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF19.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF2_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF4_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF4W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF4W.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF5_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF5.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF6_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF6.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF6W": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF6W.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF7_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF7.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF8_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "SF9_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SF9.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFLD11": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFLD11.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFLD20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFLD20.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFLD6": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFLD6.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFLD60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFLD60.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFLD66": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFLD66.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFLDN3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFLDN3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFN1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFN1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFN3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFN3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFN4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFN4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SFS3_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SFS3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK1_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK10_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK10.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK11_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK11.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK12_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK12.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK14_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK14.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK15_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK15.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK16_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK16.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK16RH": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK16RH.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK18_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK18.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK18RH": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK18RH.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK2_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK20": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK20.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK4_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK5_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK7_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK7.material", + "Surface": "Polished", + "IsOptic": true + }, + "SK9_3": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK1_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SSK1.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK2_4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SSK2.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK3_2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SSK3.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK4": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SSK4.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SSK5.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSK9": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SSK9.material", + "Surface": "Polished", + "IsOptic": true + }, + "SSKN1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/SSKN1.material", + "Surface": "Polished", + "IsOptic": true + }, + "VC78": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/VC78.material", + "Surface": "Polished", + "IsOptic": true + }, + "VC79": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/VC79.material", + "Surface": "Polished", + "IsOptic": true + }, + "VC81": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/VC81.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZNSF8": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/SUMITA/ZNSF8.material", + "Surface": "Polished", + "IsOptic": true + }, + "AD_5503": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/TEIJIN/AD-5503.material", + "Surface": "Polished", + "IsOptic": true + }, + "SP_1516": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/TEIJIN/SP-1516.material", + "Surface": "Polished", + "IsOptic": true + }, + "SP_3810": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/TEIJIN/SP-3810.material", + "Surface": "Polished", + "IsOptic": true + }, + "SP_5590": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/TEIJIN/SP-5590.material", + "Surface": "Polished", + "IsOptic": true + }, + "5013LS_01": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/TOPAS/5013LS-01.material", + "Surface": "Polished", + "IsOptic": true + }, + "5013X16": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/TOPAS/5013X16.material", + "Surface": "Polished", + "IsOptic": true + }, + "6015S_04": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/TOPAS/6015S-04.material", + "Surface": "Polished", + "IsOptic": true + }, + "GASIR1": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/UMICORE/GASIR1.material", + "Surface": "Polished", + "IsOptic": true + }, + "GASIR2": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/UMICORE/GASIR2.material", + "Surface": "Polished", + "IsOptic": true + }, + "GASIR5": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/UMICORE/GASIR5.material", + "Surface": "Polished", + "IsOptic": true + }, + "330R": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/330R.material", + "Surface": "Polished", + "IsOptic": true + }, + "480R": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/480R.material", + "Surface": "Polished", + "IsOptic": true + }, + "E48R": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/E48R.material", + "Surface": "Polished", + "IsOptic": true + }, + "F52R": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/F52R.material", + "Surface": "Polished", + "IsOptic": true + }, + "K26R_0": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/K26R_0.material", + "Surface": "Polished", + "IsOptic": true + }, + "K26R_15": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/K26R_-15.material", + "Surface": "Polished", + "IsOptic": true + }, + "K26R_25": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/K26R_25.material", + "Surface": "Polished", + "IsOptic": true + }, + "K26R_40": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/K26R_40.material", + "Surface": "Polished", + "IsOptic": true + }, + "K26R_60": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/K26R_60.material", + "Surface": "Polished", + "IsOptic": true + }, + "K26R_80": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/K26R_80.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_330R_2016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_330R_2016.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_330R_2017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_330R_2017.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_350R_2016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_350R_2016.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_350R_2017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_350R_2017.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_480R_2016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_480R_2016.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_480R_2017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_480R_2017.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_E48R_2016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_E48R_2016.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_E48R_2017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_E48R_2017.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_F52R_2016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_F52R_2016.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_F52R_2017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_F52R_2017.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_K22R_K26R_2016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_K22R-K26R_2016.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_K22R_K26R_2017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_K22R-K26R_2017.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_T62R_2016": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_T62R_2016.material", + "Surface": "Polished", + "IsOptic": true + }, + "ZEONEX_T62R_2017": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/ZEON/ZEONEX_T62R_2017.material", + "Surface": "Polished", + "IsOptic": true + }, + "Saint_Gobain_Sekurisol": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/saint-gobain_windshield_and_sun_roof_glasses/Saint Gobain - Sekurisol.material", + "Surface": "Polished", + "IsOptic": true + }, + "Saint_Gobain_Sekurit_gr\u207fn": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/saint-gobain_windshield_and_sun_roof_glasses/Saint Gobain - Sekurit gr\u207fn.material", + "Surface": "Polished", + "IsOptic": true + }, + "Saint_Gobain_Sekurit_klar": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/saint-gobain_windshield_and_sun_roof_glasses/Saint Gobain - Sekurit klar.material", + "Surface": "Polished", + "IsOptic": true + }, + "Saint_Gobain_Solarit_venus_10_grau": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/saint-gobain_windshield_and_sun_roof_glasses/Saint Gobain - Solarit venus 10 grau.material", + "Surface": "Polished", + "IsOptic": true + }, + "Saint_Gobain_Solarit_venus_10_gr\u207fn": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/saint-gobain_windshield_and_sun_roof_glasses/Saint Gobain - Solarit venus 10 gr\u207fn.material", + "Surface": "Polished", + "IsOptic": true + }, + "Saint_Gobain_Solarit_venus_35_grau": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/saint-gobain_windshield_and_sun_roof_glasses/Saint Gobain - Solarit venus 35 grau.material", + "Surface": "Polished", + "IsOptic": true + }, + "Saint_Gobain_Solarit_venus_35_gr\u207fn": { + "Volume": "Optical_Property/volume_optical_properties/optical_glass/saint-gobain_windshield_and_sun_roof_glasses/Saint Gobain - Solarit venus 35 gr\u207fn.material", + "Surface": "Polished", + "IsOptic": true + }, + "PMMA_BASF_Lumogene_F_blue_650": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_basf_lumogen_f/Data/PMMA BASF Lumogene F blue 650.material", + "Surface": "Polished", + "IsOptic": true + }, + "PMMA_BASF_Lumogene_F_green_850": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_basf_lumogen_f/Data/PMMA BASF Lumogene F green 850.material", + "Surface": "Polished", + "IsOptic": true + }, + "PMMA_BASF_Lumogene_F_orange_240": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_basf_lumogen_f/Data/PMMA BASF Lumogene F orange 240.material", + "Surface": "Polished", + "IsOptic": true + }, + "PMMA_BASF_Lumogene_F_red_300": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_basf_lumogen_f/Data/PMMA BASF Lumogene F red 300.material", + "Surface": "Polished", + "IsOptic": true + }, + "PMMA_BASF_Lumogene_F_violet_570": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_basf_lumogen_f/Data/PMMA BASF Lumogene F violet 570.material", + "Surface": "Polished", + "IsOptic": true + }, + "PMMA_BASF_Lumogene_F_yellow_083": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_basf_lumogen_f/Data/PMMA BASF Lumogene F yellow 083.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_INTEMATIX_EY4254": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_intematix_led_phosphor/Epoxy with INTEMATIX EY4254.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_INTEMATIX_EY4453": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_intematix_led_phosphor/Epoxy with INTEMATIX EY4453.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_INTEMATIX_EY4651": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_intematix_led_phosphor/Epoxy with INTEMATIX EY4651.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_INTEMATIX_G1758": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_intematix_led_phosphor/Epoxy with INTEMATIX G1758.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_INTEMATIX_O5544": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_intematix_led_phosphor/Epoxy with INTEMATIX O5544.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_INTEMATIX_R6535": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_intematix_led_phosphor/Epoxy with INTEMATIX R6535.material", + "Surface": "Polished", + "IsOptic": true + }, + "generic_phosphor": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_intematix_led_phosphor/generic phosphor.material", + "Surface": "Polished", + "IsOptic": true + }, + "MERCK_ACID_FUCHSIN_CERTISTAIN_ethanol_solution": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_fluorescent/MERCK ACID FUCHSIN CERTISTAIN ethanol solution.material", + "Surface": "Polished", + "IsOptic": true + }, + "MERCK_ARCRIDINE_ORANGE_CERTISTAIN_ethanol_solution": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_fluorescent/MERCK ARCRIDINE ORANGE CERTISTAIN ethanol solution.material", + "Surface": "Polished", + "IsOptic": true + }, + "MERCK_AURAMINE_O_ethanol_solution": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_fluorescent/MERCK AURAMINE O ethanol solution.material", + "Surface": "Polished", + "IsOptic": true + }, + "MERCK_DAPI_ethanol_solution": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_fluorescent/MERCK DAPI ethanol solution.material", + "Surface": "Polished", + "IsOptic": true + }, + "MERCK_FITC_fluorescin_ethanol_solution": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_fluorescent/MERCK FITC (fluorescin) ethanol solution.material", + "Surface": "Polished", + "IsOptic": true + }, + "MERCK_PARAROSANILINE_CERTISTAIN_ethanol_solution": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_fluorescent/MERCK PARAROSANILINE CERTISTAIN ethanol solution.material", + "Surface": "Polished", + "IsOptic": true + }, + "MERCK_PYRONINE_G_CERTISTAIN_ethanol_solution": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_fluorescent/MERCK PYRONINE G CERTISTAIN ethanol solution.material", + "Surface": "Polished", + "IsOptic": true + }, + "MERCK_RHODAMINE_B_ethanol_solution": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_fluorescent/MERCK RHODAMINE B ethanol solution.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_MERCK_SGA_521_100": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_isiphor/Epoxy with MERCK SGA 521 100.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_MERCK_SGA_565_100": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_isiphor/Epoxy with MERCK SGA 565 100.material", + "Surface": "Polished", + "IsOptic": true + }, + "Epoxy_with_MERCK_SGA_612_100": { + "Volume": "Optical_Property/volume_optical_properties/other/dye_merck_isiphor/Epoxy with MERCK SGA 612 100.material", + "Surface": "Polished", + "IsOptic": true + }, + "AMTIR_1": { + "Volume": "Optical_Property/volume_optical_properties/other/material_amorphous/AMTIR-1.material", + "Surface": "Polished", + "IsOptic": true + }, + "AMTIR_3": { + "Volume": "Optical_Property/volume_optical_properties/other/material_amorphous/AMTIR-3.material", + "Surface": "Polished", + "IsOptic": true + }, + "ArsenicTrisulfide_As2S3": { + "Volume": "Optical_Property/volume_optical_properties/other/material_amorphous/ArsenicTrisulfide (As2S3).material", + "Surface": "Polished", + "IsOptic": true + }, + "Gallium_Arsenide": { + "Volume": "Optical_Property/volume_optical_properties/other/material_amorphous/Gallium Arsenide.material", + "Surface": "Polished", + "IsOptic": true + }, + "Fog_Library_Duthon2019_visibility100m_Crypted": { + "Volume": "Optical_Property/volume_optical_properties/other/material_fog/Fog Library_Duthon2019_visibility100m_Crypted.material", + "Surface": "Polished", + "IsOptic": true + }, + "Fog_Library_Duthon2019_visibility150m_Crypted": { + "Volume": "Optical_Property/volume_optical_properties/other/material_fog/Fog Library_Duthon2019_visibility150m_Crypted.material", + "Surface": "Polished", + "IsOptic": true + }, + "Fog_Library_Duthon2019_visibility15m_Crypted": { + "Volume": "Optical_Property/volume_optical_properties/other/material_fog/Fog Library_Duthon2019_visibility15m_Crypted.material", + "Surface": "Polished", + "IsOptic": true + }, + "Fog_Library_Duthon2019_visibility30m_Crypted": { + "Volume": "Optical_Property/volume_optical_properties/other/material_fog/Fog Library_Duthon2019_visibility30m_Crypted.material", + "Surface": "Polished", + "IsOptic": true + }, + "Fog_Library_Duthon2019_visibility50m_Crypted": { + "Volume": "Optical_Property/volume_optical_properties/other/material_fog/Fog Library_Duthon2019_visibility50m_Crypted.material", + "Surface": "Polished", + "IsOptic": true + }, + "PLEXIGLAS_Optical_HT_Speos": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_plexiglas-acrylite_optical_HT/PLEXIGLAS_Optical_HT_Speos.material", + "Surface": "Polished", + "IsOptic": true + }, + "R\u00f7hm_PLEXIMID_TT50_Speos": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_pleximid_TT50/R\u00f7hm_PLEXIMID_TT50_Speos.material", + "Surface": "Polished", + "IsOptic": true + }, + "140414_Plexiglas_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_plexiglas_8n_crystal_clear/140414_Plexiglas_8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "LD12_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_-_plexiglas_8n_ld/LD12_8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "LD24_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_-_plexiglas_8n_ld/LD24_8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "LD48_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_-_plexiglas_8n_ld/LD48_8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "LD96_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_-_plexiglas_8n_ld/LD96_8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "PLEXIGLAS_Softlight_8N_df23_7V269": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_plexiglas_Softlight_8N_df23_7V269/PLEXIGLAS_Softlight_8N_df23_7V269.material", + "Surface": "Polished", + "IsOptic": true + }, + "160428_LED_PLEXIGLAS_7H0V200_Release_V1": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_plexiglas_led_7h_0v200/160428_LED PLEXIGLAS-7H0V200_Release-V1.material", + "Surface": "Polished", + "IsOptic": true + }, + "LED_PLEXIGLAS_8N0V200": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_plexiglas_led_8n_white_0v200/LED PLEXIGLAS-8N0V200.material", + "Surface": "Polished", + "IsOptic": true + }, + "Evonik_df20_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_plexiglas_satinice_8n_df2x/Evonik_df20-8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "Evonik_df21_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_plexiglas_satinice_8n_df2x/Evonik_df21-8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "Evonik_df22_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_plexiglas_satinice_8n_df2x/Evonik_df22-8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "Evonik_df23_8N": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_plexiglas_satinice_8n_df2x/Evonik_df23-8N.material", + "Surface": "Polished", + "IsOptic": true + }, + "PLEXIGLAS_8N_23095_orange": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_transparent_colored_materials/PLEXIGLAS_8N_23095_orange.material", + "Surface": "Polished", + "IsOptic": true + }, + "PLEXIGLAS_8N_33780_red": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_transparent_colored_materials/PLEXIGLAS_8N_33780_red.material", + "Surface": "Polished", + "IsOptic": true + }, + "PLEXIGLAS_8N_53351_blue": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_transparent_colored_materials/PLEXIGLAS_8N_53351_blue.material", + "Surface": "Polished", + "IsOptic": true + }, + "PLEXIGLAS_8N_65621_green": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_plastic_roehm_transparent_colored_materials/PLEXIGLAS_8N_65621_green.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V205": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V205.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V265": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V265.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V268": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V268.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V269": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V269.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V270": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V270.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V271": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V271.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V272": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V272.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V273": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V273.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V274": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V274.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V275": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V275.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V310": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V310.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V337": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V337.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_GRAY_7V338": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_gray/EVONIK_PLEXIGLAS-8N-GRAY-7V338.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_13025": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-13025.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_13115": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-13115.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_23085": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-23085.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_23095": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-23095.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_23105": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-23105.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_23335": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-23335.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_23340": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-23340.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_2V050": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-2V050.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_ORANGE_2V057": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_orange/EVONIK_PLEXIGLAS-8N-ORANGE-2V057.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_33253": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-33253.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_33661": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-33661.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_33681": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-33681.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_33691": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-33691.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_33701": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-33701.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_33711": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-33711.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_33721": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-33721.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_33780": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-33780.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V124": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V124 .material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V125": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V125.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V126": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V126.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V136": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V136.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V137": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V137.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V141": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V141.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V143": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V143.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V153": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V153.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V163": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V163.material", + "Surface": "Polished", + "IsOptic": true + }, + "EVONIK_PLEXIGLAS_8N_RED_3V170": { + "Volume": "Optical_Property/volume_optical_properties/plastic/ROEHM/material_roehm_plexiglas_8n_red/EVONIK_PLEXIGLAS-8N-RED-3V170.material", + "Surface": "Polished", + "IsOptic": true + }, + "Altuglas_HT121_102_clear": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_HT121/Altuglas HT121 102 clear.material", + "Surface": "Polished", + "IsOptic": true + }, + "Altuglas_HT121_LPL": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_HT121/Altuglas HT121 LPL.material", + "Surface": "Polished", + "IsOptic": true + }, + "Altuglas_Diffuse_101": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_diffuse_101/Altuglas Diffuse 101.material", + "Surface": "Polished", + "IsOptic": true + }, + "Altuglas_Diffuse_301": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_diffuse_301/Altuglas Diffuse 301.material", + "Surface": "Polished", + "IsOptic": true + }, + "Altuglas_Diffuse_502": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_diffuse_502/Altuglas Diffuse 502.material", + "Surface": "Polished", + "IsOptic": true + }, + "ARKEMA_Altuglas_Diffuse_701": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_diffuse_701/ARKEMA_Altuglas-Diffuse-701.material", + "Surface": "Polished", + "IsOptic": true + }, + "20201013_Arkema_56072": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/20201013_Arkema_56072.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_100": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 100.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_16048": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 16048.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_18292": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 18292.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_28033": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 28033.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_28247": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 28247.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_461": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 461.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_58102": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 58102.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_58200": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 58200.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_756": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 756.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_883": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 883.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_937": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 937.material", + "Surface": "Polished", + "IsOptic": true + }, + "Arkema_938": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_transparent_grades/Arkema 938.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Amber_28209": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_amber_non-diffusive/V825T Amber 28209.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Amber_28223": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_amber_non-diffusive/V825T Amber 28223.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Amber_28240": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_amber_non-diffusive/V825T Amber 28240.material", + "Surface": "Polished", + "IsOptic": true + }, + "ARKEMA_Altuglas_V825T_Clear": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_clear/ARKEMA-Altuglas-V825T-Clear.material", + "Surface": "Polished", + "IsOptic": true + }, + "Altuglas_V825T_LPL_Clear": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_lpl_clear/Altuglas-V825T-LPL-Clear.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Red_18242": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_red_transparent_materials/V825T Red 18242.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Red_18243": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_red_transparent_materials/V825T Red 18243.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Red_18244": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_red_transparent_materials/V825T Red 18244.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Red_18249": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_red_transparent_materials/V825T Red 18249.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Red_18250": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_red_transparent_materials/V825T Red 18250.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Red_18254": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_red_transparent_materials/V825T Red 18254.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Red_18279": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_red_transparent_materials/V825T Red 18279.material", + "Surface": "Polished", + "IsOptic": true + }, + "V825T_Red_18283": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_arkema_altuglas_v825t_red_transparent_materials/V825T Red 18283.material", + "Surface": "Polished", + "IsOptic": true + }, + "Altuglas_V040": { + "Volume": "Optical_Property/volume_optical_properties/plastic/arkema/material_plastic_trinseo_altuglas_V040_clear/Altuglas_V040.material", + "Surface": "Polished", + "IsOptic": true + }, + "APEC_1600_551022_Clear": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_apec_transparent_materials/APEC 1600 551022 Clear.material", + "Surface": "Polished", + "IsOptic": true + }, + "APEC_1795_551022_Clear": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_apec_transparent_materials/APEC 1795 551022 Clear.material", + "Surface": "Polished", + "IsOptic": true + }, + "APEC_1800_551022_Clear": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_apec_transparent_materials/APEC 1800 551022 Clear.material", + "Surface": "Polished", + "IsOptic": true + }, + "APEC_1803_250196_Amber": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_apec_transparent_materials/APEC 1803 250196 Amber.material", + "Surface": "Polished", + "IsOptic": true + }, + "APEC_2000_551022_Clear": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_apec_transparent_materials/APEC 2000 551022 Clear.material", + "Surface": "Polished", + "IsOptic": true + }, + "APEC_2097_350968_Red": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_apec_transparent_materials/APEC 2097 350968 Red.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_BayblendT45PG": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_bayblend_t45_pg/Covestro_BayblendT45PG.material", + "Surface": "Polished", + "IsOptic": true + }, + "Mie_Mat_2020r2_2245_EL_021754_crypt": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_edge_lighting/Materials/Mie_Mat_2020r2_2245_EL_021754_crypt.material", + "Surface": "Polished", + "IsOptic": true + }, + "Mie_Mat_2020r2_2245_EL_021760_crypt": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_edge_lighting/Materials/Mie_Mat_2020r2_2245_EL_021760_crypt.material", + "Surface": "Polished", + "IsOptic": true + }, + "Mie_Mat_2020r2_2245_EL_021767_crypt": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_edge_lighting/Materials/Mie_Mat_2020r2_2245_EL_021767_crypt.material", + "Surface": "Polished", + "IsOptic": true + }, + "Mie_Mat_2020r2_2245_EL_021769_crypt": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_edge_lighting/Materials/Mie_Mat_2020r2_2245_EL_021769_crypt.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Makrolon_RW2407_010226": { + "Volume": null, + "Surface": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_opaque_reflector/Covestro_Makrolon_RW2407_010226.anisotropicbsdf", + "IsOptic": false + }, + "Makrolon_2405_010027": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Opaques Grades/Makrolon_2405_010027.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2405_010203": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Opaques Grades/Makrolon_2405_010203.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2405_012008": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Opaques Grades/Makrolon_2405_012008.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_012044": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Opaques Grades/Makrolon_2407_012044.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_020003": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_2407_020003.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_020083": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_2407_020083.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_021066": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon 2407_021066.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_021323": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon 2407_ 021323.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_021528": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_2407_021528.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_021531": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_2407_021531.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_021532": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_2407_021532.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_021533": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_2407_021533.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_2407_021688": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_2407_021688.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_240x_021172": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_240x_021172.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_240x_021173": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_240x_021173.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_240x_021177": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_240x_021177.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_240x_021180": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_240x_021180.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_240x_021182": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_240x_021182.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_AG2477_DQ_020016": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_AG2477-DQ-020016.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Ai2457_921061": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_Ai2457_921061.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_DQ5122_029900": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_DQ5122_029900.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_DQ5142_029900": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_DQ5142_029900.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_DQ5162_029900": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_scattering_grades/Translucent Grades/Makrolon_DQ5162_029900.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_AL2447_551070": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_AL2447-551070.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_AL2447_752970": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro AL2447-752970.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_AL2647_256894": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_AL2647-256894.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_AL2647_357866": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_AL2647-357866.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_AL2647_752969": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro AL2647-752969.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Ai2217_550207": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_Ai2217_550207.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Ai2417_550207": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_Ai2417_550207.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Makrolon_AL2447_550012": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_Makrolon AL2447_550012.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Makrolon_LED2045_000000": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_Makrolon_LED2045_000000.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Makrolon_LED2245HP_000000": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_Makrolon_LED2245HP_000000.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Makrolon_LED2245_551592": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_Makrolon_LED2245_551592.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Makrolon_LED5102_000000": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_Makrolon_LED5102_000000.material", + "Surface": "Polished", + "IsOptic": true + }, + "Covestro_Makrolon_LED5302_000000": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Covestro_Makrolon_LED5302_000000.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_LED2245_00000": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon_LED2245_00000.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_LED2245_550207": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon_LED2245_550207.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_LED2247_550207": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon_LED2247_550207.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_LED2643_551053": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon_LED2643_551053.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Blue_550115": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Blue 550115.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Blue_550322": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Blue 550322.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Brown_850371": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Brown 850371.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Clear_AL2647_551068": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Clear AL2647 551068.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Green_650020": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Green 650020.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Grey_750042": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Grey 750042.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_OD_2015": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent OD 2015.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Orange_250196": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Orange 250196.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Orange_250322": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Orange 250322.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Orange_250391": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Orange 250391.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Orange_250392": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Orange 250392.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Orange_250393": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Orange 250393.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Orange_250394": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Orange 250394.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Orange_256866": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Orange 256866.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Red_350003": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Red 350003.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Red_350391": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Red 350391.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Red_350392": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Red 350392.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Red_350393": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Red 350393.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Red_350968": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Red 350968.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Violet_450005": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Violet 450005.material", + "Surface": "Polished", + "IsOptic": true + }, + "Makrolon_Transparent_Yellow_150007": { + "Volume": "Optical_Property/volume_optical_properties/plastic/covestro/material_plastic_covestro_makrolon_transparent_grades/Materials/Makrolon Transparent Yellow 150007.material", + "Surface": "Polished", + "IsOptic": true + }, + "EastmanGlassPolymer_24635_B0096_50_1_Aqua": { + "Volume": "Optical_Property/volume_optical_properties/plastic/eastman/material_plastic_eastman_glass_polymers/EastmanGlassPolymer_24635_B0096(50-1)_Aqua.material", + "Surface": "Polished", + "IsOptic": true + }, + "EastmanGlassPolymer_24635_B0097_50_1_Azure": { + "Volume": "Optical_Property/volume_optical_properties/plastic/eastman/material_plastic_eastman_glass_polymers/EastmanGlassPolymer_24635_B0097(50-1)_Azure.material", + "Surface": "Polished", + "IsOptic": true + }, + "EastmanGlassPolymer_24635_B0098_50_1_Spring": { + "Volume": "Optical_Property/volume_optical_properties/plastic/eastman/material_plastic_eastman_glass_polymers/EastmanGlassPolymer_24635_B0098(50-1)_Spring.material", + "Surface": "Polished", + "IsOptic": true + }, + "EastmanGlassPolymer_24635_B0100_50_1_Cobalt": { + "Volume": "Optical_Property/volume_optical_properties/plastic/eastman/material_plastic_eastman_glass_polymers/EastmanGlassPolymer_24635_B0100(50-1)_Cobalt.material", + "Surface": "Polished", + "IsOptic": true + }, + "EastmanGlassPolymer_24635_B0101_50_1_Sepia": { + "Volume": "Optical_Property/volume_optical_properties/plastic/eastman/material_plastic_eastman_glass_polymers/EastmanGlassPolymer_24635_B0101(50-1)_Sepia.material", + "Surface": "Polished", + "IsOptic": true + }, + "EastmanGlassPolymer_EB062_Crystal": { + "Volume": "Optical_Property/volume_optical_properties/plastic/eastman/material_plastic_eastman_glass_polymers/EastmanGlassPolymer_EB062_Crystal.material", + "Surface": "Polished", + "IsOptic": true + }, + "FORMOSA_TAIRILITE_AC_2820_A320": { + "Volume": "Optical_Property/volume_optical_properties/plastic/formosa/material_plastic_formosa_tairilite_ac2820_a320/FORMOSA_TAIRILITE_AC-2820-A320.material", + "Surface": "Polished", + "IsOptic": true + }, + "FORMOSACHEMICALS_TAIRILITE_AC2820_AA": { + "Volume": "Optical_Property/volume_optical_properties/plastic/formosa/material_plastic_formosa_tairilite_ac2820_aa/FORMOSACHEMICALS_TAIRILITE-AC2820-AA.material", + "Surface": "Polished", + "IsOptic": true + }, + "FORMOSACHEMICALS_TAIRILITE_AC2820_AD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/formosa/material_plastic_formosa_tairilite_ac2820_ad/FORMOSACHEMICALS_TAIRILITE-AC2820-AD.material", + "Surface": "Polished", + "IsOptic": true + }, + "FORMOSACHEMICALS_TAIRILITE_AC2820_AH": { + "Volume": "Optical_Property/volume_optical_properties/plastic/formosa/material_plastic_formosa_tairilite_ac2820_ah/FORMOSACHEMICALS_TAIRILITE-AC2820-AH.material", + "Surface": "Polished", + "IsOptic": true + }, + "FORMOSACHEMICALS_TAIRILITE_AC2820_AK": { + "Volume": "Optical_Property/volume_optical_properties/plastic/formosa/material_plastic_formosa_tairilite_ac2820_ak/FORMOSACHEMICALS_TAIRILITE-AC2820-AK.material", + "Surface": "Polished", + "IsOptic": true + }, + "FORMOSACHEMICALS_TAIRILITE_AC2820_AM": { + "Volume": "Optical_Property/volume_optical_properties/plastic/formosa/material_plastic_formosa_tairilite_ac2820_am/FORMOSACHEMICALS_TAIRILITE-AC2820-AM.material", + "Surface": "Polished", + "IsOptic": true + }, + "TARFLON_LC1500": { + "Volume": "Optical_Property/volume_optical_properties/plastic/idemitsu/material_plastic_idemitsu_kosan_tarflon_lc1500/TARFLON_LC1500.material", + "Surface": "Polished", + "IsOptic": true + }, + "TARFLON_LC1700": { + "Volume": "Optical_Property/volume_optical_properties/plastic/idemitsu/material_plastic_idemitsu_kosan_tarflon_lc1700/TARFLON_LC1700.material", + "Surface": "Polished", + "IsOptic": true + }, + "TARFLON_V1700R_W3026E": { + "Volume": "Optical_Property/volume_optical_properties/plastic/idemitsu/material_plastic_idemitsu_kosan_tarflon_v1700r_w3026e/TARFLON-V1700R-W3026E.material", + "Surface": "Polished", + "IsOptic": true + }, + "TARFLON_V1700R_W3032E": { + "Volume": "Optical_Property/volume_optical_properties/plastic/idemitsu/material_plastic_idemitsu_kosan_tarflon_v1700r_w3032e/TARFLON-V1700R-W3032E.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LDDC_PC_1000_UV_17183_BK1188_17": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_deep_color/MOCOM_ALCOM_LDDC_PC_1000_UV_17183_BK1188-17.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LDDC_PC_1000_UV_17184_BK1189_17": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_deep_color/MOCOM_ALCOM_LDDC_PC_1000_UV_17184_BK1189-17.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LDDC_PC_1000_UV_17186_BK1191_17": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_deep_color/MOCOM_ALCOM_LDDC_PC_1000_UV_17186_BK1191-17.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LDDC_PC_1000_UV_17187_BK1192_17": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_deep_color/MOCOM_ALCOM_LDDC_PC_1000_UV_17187_BK1192-17.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LDDC_PC_1000_UV_18018_BK1016_18": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_deep_color/MOCOM_ALCOM_LDDC_PC_1000_UV_18018_BK1016-18.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALBIS_ALCOM_LB_PC_1000_18112_WT1141_18": { + "Volume": null, + "Surface": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-blocking/MOCOM_ALBIS_ALCOM_LB_PC_1000_18112_WT1141-18.anisotropicbsdf", + "IsOptic": false + }, + "MOCOM_ALBIS_ALCOM_LB_PC_ABS_1000_18111_WT1140_18": { + "Volume": null, + "Surface": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-blocking/MOCOM_ALBIS_ALCOM_LB_PC_ABS_1000_18111_WT1140_18.anisotropicbsdf", + "IsOptic": false + }, + "MOCOM_ALBIS_ALCOM_PWL_10_1_1_WT1302_05LB": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-blocking/MOCOM_ALBIS_ALCOM_PWL 10-1.1_WT1302-05LB.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALBIS_ALCOM_PWL_10_1_1_WT1302_05LB_BRDF": { + "Volume": null, + "Surface": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-blocking/MOCOM_ALBIS_ALCOM_PWL 10-1.1_WT1302-05LB_BRDF.anisotropicbsdf", + "IsOptic": false + }, + "MOCOM_ALBIS_LB_ABS_1000_18113_WT1142_18": { + "Volume": null, + "Surface": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-blocking/MOCOM_ALBIS_LB_ABS_1000_18113_WT1142_18.anisotropicbsdf", + "IsOptic": false + }, + "MOCOM_ALCOM_AWL_15_1_WT31_956LB": { + "Volume": null, + "Surface": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-blocking/MOCOM_ALCOM_AWL_15-1_WT31-956LB.anisotropicbsdf", + "IsOptic": false + }, + "MOCOM_ALCOM_LD2_PC_1000_UV_14019_WT1030_14": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_LD2_PC_1000_UV_14019_WT1030-14.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LD2_PC_1000_UV_15003_CC1002_15": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_LD2_PC_1000_UV_15003_CC1002-15.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LD2_PC_1000_UV_15003_CC1003_15": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_LD2_PC_1000_UV_15003_CC1003-15.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LD2_PC_1000_UV_15003_CC1005_15": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_LD2_PC_1000_UV_15003_CC1005-15.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LD2_PC_1000_UV_16059_CC1059_16": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_LD2_PC_1000_UV_16059_CC1059-16.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LD_PC_1000_UV_15112_GY1027_16": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_LD_PC_1000_UV_15112_GY1027-16.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_171_GY1127_05LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-171_GY1127-05LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_2_UV_WT1090_08LD2": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4.2_UV_WT1090-08LD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_2_WT1159_10LD2": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4.2_WT1159-10LD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_CC1084_07LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_CC1084-07LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_CC1120_05LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_CC1120-05LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_GY1177_05LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_GY1177-05LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_GY1320_04LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_GY1320-04LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_RD1123_05LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_RD1123-05LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_GY1156_04LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_GY1156-04LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_OR1075_05LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_OR1075-05LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_RD1207_08LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC-740-4_UV_RD1207-08LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_WT1082_08LD2": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_WT1082-08LD2.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_WT1102_04LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_WT1102-04LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_WT1220_05LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_WT1220-05LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_WT1257_04LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_WT1257-04LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_WT1368_04LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_WT1368-04LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_WT1445_06LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_WT1445-06LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_UV_WT1516_04LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_UV_WT1516-04LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC_740_4_WT1401_06LD": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light-diffusion/MOCOM_ALCOM_PC_740-4_WT1401-06LD.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALBIS_ALCOM_LD_PC_2020_UV_16070_GY1081_16": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light_diffusion-glass_fiber/MOCOM_ALBIS_ALCOM_LD_PC_2020_UV_16070_GY1081-16.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LD_PC_2010_UV_16010_WT1010_16": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light_diffusion-glass_fiber/MOCOM_ALCOM_LD_PC_2010_UV_16010_WT1010-16.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_LD_PC_2020_UV_17156_WT1156_17": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light_diffusion-glass_fiber/MOCOM_ALCOM_LD_PC_2020_UV_17156_WT1156-17.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC740_4_UV_CC1320_08LG": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light_guiding/MOCOM_ALCOM_PC740-4_UV_CC1320-08LG.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC740_4_UV_CC1321_08LG": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light_guiding/MOCOM_ALCOM_PC740-4_UV_CC1321-08LG.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC740_4_UV_CC1322_08LG": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light_guiding/MOCOM_ALCOM_PC740-4_UV_CC1322-08LG.material", + "Surface": "Polished", + "IsOptic": true + }, + "MOCOM_ALCOM_PC740_4_UV_CC1323_08LG": { + "Volume": "Optical_Property/volume_optical_properties/plastic/mocom/material_plastic_mocom_alcom_light_guiding/MOCOM_ALCOM_PC740-4_UV_CC1323-08LG.material", + "Surface": "Polished", + "IsOptic": true + }, + "GRILAMID_TR_55": { + "Volume": "Optical_Property/volume_optical_properties/plastic/other/material_plastic_ems_grivory_polyamides/GRILAMID TR 55.material", + "Surface": "Polished", + "IsOptic": true + }, + "GRILAMID_TR_60": { + "Volume": "Optical_Property/volume_optical_properties/plastic/other/material_plastic_ems_grivory_polyamides/GRILAMID TR 60.material", + "Surface": "Polished", + "IsOptic": true + }, + "GRILAMID_TR_90": { + "Volume": "Optical_Property/volume_optical_properties/plastic/other/material_plastic_ems_grivory_polyamides/GRILAMID TR 90.material", + "Surface": "Polished", + "IsOptic": true + }, + "LUX_Opticlear": { + "Volume": "Optical_Property/volume_optical_properties/plastic/other/material_plastic_luxexcel_lux_opticlear/LUX-Opticlear.material", + "Surface": "Polished", + "IsOptic": true + }, + "LEXAN_121R_WH8C308X": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_innovative_plastic_lexan_121r_wh8c308x/LEXAN_121R_WH8C308X.material", + "Surface": "Polished", + "IsOptic": true + }, + "LEXAN_2H4D336T_HP1REU": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_innovative_plastic_lexan_colored_materials/LEXAN-2H4D336T-HP1REU.material", + "Surface": "Polished", + "IsOptic": true + }, + "LEXAN_GN2A033T_143R": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_innovative_plastic_lexan_colored_materials/LEXAN_GN2A033T_143R.material", + "Surface": "Polished", + "IsOptic": true + }, + "LEXAN_GN4E084T_LS2": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_innovative_plastic_lexan_colored_materials/LEXAN-GN4E084T-LS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LEXAN_RD4E145T_LS2": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_innovative_plastic_lexan_colored_materials/LEXAN-RD4E145T-LS2.material", + "Surface": "Polished", + "IsOptic": true + }, + "LEXAN_WH6E152X_FXD143R": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_innovative_plastic_lexan_wh6e152x_fxd143r/LEXAN-WH6E152X-FXD143R.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_LS1_111": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_ls1-series/SABIC_LS1-111.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_LS1_6162": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_ls1-series/SABIC_LS1-6162.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_LS2_111": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_ls2-series/SABIC_LS2-111.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_LS2_4158": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_ls2-series/SABIC_LS2-4158.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_LS2_71127": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_ls2-series/SABIC_LS2-71127.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_LS2_71194": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_ls2-series/SABIC_LS2-71194.material", + "Surface": "Polished", + "IsOptic": true + }, + "Sabic_LS2_6111": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_ls2-series/Sabic_LS2-6111.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_XLS1110_11204": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_xls-series/SABIC_XLS1110-11204.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_XLS1110_NA96165T": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_xls-series/SABIC_XLS1110-NA96165T.material", + "Surface": "Polished", + "IsOptic": true + }, + "SABIC_XLS1210_11204": { + "Volume": "Optical_Property/volume_optical_properties/plastic/sabic/material_plastic_sabic_xls-series/SABIC_XLS1210-11204.material", + "Surface": "Polished", + "IsOptic": true + }, + "Samyang_polycarbonate_ref_3022L1_I2": { + "Volume": "Optical_Property/volume_optical_properties/plastic/samyang/material_plastic_samyang_tinted_polycarbonate/Samyang polycarbonate ref. 3022L1 I2.material", + "Surface": "Polished", + "IsOptic": true + }, + "Samyang_polycarbonate_ref_3022L1_RED": { + "Volume": "Optical_Property/volume_optical_properties/plastic/samyang/material_plastic_samyang_tinted_polycarbonate/Samyang polycarbonate ref. 3022L1 RED.material", + "Surface": "Polished", + "IsOptic": true + }, + "Samyang_polycarbonate_ref_3022L1_YL": { + "Volume": "Optical_Property/volume_optical_properties/plastic/samyang/material_plastic_samyang_tinted_polycarbonate/Samyang polycarbonate ref. 3022L1 YL.material", + "Surface": "Polished", + "IsOptic": true + }, + "TRIREX_3022U": { + "Volume": "Optical_Property/volume_optical_properties/plastic/samyang/material_plastic_samyang_trirex_polycarbonate/TRIREX 3022U.material", + "Surface": "Polished", + "IsOptic": true + }, + "TRIREX_3027U": { + "Volume": "Optical_Property/volume_optical_properties/plastic/samyang/material_plastic_samyang_trirex_polycarbonate/TRIREX 3027U.material", + "Surface": "Polished", + "IsOptic": true + } +} \ No newline at end of file diff --git a/ansys_optical_automation/files.txt b/ansys_optical_automation/files.txt new file mode 100644 index 00000000..97ce1b16 Binary files /dev/null and b/ansys_optical_automation/files.txt differ