diff --git a/backend/package-lock.json b/backend/package-lock.json index a3d5138..e5e0aed 100755 --- a/backend/package-lock.json +++ b/backend/package-lock.json @@ -558,6 +558,7 @@ "integrity": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==", "dev": true, "license": "MIT", + "peer": true, "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^5.0.0", @@ -1991,6 +1992,7 @@ "resolved": "https://registry.npmjs.org/pg/-/pg-8.19.0.tgz", "integrity": "sha512-QIcLGi508BAHkQ3pJNptsFz5WQMlpGbuBGBaIaXsWK8mel2kQ/rThYI+DbgjUvZrIr7MiuEuc9LcChJoEZK1xQ==", "license": "MIT", + "peer": true, "dependencies": { "pg-connection-string": "^2.11.0", "pg-pool": "^3.12.0", diff --git a/backend/src/aerial/aerialRouter.ts b/backend/src/aerial/aerialRouter.ts index 7370579..fead1cc 100644 --- a/backend/src/aerial/aerialRouter.ts +++ b/backend/src/aerial/aerialRouter.ts @@ -80,6 +80,86 @@ router.get('/cctv', requireAuth, requirePermission('aerial', 'READ'), async (req } }); +// ============================================================ +// CCTV HLS 스트림 프록시 (CORS 우회) +// ============================================================ + +/** 허용 도메인 목록 */ +const ALLOWED_STREAM_HOSTS = [ + 'www.khoa.go.kr', + 'kbsapi.loomex.net', +]; + +// GET /api/aerial/cctv/stream-proxy — HLS 스트림 프록시 (호스트 화이트리스트로 보안) +router.get('/cctv/stream-proxy', async (req, res) => { + try { + const targetUrl = req.query.url as string | undefined; + if (!targetUrl) { + res.status(400).json({ error: 'url 파라미터가 필요합니다.' }); + return; + } + + let parsed: URL; + try { + parsed = new URL(targetUrl); + } catch { + res.status(400).json({ error: '유효하지 않은 URL' }); + return; + } + + if (!ALLOWED_STREAM_HOSTS.includes(parsed.hostname)) { + res.status(403).json({ error: '허용되지 않은 스트림 호스트' }); + return; + } + + const upstream = await fetch(targetUrl, { + headers: { 'User-Agent': 'Mozilla/5.0 (compatible; WING-OPS/1.0)' }, + }); + + if (!upstream.ok) { + res.status(upstream.status).json({ error: `스트림 서버 응답: ${upstream.status}` }); + return; + } + + const contentType = upstream.headers.get('content-type') || ''; + + // .m3u8 매니페스트: 상대 URL을 프록시 URL로 재작성 + if (targetUrl.includes('.m3u8') || contentType.includes('mpegurl') || contentType.includes('m3u8')) { + const text = await upstream.text(); + const baseUrl = targetUrl.substring(0, targetUrl.lastIndexOf('/') + 1); + const proxyBase = '/api/aerial/cctv/stream-proxy?url='; + + const rewritten = text.replace(/^(?!#)(\S+)/gm, (line) => { + if (line.startsWith('http://') || line.startsWith('https://')) { + return `${proxyBase}${encodeURIComponent(line)}`; + } + return `${proxyBase}${encodeURIComponent(baseUrl + line)}`; + }); + + res.set({ + 'Content-Type': 'application/vnd.apple.mpegurl', + 'Cache-Control': 'no-cache', + 'Access-Control-Allow-Origin': '*', + }); + res.send(rewritten); + return; + } + + // .ts 세그먼트 등: 바이너리 스트리밍 + res.set({ + 'Content-Type': contentType || 'video/mp2t', + 'Cache-Control': 'no-cache', + 'Access-Control-Allow-Origin': '*', + }); + + const buffer = Buffer.from(await upstream.arrayBuffer()); + res.send(buffer); + } catch (err) { + console.error('[aerial] CCTV 스트림 프록시 오류:', err); + res.status(502).json({ error: '스트림 프록시 실패' }); + } +}); + // ============================================================ // SAT_REQUEST 라우트 // ============================================================ diff --git a/backend/src/db/seedHns.ts b/backend/src/db/seedHns.ts index a89aee7..083e027 100644 --- a/backend/src/db/seedHns.ts +++ b/backend/src/db/seedHns.ts @@ -1,8 +1,14 @@ import 'dotenv/config' +import { readFileSync } from 'node:fs' +import { resolve, dirname } from 'node:path' +import { fileURLToPath } from 'node:url' import { wingPool } from './wingDb.js' -// 프론트엔드 정적 데이터를 직접 import (tsx로 실행) -import { HNS_SEARCH_DB } from '../../../frontend/src/data/hnsSubstanceSearchData.js' +const __dirname = dirname(fileURLToPath(import.meta.url)) + +// 통합 물질 데이터 JSON (기존 20종 상세 + Excel 1,202종 기본) +const dataPath = resolve(__dirname, '../../../frontend/src/data/hnsSubstanceData.json') +const HNS_SEARCH_DB = JSON.parse(readFileSync(dataPath, 'utf-8')) async function seedHnsSubstances() { console.log('HNS 물질정보 시드 시작...') diff --git a/backend/src/hns/hnsRouter.ts b/backend/src/hns/hnsRouter.ts index fa34ab3..828ed7a 100644 --- a/backend/src/hns/hnsRouter.ts +++ b/backend/src/hns/hnsRouter.ts @@ -1,5 +1,5 @@ import express from 'express' -import { searchSubstances, getSubstanceById, listAnalyses, getAnalysis, createAnalysis, deleteAnalysis } from './hnsService.js' +import { searchSubstances, getSubstanceById, listAnalyses, getAnalysis, createAnalysis, updateAnalysisResult, deleteAnalysis } from './hnsService.js' import { isValidNumber } from '../middleware/security.js' import { requireAuth, requirePermission } from '../auth/authMiddleware.js' @@ -63,6 +63,27 @@ router.post('/analyses', requireAuth, requirePermission('hns', 'CREATE'), async } }) +// POST /api/hns/analyses/:sn/save — 분석 결과 저장 (PUT 금지 정책 준수) +router.post('/analyses/:sn/save', requireAuth, requirePermission('hns', 'CREATE'), async (req, res) => { + try { + const sn = parseInt(req.params.sn as string, 10) + if (!isValidNumber(sn, 1, 999999)) { + res.status(400).json({ error: '유효하지 않은 분석 번호' }) + return + } + const { rsltData, execSttsCd, riskCd } = req.body + if (!rsltData) { + res.status(400).json({ error: '결과 데이터는 필수입니다.' }) + return + } + await updateAnalysisResult(sn, { rsltData, execSttsCd, riskCd }) + res.json({ success: true }) + } catch (err) { + console.error('[hns] 분석 결과 저장 오류:', err) + res.status(500).json({ error: 'HNS 분석 결과 저장 실패' }) + } +}) + // DELETE /api/hns/analyses/:sn — 분석 삭제 router.delete('/analyses/:sn', requireAuth, requirePermission('hns', 'DELETE'), async (req, res) => { try { diff --git a/backend/src/hns/hnsService.ts b/backend/src/hns/hnsService.ts index e130524..101004b 100644 --- a/backend/src/hns/hnsService.ts +++ b/backend/src/hns/hnsService.ts @@ -9,7 +9,7 @@ interface HnsSearchParams { } export async function searchSubstances(params: HnsSearchParams) { - const { q, type = 'nameKr', sebc, page = 1, limit = 50 } = params + const { q, type, sebc, page = 1, limit = 50 } = params const conditions: string[] = ["USE_YN = 'Y'"] const values: (string | number)[] = [] let paramIdx = 1 @@ -42,7 +42,7 @@ export async function searchSubstances(params: HnsSearchParams) { values.push(JSON.stringify([{ code: keyword }])) break default: - conditions.push(`(NM_KR ILIKE $${paramIdx} OR NM_EN ILIKE $${paramIdx} OR ABBREVIATION ILIKE $${paramIdx})`) + conditions.push(`(ABBREVIATION ILIKE $${paramIdx} OR NM_KR ILIKE $${paramIdx} OR NM_EN ILIKE $${paramIdx})`) values.push(`%${keyword}%`) } paramIdx++ @@ -238,6 +238,19 @@ export async function createAnalysis(input: { return { hnsAnlysSn: rows[0].hns_anlys_sn } } +export async function updateAnalysisResult(sn: number, input: { + rsltData: Record + execSttsCd?: string + riskCd?: string +}): Promise { + await wingPool.query( + `UPDATE HNS_ANALYSIS + SET RSLT_DATA = $1, EXEC_STTS_CD = $2, RISK_CD = $3, MDFCN_DTM = NOW() + WHERE HNS_ANLYS_SN = $4 AND USE_YN = 'Y'`, + [JSON.stringify(input.rsltData), input.execSttsCd || 'COMPLETED', input.riskCd || null, sn] + ) +} + export async function deleteAnalysis(sn: number): Promise { await wingPool.query( `UPDATE HNS_ANALYSIS SET USE_YN = 'N', MDFCN_DTM = NOW() WHERE HNS_ANLYS_SN = $1`, diff --git a/database/migration/017_cctv_stream_urls.sql b/database/migration/017_cctv_stream_urls.sql new file mode 100644 index 0000000..df6df0e --- /dev/null +++ b/database/migration/017_cctv_stream_urls.sql @@ -0,0 +1,40 @@ +-- ============================================================ +-- 017: CCTV_CAMERA 실제 해안 CCTV 데이터로 교체 +-- 출처: 국립해양조사원(KHOA) + KBS 재난안전포털 +-- ============================================================ + +SET search_path TO wing, public; + +-- 기존 시드 데이터 제거 +DELETE FROM CCTV_CAMERA; + +-- 실제 해안 CCTV 데이터 (21건) +INSERT INTO CCTV_CAMERA (CCTV_SN, CAMERA_NM, REGION_NM, LON, LAT, GEOM, LOC_DC, COORD_DC, STTS_CD, PTZ_YN, SOURCE_NM, STREAM_URL) VALUES +-- 서해 (5건) +(29, '인천항 조위관측소', '서해', 126.5922, 37.4519, ST_SetSRID(ST_MakePoint(126.5922, 37.4519), 4326), '인천광역시 중구 항동', '37.45°N 126.59°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/Incheon/s.m3u8'), +(30, '인천항 해무관측', '서해', 126.6161, 37.3797, ST_SetSRID(ST_MakePoint(126.6161, 37.3797), 4326), '인천광역시 중구 항동', 'N 37°22''47" E 126°36''58"', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_Incheon/s.m3u8'), +(31, '대산항 해무관측', '서해', 126.3526, 37.0058, ST_SetSRID(ST_MakePoint(126.3526, 37.0058), 4326), '충남 서산시 대산읍', '37.01°N 126.35°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_Daesan/s.m3u8'), +(32, '평택·당진항 해무관측', '서해', 126.3936, 37.1131, ST_SetSRID(ST_MakePoint(126.3936, 37.1131), 4326), '충남 당진시 송악읍', 'N 37°06''47" E 126°23''37"', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_PTDJ/s.m3u8'), +(100, '인천 연안부두', '서해', 126.6125, 37.4625, ST_SetSRID(ST_MakePoint(126.6125, 37.4625), 4326), '인천광역시 중구 연안부두', '37.46°N 126.61°E', 'LIVE', 'N', 'KBS', NULL), +-- 남해 (9건) +(35, '목포항 해무관측', '남해', 126.3780, 34.7780, ST_SetSRID(ST_MakePoint(126.3780, 34.7780), 4326), '전남 목포시 항동', '34.78°N 126.38°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_Mokpo/s.m3u8'), +(36, '진도항 조위관측소', '남해', 126.3085, 34.4710, ST_SetSRID(ST_MakePoint(126.3085, 34.4710), 4326), '전남 진도군 진도읍', '34.47°N 126.31°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/Jindo/s.m3u8'), +(37, '여수항 해무관측', '남해', 127.7669, 34.7384, ST_SetSRID(ST_MakePoint(127.7669, 34.7384), 4326), '전남 여수시 종화동', '34.74°N 127.77°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_Yeosu/s.m3u8'), +(38, '여수항 조위관측소', '남해', 127.7650, 34.7370, ST_SetSRID(ST_MakePoint(127.7650, 34.7370), 4326), '전남 여수시 종화동', '34.74°N 127.77°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/Yeosu/s.m3u8'), +(39, '부산항 조위관측소', '남해', 129.0756, 35.0969, ST_SetSRID(ST_MakePoint(129.0756, 35.0969), 4326), '부산광역시 중구 중앙동', '35.10°N 129.08°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/Busan/s.m3u8'), +(40, '부산항 해무관측', '남해', 129.0780, 35.0980, ST_SetSRID(ST_MakePoint(129.0780, 35.0980), 4326), '부산광역시 중구', '35.10°N 129.08°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_Busan/s.m3u8'), +(41, '해운대 해무관측', '남해', 129.1718, 35.1587, ST_SetSRID(ST_MakePoint(129.1718, 35.1587), 4326), '부산광역시 해운대구', '35.16°N 129.17°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_Haeundae/s.m3u8'), +(97, '오동도', '남해', 127.7836, 34.7369, ST_SetSRID(ST_MakePoint(127.7836, 34.7369), 4326), '전남 여수시 수정동', '34.74°N 127.78°E', 'LIVE', 'N', 'KBS', NULL), +(108, '완도항', '남해', 126.7550, 34.3114, ST_SetSRID(ST_MakePoint(126.7550, 34.3114), 4326), '전남 완도군 완도읍', '34.31°N 126.76°E', 'LIVE', 'N', 'KBS', NULL), +-- 동해 (5건) +(42, '울산항 해무관측', '동해', 129.3870, 35.5000, ST_SetSRID(ST_MakePoint(129.3870, 35.5000), 4326), '울산광역시 남구', '35.50°N 129.39°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_Ulsan/s.m3u8'), +(43, '포항항 해무관측', '동해', 129.3798, 36.0323, ST_SetSRID(ST_MakePoint(129.3798, 36.0323), 4326), '경북 포항시 북구', '36.03°N 129.38°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/SeaFog_Pohang/s.m3u8'), +(44, '묵호항 조위관측소', '동해', 129.1146, 37.5500, ST_SetSRID(ST_MakePoint(129.1146, 37.5500), 4326), '강원 동해시 묵호동', '37.55°N 129.11°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/Mukho/s.m3u8'), +(113, '속초등대', '동해', 128.5964, 38.2070, ST_SetSRID(ST_MakePoint(128.5964, 38.2070), 4326), '강원 속초시 영랑동', '38.21°N 128.60°E', 'LIVE', 'N', 'KBS', NULL), +(115, '독도', '동해', 131.8689, 37.2394, ST_SetSRID(ST_MakePoint(131.8689, 37.2394), 4326), '경북 울릉군 울릉읍 독도리', '37.24°N 131.87°E', 'LIVE', 'N', 'KBS', NULL), +-- 제주 (2건) +(45, '모슬포항 조위관측소', '제주', 126.2519, 33.2136, ST_SetSRID(ST_MakePoint(126.2519, 33.2136), 4326), '제주 서귀포시 대정읍', '33.21°N 126.25°E', 'LIVE', 'N', 'KHOA', 'https://www.khoa.go.kr/SEAFOG/m4NiLawsC202gM5ixA7MPTYtO19KmV/hls/khoa/Moseulpo/s.m3u8'), +(116, '마라도', '제주', 126.2669, 33.1140, ST_SetSRID(ST_MakePoint(126.2669, 33.1140), 4326), '제주 서귀포시 대정읍 마라리', '33.11°N 126.27°E', 'LIVE', 'N', 'KBS', NULL); + +-- 시퀀스 리셋 +SELECT setval('cctv_camera_cctv_sn_seq', (SELECT MAX(cctv_sn) FROM cctv_camera)); diff --git a/frontend/package-lock.json b/frontend/package-lock.json index fe7c3cd..a14bd10 100755 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -25,6 +25,7 @@ "@vis.gl/react-maplibre": "^8.1.0", "axios": "^1.13.5", "emoji-mart": "^5.6.0", + "hls.js": "^1.6.15", "jszip": "^3.10.1", "lucide-react": "^0.564.0", "maplibre-gl": "^5.19.0", @@ -4245,6 +4246,12 @@ "hermes-estree": "0.25.1" } }, + "node_modules/hls.js": { + "version": "1.6.15", + "resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.6.15.tgz", + "integrity": "sha512-E3a5VwgXimGHwpRGV+WxRTKeSp2DW5DI5MWv34ulL3t5UNmyJWCQ1KmLEHbYzcfThfXG8amBL+fCYPneGHC4VA==", + "license": "Apache-2.0" + }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", diff --git a/frontend/package.json b/frontend/package.json index 7014a82..8d4c80a 100755 --- a/frontend/package.json +++ b/frontend/package.json @@ -27,6 +27,7 @@ "@vis.gl/react-maplibre": "^8.1.0", "axios": "^1.13.5", "emoji-mart": "^5.6.0", + "hls.js": "^1.6.15", "jszip": "^3.10.1", "lucide-react": "^0.564.0", "maplibre-gl": "^5.19.0", diff --git a/frontend/src/common/components/map/MapView.tsx b/frontend/src/common/components/map/MapView.tsx index 42d79c1..6e6314d 100755 --- a/frontend/src/common/components/map/MapView.tsx +++ b/frontend/src/common/components/map/MapView.tsx @@ -1,13 +1,12 @@ import { useState, useMemo, useEffect, useCallback } from 'react' import { Map, Marker, Popup, Source, Layer, useControl, useMap } from '@vis.gl/react-maplibre' import { MapboxOverlay } from '@deck.gl/mapbox' -import { ScatterplotLayer, PathLayer, TextLayer } from '@deck.gl/layers' -import type { PickingInfo } from '@deck.gl/core' +import { ScatterplotLayer, PathLayer, TextLayer, BitmapLayer } from '@deck.gl/layers' +import type { PickingInfo, Layer as DeckLayer } from '@deck.gl/core' import type { StyleSpecification } from 'maplibre-gl' import type { MapLayerMouseEvent } from 'maplibre-gl' import 'maplibre-gl/dist/maplibre-gl.css' import { layerDatabase } from '@common/services/layerService' -import { decimalToDMS } from '@common/utils/coordinates' import type { PredictionModel, SensitiveResource } from '@tabs/prediction/components/OilSpillView' import type { BoomLine, BoomLineCoord } from '@common/types/boomLine' import type { ReplayShip, CollisionEvent } from '@common/types/backtrack' @@ -163,6 +162,7 @@ interface MapViewProps { oilTrajectory?: Array<{ lat: number; lon: number; time: number; particle?: number; model?: PredictionModel }> selectedModels?: Set dispersionResult?: DispersionResult | null + dispersionHeatmap?: Array<{ lon: number; lat: number; concentration: number }> boomLines?: BoomLine[] isDrawingBoom?: boolean drawingPoints?: BoomLineCoord[] @@ -177,6 +177,7 @@ interface MapViewProps { incidentCoord: { lat: number; lon: number } } sensitiveResources?: SensitiveResource[] + mapCaptureRef?: React.MutableRefObject<(() => string | null) | null> } // deck.gl 오버레이 컴포넌트 (MapLibre 컨트롤로 등록, interleaved) @@ -201,6 +202,40 @@ function MapPitchController({ threeD }: { threeD: boolean }) { return null } +// 사고 지점 변경 시 지도 이동 (Map 내부 컴포넌트) +function MapFlyToIncident({ lon, lat }: { lon?: number; lat?: number }) { + const { current: map } = useMap() + + useEffect(() => { + if (!map || lon == null || lat == null) return + + const doFly = () => { + map.flyTo({ center: [lon, lat], zoom: 12, duration: 1200 }) + } + + if (map.loaded()) { + doFly() + } else { + map.once('load', doFly) + } + }, [lon, lat, map]) + + return null +} + +// 지도 캡처 지원 (preserveDrawingBuffer 필요) +function MapCaptureSetup({ captureRef }: { captureRef: React.MutableRefObject<(() => string | null) | null> }) { + const { current: map } = useMap(); + useEffect(() => { + if (!map) return; + captureRef.current = () => { + try { return map.getCanvas().toDataURL('image/png'); } + catch { return null; } + }; + }, [map, captureRef]); + return null; +} + // 팝업 정보 interface PopupInfo { longitude: number @@ -218,6 +253,7 @@ export function MapView({ oilTrajectory = [], selectedModels = new Set(['OpenDrift'] as PredictionModel[]), dispersionResult = null, + dispersionHeatmap = [], boomLines = [], isDrawingBoom = false, drawingPoints = [], @@ -225,6 +261,7 @@ export function MapView({ layerBrightness = 50, backtrackReplay, sensitiveResources = [], + mapCaptureRef, }: MapViewProps) { const { mapToggles } = useMapStore() const [currentPosition, setCurrentPosition] = useState<[number, number]>(DEFAULT_CENTER) @@ -429,6 +466,81 @@ export function MapView({ ) } + // --- HNS 대기확산 히트맵 (BitmapLayer, 고정 이미지) --- + if (dispersionHeatmap && dispersionHeatmap.length > 0) { + const maxConc = Math.max(...dispersionHeatmap.map(p => p.concentration)); + const minConc = Math.min(...dispersionHeatmap.filter(p => p.concentration > 0.01).map(p => p.concentration)); + const filtered = dispersionHeatmap.filter(p => p.concentration > 0.01); + console.log('[MapView] HNS 히트맵:', dispersionHeatmap.length, '→ filtered:', filtered.length, 'maxConc:', maxConc.toFixed(2)); + + if (filtered.length > 0) { + // 경위도 바운드 계산 + let minLon = Infinity, maxLon = -Infinity, minLat = Infinity, maxLat = -Infinity; + for (const p of dispersionHeatmap) { + if (p.lon < minLon) minLon = p.lon; + if (p.lon > maxLon) maxLon = p.lon; + if (p.lat < minLat) minLat = p.lat; + if (p.lat > maxLat) maxLat = p.lat; + } + const padLon = (maxLon - minLon) * 0.02; + const padLat = (maxLat - minLat) * 0.02; + minLon -= padLon; maxLon += padLon; + minLat -= padLat; maxLat += padLat; + + // 캔버스에 농도 이미지 렌더링 + const W = 1200, H = 960; + const canvas = document.createElement('canvas'); + canvas.width = W; + canvas.height = H; + const ctx = canvas.getContext('2d')!; + ctx.clearRect(0, 0, W, H); + + // 로그 스케일: 농도 범위를 고르게 분포 + const logMin = Math.log(minConc); + const logMax = Math.log(maxConc); + const logRange = logMax - logMin || 1; + + const stops: [number, number, number, number][] = [ + [34, 197, 94, 220], // green (저농도) + [234, 179, 8, 235], // yellow + [249, 115, 22, 245], // orange + [239, 68, 68, 250], // red (고농도) + [185, 28, 28, 255], // dark red (초고농도) + ]; + + for (const p of filtered) { + // 로그 스케일 정규화 (0~1) + const ratio = Math.max(0, Math.min(1, (Math.log(p.concentration) - logMin) / logRange)); + const t = ratio * (stops.length - 1); + const lo = Math.floor(t); + const hi = Math.min(lo + 1, stops.length - 1); + const f = t - lo; + const r = Math.round(stops[lo][0] + (stops[hi][0] - stops[lo][0]) * f); + const g = Math.round(stops[lo][1] + (stops[hi][1] - stops[lo][1]) * f); + const b = Math.round(stops[lo][2] + (stops[hi][2] - stops[lo][2]) * f); + const a = (stops[lo][3] + (stops[hi][3] - stops[lo][3]) * f) / 255; + + const px = ((p.lon - minLon) / (maxLon - minLon)) * W; + const py = (1 - (p.lat - minLat) / (maxLat - minLat)) * H; + + ctx.fillStyle = `rgba(${r},${g},${b},${a.toFixed(2)})`; + ctx.beginPath(); + ctx.arc(px, py, 6, 0, Math.PI * 2); + ctx.fill(); + } + + result.push( + new BitmapLayer({ + id: 'hns-dispersion-bitmap', + image: canvas, + bounds: [minLon, minLat, maxLon, maxLat], + opacity: 1.0, + pickable: false, + }) as unknown as DeckLayer, + ); + } + } + // --- HNS 대기확산 구역 (ScatterplotLayer, meters 단위) --- if (dispersionResult && incidentCoord) { const zones = dispersionResult.zones.map((zone, idx) => ({ @@ -452,24 +564,39 @@ export function MapView({ stroked: true, radiusUnits: 'meters' as const, pickable: true, - onClick: (info: PickingInfo) => { - if (info.object) { - const d = info.object as (typeof zones)[0] + autoHighlight: true, + onHover: (info: PickingInfo) => { + if (info.object && info.coordinate) { + const zoneAreas = zones.map(z => ({ + level: z.level, + area: Math.PI * z.radius * z.radius / 1e6, + })); + const totalArea = Math.PI * Math.max(...zones.map(z => z.radius)) ** 2 / 1e6; setPopupInfo({ - longitude: incidentCoord.lon, - latitude: incidentCoord.lat, + longitude: info.coordinate[0], + latitude: info.coordinate[1], content: ( -
- {d.level} -
- 물질: {dispersionResult.substance} -
- 농도: {dispersionResult.concentration[d.level]} -
- 반경: {d.radius}m +
+ {dispersionResult.substance} 대기확산 면적 + + + {zoneAreas.map(z => ( + + + + + ))} + + + + + +
{z.level}{z.area.toFixed(3)} km²
총 면적{totalArea.toFixed(3)} km²
), - }) + }); + } else if (!info.object) { + setPopupInfo(null); } }, }) @@ -601,7 +728,7 @@ export function MapView({ }, [ oilTrajectory, currentTime, selectedModels, boomLines, isDrawingBoom, drawingPoints, - dispersionResult, incidentCoord, backtrackReplay, + dispersionResult, dispersionHeatmap, incidentCoord, backtrackReplay, sensitiveResources, ]) @@ -621,9 +748,14 @@ export function MapView({ style={{ cursor: isSelectingLocation ? 'crosshair' : 'grab' }} onClick={handleMapClick} attributionControl={false} + preserveDrawingBuffer={true} > + {/* 지도 캡처 셋업 */} + {mapCaptureRef && } {/* 3D 모드 pitch 제어 */} + {/* 사고 지점 변경 시 지도 이동 */} + {/* WMS 레이어 */} {wmsLayers.map(layer => ( @@ -652,9 +784,10 @@ export function MapView({ {/* 사고 위치 마커 (MapLibre Marker) */} - {incidentCoord && !isNaN(incidentCoord.lat) && !isNaN(incidentCoord.lon) && ( + {incidentCoord && !isNaN(incidentCoord.lat) && !isNaN(incidentCoord.lon) && !(dispersionHeatmap && dispersionHeatmap.length > 0) && (
)} - {/* 사고 위치 팝업 (클릭 시) */} - {incidentCoord && !isNaN(incidentCoord.lat) && !isNaN(incidentCoord.lon) && !popupInfo && ( - -
- 사고 지점 -
- - {decimalToDMS(incidentCoord.lat, true)} -
- {decimalToDMS(incidentCoord.lon, false)} -
-
- - ({incidentCoord.lat.toFixed(4)}°, {incidentCoord.lon.toFixed(4)}°) - -
-
- )} - {/* deck.gl 객체 클릭 팝업 */} {popupInfo && ( 5", + "explosionRange": "1.0% ~ 5.0%", + "nfpa": { + "health": 0, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 액체 (Class 3)", + "ergNumber": "128", + "idlh": "— (미설정)", + "aegl2": "— (미설정)", + "erpg2": "— (미설정)", + "responseDistanceFire": "100m", + "responseDistanceSpillDay": "—", + "responseDistanceSpillNight": "—", + "marineResponse": "해수면 부유, 유흡착제 회수 가능", + "ppeClose": "레벨D: 작업복+안전안경", + "ppeFar": "레벨D: 작업복+안전안경", + "msds": { + "hazard": "인화성 액체 구분4, 흡인 유해성 구분1", + "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", + "fireFighting": "포말, CO₂, 건조분말", + "spillResponse": "오일펜스 설치, 유흡착제 회수", + "exposure": "TWA 5 mg/m³ (오일미스트)", + "regulation": "위험물안전관리법 제4류" + }, + "ibcHazard": "오염상의 위험성(P)", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "없음", + "ibcFireFighting": "포말", + "ibcMinRequirement": "IMO 3TYPE", + "emsCode": "F-E, S-E", + "emsFire": "고인화점 물질. 포말, CO₂, 건조분말로 소화.", + "emsSpill": "해수면 부유. 오일펜스·유흡착제로 회수.", + "emsFirstAid": "흡입: 신선한 공기. 피부: 비눗물 세척. 경구: 의료조치.", + "cargoCodes": [ + { + "code": "BASEOIL", + "name": "HYDRAULIC FLUID", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HYD", + "name": "HYDRAULIC OIL", + "company": "Shell", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "부산항", + "portCode": "KRPUS", + "lastImport": "2025-03-30", + "frequency": "높음" + }, + { + "port": "인천항", + "portCode": "KRINC", + "lastImport": "2025-03-28", + "frequency": "중간" + } + ] + }, + { + "id": 5, + "abbreviation": "XYLENE", + "nameKr": "자일렌", + "nameEn": "XYLENE (mixed isomers)", + "synonymsEn": "DIMETHYLBENZENE / XYLOL", + "synonymsKr": "크실렌 · 도료·용제 원료", + "unNumber": "1307", + "casNumber": "1330-20-7", + "transportMethod": "산적액체(3류)", + "sebc": "FE (Floater/Evaporator)", + "usage": "도료, 용제, PET 원료", + "state": "액체", + "color": "무색", + "odor": "달콤한 방향취", + "flashPoint": "27°C", + "autoIgnition": "463°C", + "boilingPoint": "138~144°C", + "density": "0.864", + "solubility": "0.02%", + "vaporPressure": "8.8 mmHg (25°C)", + "vaporDensity": "3.66", + "explosionRange": "1.0% ~ 7.0%", + "nfpa": { + "health": 2, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 액체 (Class 3)", + "ergNumber": "130", + "idlh": "900 ppm", + "aegl2": "920 ppm", + "erpg2": "200 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.1km", + "responseDistanceSpillNight": "0.3km", + "marineResponse": "해수면 부유+증발, 오일펜스 봉쇄 및 대기 모니터링", + "ppeClose": "레벨B: 비밀폐형 화학보호복+SCBA", + "ppeFar": "레벨C: 화학보호복+정화식호흡기", + "msds": { + "hazard": "인화성 액체 구분3, 급성 독성(흡입) 구분4, 피부 자극성 구분2", + "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", + "fireFighting": "알코올 내성 포말, CO₂, 건조분말", + "spillResponse": "오일펜스 설치, 흡착제 회수, 증기 억제 포말", + "exposure": "TWA 100 ppm, STEL 150 ppm", + "regulation": "위험물안전관리법 제4류" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "가연성가스검지기", + "ibcFireFighting": "내알코올 포말, 물분무", + "ibcMinRequirement": "IMO 2TYPE 이상", + "emsCode": "F-E, S-D", + "emsFire": "인화성 액체. 내알코올 포말, CO₂, 건조분말. 물분무로 냉각.", + "emsSpill": "해수면 부유+증발. 오일펜스 봉쇄 후 흡착제 회수.", + "emsFirstAid": "흡입: 신선한 공기 이동. 피부: 비눗물 세척. 눈: 15분 세안.", + "cargoCodes": [ + { + "code": "XYLENE", + "name": "XYLENE (mixed isomers)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MX", + "name": "MIXED XYLENE", + "company": "SK에너지", + "source": "용선자" + }, + { + "code": "PX", + "name": "PARA-XYLENE", + "company": "삼성토탈", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-02", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "대산항", + "portCode": "KRDAE", + "lastImport": "2025-03-20", + "frequency": "중간" + } + ] + }, + { + "id": 6, + "abbreviation": "MEOH", + "nameKr": "메탄올", + "nameEn": "METHANOL", + "synonymsEn": "METHYL ALCOHOL / WOOD ALCOHOL / CARBINOL", + "synonymsKr": "메틸알코올 · 석유화학 원료·연료", + "unNumber": "1230", + "casNumber": "67-56-1", + "transportMethod": "산적액체(3류)", + "sebc": "ED (Evaporator/Dissolver)", + "usage": "용제, 포르말린 원료, 연료", + "state": "액체", + "color": "무색", + "odor": "약한 알코올취", + "flashPoint": "11°C", + "autoIgnition": "464°C", + "boilingPoint": "64.7°C", + "density": "0.791", + "solubility": "완전 혼화", + "vaporPressure": "127 mmHg (25°C)", + "vaporDensity": "1.11", + "explosionRange": "6.0% ~ 36.5%", + "nfpa": { + "health": 1, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 액체 (Class 3), 독성", + "ergNumber": "131", + "idlh": "6,000 ppm", + "aegl2": "2,100 ppm", + "erpg2": "1,000 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.1km", + "responseDistanceSpillNight": "0.3km", + "marineResponse": "해수에 완전 용해 → 수질 오염 장기화", + "ppeClose": "레벨B: 비밀폐형 화학보호복+SCBA", + "ppeFar": "레벨C: 화학보호복+정화식호흡기", + "msds": { + "hazard": "인화성 액체 구분2, 급성 독성(경구) 구분3, 급성 독성(흡입) 구분3", + "firstAid": "흡입 시 신선한 공기, 경구 섭취 시 즉시 의료조치", + "fireFighting": "내알코올 포말, CO₂, 건조분말", + "spillResponse": "흡수제 회수, 해수 희석 방지", + "exposure": "TWA 200 ppm, STEL 250 ppm", + "regulation": "위험물안전관리법 제4류, 산업안전보건법" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "가연성가스검지기, 독성가스검지기", + "ibcFireFighting": "내알코올 포말", + "ibcMinRequirement": "IMO 2TYPE 이상", + "emsCode": "F-E, S-D", + "emsFire": "인화성 높음, 불꽃 보이지 않음 주의. 내알코올 포말 필수.", + "emsSpill": "해수에 완전 용해. 회수 불가. 확산 모니터링.", + "emsFirstAid": "경구: 즉시 의료조치(해독제: 에탄올/포메피졸). 흡입: 신선한 공기.", + "cargoCodes": [ + { + "code": "MEOH", + "name": "METHANOL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "METH", + "name": "METHANOL", + "company": "SABIC", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-02", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "인천항", + "portCode": "KRINC", + "lastImport": "2025-03-28", + "frequency": "중간" + }, + { + "port": "대산항", + "portCode": "KRDAE", + "lastImport": "2025-03-25", + "frequency": "중간" + } + ] + }, + { + "id": 7, + "abbreviation": "TOLU", + "nameKr": "톨루엔", + "nameEn": "TOLUENE", + "synonymsEn": "METHYLBENZENE / TOLUOL / PHENYLMETHANE", + "synonymsKr": "톨루올 · 석유화학 용제·TDI 원료", + "unNumber": "1294", + "casNumber": "108-88-3", + "transportMethod": "산적액체(3류)", + "sebc": "FE (Floater/Evaporator)", + "usage": "용제, TDI 원료, 석유화학", + "state": "액체", + "color": "무색", + "odor": "달콤한 방향취", + "flashPoint": "4°C", + "autoIgnition": "480°C", + "boilingPoint": "110.6°C", + "density": "0.867", + "solubility": "0.05%", + "vaporPressure": "28.4 mmHg (25°C)", + "vaporDensity": "3.14", + "explosionRange": "1.1% ~ 7.1%", + "nfpa": { + "health": 2, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 액체 (Class 3)", + "ergNumber": "130", + "idlh": "500 ppm", + "aegl2": "560 ppm", + "erpg2": "300 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.1km", + "responseDistanceSpillNight": "0.4km", + "marineResponse": "해수면 부유 → 증발. 오일펜스 봉쇄 + 대기 모니터링", + "ppeClose": "레벨B: 비밀폐형 화학보호복+SCBA", + "ppeFar": "레벨C: 화학보호복+정화식호흡기", + "msds": { + "hazard": "인화성 액체 구분2, 급성 독성(흡입) 구분4, 생식독성 구분2", + "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", + "fireFighting": "내알코올 포말, CO₂, 건조분말", + "spillResponse": "오일펜스 설치, 흡착제 회수", + "exposure": "TWA 50 ppm, STEL 150 ppm", + "regulation": "위험물안전관리법 제4류" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "가연성가스검지기", + "ibcFireFighting": "내알코올 포말, 물분무", + "ibcMinRequirement": "IMO 2TYPE 이상", + "emsCode": "F-E, S-D", + "emsFire": "인화성 높음. 내알코올 포말, CO₂. 물분무로 냉각.", + "emsSpill": "해수면 부유. 오일펜스 봉쇄 후 흡착제 회수.", + "emsFirstAid": "흡입: 신선한 공기. 피부: 비눗물. 눈: 15분 세안.", + "cargoCodes": [ + { + "code": "TOLU", + "name": "TOLUENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TOL", + "name": "TOLUENE", + "company": "SK에너지", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-02", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "대산항", + "portCode": "KRDAE", + "lastImport": "2025-03-25", + "frequency": "중간" + } + ] + }, + { + "id": 8, + "abbreviation": "NH3", + "nameKr": "암모니아", + "nameEn": "AMMONIA (anhydrous)", + "synonymsEn": "ANHYDROUS AMMONIA / REFRIGERANT R-717", + "synonymsKr": "암모니아 · 비료·냉매·화학원료", + "unNumber": "1005", + "casNumber": "7664-41-7", + "transportMethod": "산적액체(2류)", + "sebc": "GD (Gas/Dissolver)", + "usage": "비료, 냉매, 화학원료", + "state": "기체(액화)", + "color": "무색", + "odor": "강한 자극취", + "flashPoint": "— (불연)", + "autoIgnition": "651°C", + "boilingPoint": "-33.4°C", + "density": "0.73 (액체)", + "solubility": "31% (매우 높음)", + "vaporPressure": "8,585 mmHg (25°C)", + "vaporDensity": "0.59", + "explosionRange": "15.0% ~ 28.0%", + "nfpa": { + "health": 3, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "독성 가스 (Class 2.3), 부식성", + "ergNumber": "125", + "idlh": "300 ppm", + "aegl2": "160 ppm", + "erpg2": "150 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.5km", + "responseDistanceSpillNight": "2.0km", + "marineResponse": "기화 → 독성 가스운 형성. 수중 독성도 높음", + "ppeClose": "레벨A: 완전밀폐 화학보호복+SCBA", + "ppeFar": "레벨B: 비밀폐형+SCBA", + "msds": { + "hazard": "급성 독성(흡입) 구분3, 피부 부식성 구분1A, 심한 눈 손상 구분1", + "firstAid": "흡입 시 신선한 공기, 피부 부식 시 다량의 물로 세척", + "fireFighting": "물분무(냉각), 건조분말", + "spillResponse": "물분무로 가스운 제어, 환기 확보", + "exposure": "TWA 25 ppm, STEL 35 ppm", + "regulation": "고압가스안전관리법, 산업안전보건법, 화학물질관리법" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F), 독성(T)", + "ibcShipType": "IMO 1TYPE", + "ibcTankType": "1PG (독립형가압탱크)", + "ibcDetection": "독성가스검지기, 가연성가스검지기", + "ibcFireFighting": "물분무, 건조분말", + "ibcMinRequirement": "IMO 1TYPE, 가압탱크, 독성가스 방호설비", + "emsCode": "F-C, S-U", + "emsFire": "가연성은 낮으나 폭발범위 내에서 점화 가능. 물분무로 냉각. 독성 가스 확산 주의.", + "emsSpill": "기화 가스 → 풍하측 대피. 물분무로 가스운 억제. 해수 접촉 시 수중 독성 확산.", + "emsFirstAid": "흡입: 즉시 신선한 공기. 피부: 다량의 물. 눈: 15분 이상 세안. 호흡곤란 시 산소.", + "cargoCodes": [ + { + "code": "NH3", + "name": "AMMONIA (anhydrous)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AMM", + "name": "AMMONIA", + "company": "남해화학", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-03-28", + "frequency": "중간" + }, + { + "port": "평택항", + "portCode": "KRPTK", + "lastImport": "2025-03-20", + "frequency": "낮음" + } + ] + }, + { + "id": 9, + "abbreviation": "BENZ", + "nameKr": "벤젠", + "nameEn": "BENZENE", + "synonymsEn": "BENZOL / CYCLOHEXATRIENE / PHENYL HYDRIDE", + "synonymsKr": "벤졸 · 석유화학 기초원료", + "unNumber": "1114", + "casNumber": "71-43-2", + "transportMethod": "산적액체(3류)", + "sebc": "FE (Floater/Evaporator)", + "usage": "석유화학 기초원료, 합성수지", + "state": "액체", + "color": "무색", + "odor": "달콤한 방향취", + "flashPoint": "-11°C", + "autoIgnition": "498°C", + "boilingPoint": "80°C", + "density": "0.879", + "solubility": "0.18%", + "vaporPressure": "94.8 mmHg (25°C)", + "vaporDensity": "2.77", + "explosionRange": "1.2% ~ 7.8%", + "nfpa": { + "health": 2, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 액체 (Class 3), 발암성", + "ergNumber": "130", + "idlh": "500 ppm", + "aegl2": "800 ppm", + "erpg2": "150 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.1km", + "responseDistanceSpillNight": "0.3km", + "marineResponse": "해수면 부유+증발, 오일펜스 봉쇄", + "ppeClose": "레벨B: 비밀폐형+SCBA", + "ppeFar": "레벨C: 화학보호복+정화식호흡기", + "msds": { + "hazard": "인화성 액체 구분2, 발암성 구분1A, 급성 독성(흡입) 구분3", + "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", + "fireFighting": "내알코올 포말, CO₂, 건조분말", + "spillResponse": "오일펜스 설치, 흡착제 회수, 환기", + "exposure": "TWA 1 ppm, STEL 5 ppm", + "regulation": "위험물안전관리법 제4류, 산업안전보건법(발암물질)" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "가연성가스검지기", + "ibcFireFighting": "내알코올 포말", + "ibcMinRequirement": "IMO 2TYPE 이상", + "emsCode": "F-E, S-D", + "emsFire": "인화성 높음(인화점 -11°C). 내알코올 포말, CO₂, 건조분말.", + "emsSpill": "해수면 부유. 오일펜스 봉쇄 후 흡착제 회수. 발암물질 주의.", + "emsFirstAid": "흡입: 신선한 공기. 피부: 비눗물 세척. 발암성 주의 — 노출 기록 보관.", + "cargoCodes": [ + { + "code": "BENZ", + "name": "BENZENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BZ", + "name": "BENZENE", + "company": "SK에너지", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-02", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-03-30", + "frequency": "높음" + } + ] + }, + { + "id": 10, + "abbreviation": "CL2", + "nameKr": "염소", + "nameEn": "CHLORINE", + "synonymsEn": "MOLECULAR CHLORINE / BERTHOLITE", + "synonymsKr": "염소가스 · 수처리·화학공업", + "unNumber": "1017", + "casNumber": "7782-50-5", + "transportMethod": "산적액체(2류)", + "sebc": "G (Gas)", + "usage": "수처리, 화학공업, 소독", + "state": "기체(액화)", + "color": "황록색", + "odor": "강한 자극취", + "flashPoint": "— (불연)", + "autoIgnition": "— (불연)", + "boilingPoint": "-34°C", + "density": "1.56 (액체)", + "solubility": "0.7%", + "vaporPressure": "6,627 mmHg (25°C)", + "vaporDensity": "2.49", + "explosionRange": "—", + "nfpa": { + "health": 3, + "fire": 0, + "reactivity": 0, + "special": "OX" + }, + "hazardClass": "독성 가스 (Class 2.3), 부식성, 산화성", + "ergNumber": "124", + "idlh": "10 ppm", + "aegl2": "2 ppm", + "erpg2": "3 ppm", + "responseDistanceFire": "800m (주변 화재 시)", + "responseDistanceSpillDay": "1.0km", + "responseDistanceSpillNight": "3.5km", + "marineResponse": "기화 → 해수면 체류(무거움). 독성 가스운 형성", + "ppeClose": "레벨A: 완전밀폐+SCBA 필수", + "ppeFar": "레벨B: 비밀폐형+SCBA", + "msds": { + "hazard": "급성 독성(흡입) 구분2, 피부 부식성 구분1A, 수생환경 유해성 구분1", + "firstAid": "흡입 시 즉시 신선한 공기, 호흡정지 시 인공호흡", + "fireFighting": "물분무(냉각), 주변 소화", + "spillResponse": "풍하측 대피, 물분무로 가스운 억제", + "exposure": "TWA 0.5 ppm, STEL 1 ppm", + "regulation": "고압가스안전관리법, 화학물질관리법(사고대비물질)" + }, + "ibcHazard": "안전상의 위험성(S), 독성(T), 부식성(C)", + "ibcShipType": "IMO 1TYPE", + "ibcTankType": "1PG (독립형가압탱크)", + "ibcDetection": "독성가스검지기(필수)", + "ibcFireFighting": "물분무(냉각)", + "ibcMinRequirement": "IMO 1TYPE, 독성가스 방호장비 필수", + "emsCode": "F-C, S-R", + "emsFire": "비가연성이나 산화성. 주변 화재 시 탱크 냉각 필수. 독성가스 확산 주의.", + "emsSpill": "공기보다 무거움 → 저지대 체류. 물분무로 가스운 억제. 풍하측 대피.", + "emsFirstAid": "흡입: 즉시 대피, 산소 공급. IDLH 10ppm 극히 낮음 — 미량에도 위험.", + "cargoCodes": [ + { + "code": "CL2", + "name": "CHLORINE", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-03-15", + "frequency": "낮음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-02-28", + "frequency": "낮음" + } + ] + }, + { + "id": 11, + "abbreviation": "H2", + "nameKr": "수소", + "nameEn": "HYDROGEN", + "synonymsEn": "COMPRESSED HYDROGEN / LIQUID HYDROGEN", + "synonymsKr": "수소 · 연료전지·정유·반도체", + "unNumber": "1049", + "casNumber": "1333-74-0", + "transportMethod": "산적액체(2류)", + "sebc": "G (Gas)", + "usage": "연료전지, 정유, 반도체", + "state": "기체(액화)", + "color": "무색", + "odor": "무취", + "flashPoint": "— (불연: 자동점화)", + "autoIgnition": "500°C", + "boilingPoint": "-252.9°C", + "density": "0.07 (기체)", + "solubility": "0.0016%", + "vaporPressure": "— (극고압)", + "vaporDensity": "0.07", + "explosionRange": "4.0% ~ 75.0%", + "nfpa": { + "health": 0, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 가스 (Class 2.1)", + "ergNumber": "115", + "idlh": "— (단순질식)", + "aegl2": "—", + "erpg2": "—", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.1km", + "responseDistanceSpillNight": "0.3km", + "marineResponse": "급속 상승 확산, BLEVE 위험(액화수소)", + "ppeClose": "레벨B: 비밀폐형+SCBA", + "ppeFar": "레벨D: 작업복(환기 확보 시)", + "msds": { + "hazard": "인화성 가스 구분1, 가압가스(압축/액화)", + "firstAid": "질식: 산소 공급, 동상(액화): 미온수 해동", + "fireFighting": "건조분말, CO₂, 물분무(냉각)", + "spillResponse": "점화원 제거, 환기, 가스검지기", + "exposure": "TWA 없음 (단순 질식제)", + "regulation": "고압가스안전관리법" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F)", + "ibcShipType": "IMO 1TYPE (특수)", + "ibcTankType": "1PG (독립형가압탱크/극저온)", + "ibcDetection": "가연성가스검지기(필수)", + "ibcFireFighting": "건조분말, CO₂", + "ibcMinRequirement": "IMO 1TYPE, 극저온 설비, 방폭구역", + "emsCode": "F-D, S-U", + "emsFire": "폭발범위 극히 넓음(4~75%). 물분무로 냉각. 누출 시 점화원 완전 제거.", + "emsSpill": "급속 상승 확산. 밀폐공간 축적 → 폭발 위험. 환기 확보.", + "emsFirstAid": "질식: 산소 공급. 동상(액화수소): 미온수로 서서히 해동.", + "cargoCodes": [ + { + "code": "H2", + "name": "HYDROGEN", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LH2", + "name": "LIQUID HYDROGEN", + "company": "수소선사", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "인천항", + "portCode": "KRINC", + "lastImport": "2025-03-20", + "frequency": "낮음" + }, + { + "port": "평택항", + "portCode": "KRPTK", + "lastImport": "2025-02-15", + "frequency": "낮음" + } + ] + }, + { + "id": 12, + "abbreviation": "LPG", + "nameKr": "LPG (프로판/부탄)", + "nameEn": "LPG (PROPANE/BUTANE)", + "synonymsEn": "LIQUEFIED PETROLEUM GAS / PROPANE / N-BUTANE", + "synonymsKr": "LPG · 연료·석유화학 원료", + "unNumber": "1075", + "casNumber": "68476-85-7", + "transportMethod": "산적액체(2류)", + "sebc": "G (Gas)", + "usage": "연료, 석유화학 원료", + "state": "기체(액화)", + "color": "무색", + "odor": "무취(부취제 첨가)", + "flashPoint": "-104°C", + "autoIgnition": "450°C", + "boilingPoint": "-42°C (프로판)", + "density": "0.50 (액체)", + "solubility": "0.01%", + "vaporPressure": "8,460 mmHg (25°C)", + "vaporDensity": "1.52", + "explosionRange": "2.1% ~ 9.5%", + "nfpa": { + "health": 1, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 가스 (Class 2.1)", + "ergNumber": "115", + "idlh": "2,100 ppm", + "aegl2": "17,000 ppm", + "erpg2": "—", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.3km", + "responseDistanceSpillNight": "1.1km", + "marineResponse": "기화 → 공기보다 무거움 → 해수면 체류 → 폭발 위험", + "ppeClose": "레벨B: 비밀폐형+SCBA", + "ppeFar": "레벨C: 화학보호복+정화식호흡기", + "msds": { + "hazard": "인화성 가스 구분1, 가압가스(액화)", + "firstAid": "질식: 산소 공급, 동상: 미온수 해동", + "fireFighting": "건조분말, CO₂, 물분무(냉각)", + "spillResponse": "점화원 제거, 환기, 가스검지기", + "exposure": "TWA 1,000 ppm", + "regulation": "고압가스안전관리법, 액화석유가스법" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2PG (독립형가압탱크)", + "ibcDetection": "가연성가스검지기", + "ibcFireFighting": "건조분말, CO₂", + "ibcMinRequirement": "IMO 2TYPE 이상, 가압설비", + "emsCode": "F-D, S-U", + "emsFire": "인화성 극히 높음. 건조분말, CO₂. BLEVE 위험 → 안전거리 확보.", + "emsSpill": "증기 공기보다 무거움 → 저지대 축적. 점화원 완전 제거.", + "emsFirstAid": "질식: 산소 공급. 동상: 미온수. 화상: 냉수 냉각.", + "cargoCodes": [ + { + "code": "LPG", + "name": "LPG (PROPANE/BUTANE)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PROP", + "name": "PROPANE", + "company": "E1", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "인천항", + "portCode": "KRINC", + "lastImport": "2025-04-02", + "frequency": "높음" + }, + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-03-30", + "frequency": "중간" + } + ] + }, + { + "id": 13, + "abbreviation": "EDC", + "nameKr": "1,2-디클로로에탄", + "nameEn": "1,2-DICHLOROETHANE", + "synonymsEn": "ETHYLENE DICHLORIDE / EDC / 1,2-DCE", + "synonymsKr": "에틸렌디클로라이드 · PVC 원료", + "unNumber": "1184", + "casNumber": "107-06-2", + "transportMethod": "산적액체(3류)", + "sebc": "S (Sinker)", + "usage": "PVC 원료, 용제", + "state": "액체", + "color": "무색", + "odor": "달콤한 에테르취", + "flashPoint": "13°C", + "autoIgnition": "413°C", + "boilingPoint": "83°C", + "density": "1.253", + "solubility": "0.87%", + "vaporPressure": "87 mmHg (25°C)", + "vaporDensity": "3.42", + "explosionRange": "6.2% ~ 16.0%", + "nfpa": { + "health": 2, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 액체 (Class 3), 독성", + "ergNumber": "131", + "idlh": "50 ppm", + "aegl2": "20 ppm", + "erpg2": "100 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.3km", + "responseDistanceSpillNight": "1.0km", + "marineResponse": "비중>1 → 침강. 저층 오염. 수중 모니터링 필수", + "ppeClose": "레벨A: 완전밀폐+SCBA", + "ppeFar": "레벨B: 비밀폐형+SCBA", + "msds": { + "hazard": "인화성 액체 구분2, 발암성 구분1B, 급성 독성(흡입) 구분3", + "firstAid": "흡입 시 신선한 공기, 피부접촉 시 다량의 물", + "fireFighting": "내알코올 포말, CO₂, 건조분말", + "spillResponse": "흡수제 회수, 배수구 차단, 수중 모니터링", + "exposure": "TWA 10 ppm, STEL 없음", + "regulation": "위험물안전관리법 제4류, 산업안전보건법(발암물질)" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F), 독성(T)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "독성가스검지기, 가연성가스검지기", + "ibcFireFighting": "내알코올 포말", + "ibcMinRequirement": "IMO 2TYPE 이상", + "emsCode": "F-E, S-D", + "emsFire": "인화성 높음. 내알코올 포말, CO₂. 발암물질 — 노출 최소화.", + "emsSpill": "비중>1 → 해저 침강. 저층 오염 모니터링. 수중 회수 필요.", + "emsFirstAid": "흡입: 신선한 공기. 피부: 다량의 물. 발암성 주의.", + "cargoCodes": [ + { + "code": "EDC", + "name": "1,2-DICHLOROETHANE", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-03-25", + "frequency": "중간" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-03-20", + "frequency": "중간" + } + ] + }, + { + "id": 14, + "abbreviation": "ACET", + "nameKr": "아세톤", + "nameEn": "ACETONE", + "synonymsEn": "DIMETHYL KETONE / 2-PROPANONE / PROPAN-2-ONE", + "synonymsKr": "디메틸케톤 · 용제·세정제", + "unNumber": "1090", + "casNumber": "67-64-1", + "transportMethod": "산적액체(3류)", + "sebc": "ED (Evaporator/Dissolver)", + "usage": "용제, 세정제, 화학원료", + "state": "액체", + "color": "무색", + "odor": "달콤한 과일향", + "flashPoint": "-20°C", + "autoIgnition": "465°C", + "boilingPoint": "56°C", + "density": "0.784", + "solubility": "완전 혼화", + "vaporPressure": "231 mmHg (25°C)", + "vaporDensity": "2.0", + "explosionRange": "2.5% ~ 12.8%", + "nfpa": { + "health": 1, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성 액체 (Class 3)", + "ergNumber": "127", + "idlh": "2,500 ppm", + "aegl2": "3,200 ppm", + "erpg2": "—", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.1km", + "responseDistanceSpillNight": "0.2km", + "marineResponse": "해수에 완전 용해 + 급속 증발", + "ppeClose": "레벨B: 비밀폐형+SCBA", + "ppeFar": "레벨C: 화학보호복+정화식호흡기", + "msds": { + "hazard": "인화성 액체 구분2, 특정표적장기독성(단회) 구분3", + "firstAid": "흡입 시 신선한 공기, 피부접촉 시 물 세척", + "fireFighting": "내알코올 포말, CO₂, 건조분말", + "spillResponse": "흡수제 회수, 환기, 점화원 제거", + "exposure": "TWA 500 ppm, STEL 750 ppm", + "regulation": "위험물안전관리법 제4류" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "가연성가스검지기", + "ibcFireFighting": "내알코올 포말", + "ibcMinRequirement": "IMO 2TYPE 이상", + "emsCode": "F-E, S-D", + "emsFire": "인화성 높음(인화점 -20°C). 내알코올 포말 필수.", + "emsSpill": "해수에 완전 용해 + 급속 증발. 수질 모니터링.", + "emsFirstAid": "흡입: 신선한 공기. 피부: 물 세척. 경구: 의료조치.", + "cargoCodes": [ + { + "code": "ACET", + "name": "ACETONE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ACE", + "name": "ACETONE", + "company": "금호미쓰이", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-03-28", + "frequency": "중간" + } + ] + }, + { + "id": 15, + "abbreviation": "PHENOL", + "nameKr": "페놀", + "nameEn": "PHENOL", + "synonymsEn": "CARBOLIC ACID / HYDROXYBENZENE / PHENIC ACID", + "synonymsKr": "석탄산 · 합성수지 원료·소독제", + "unNumber": "2312", + "casNumber": "108-95-2", + "transportMethod": "산적액체(6.1류)", + "sebc": "SD (Sinker/Dissolver)", + "usage": "합성수지(BPA), 소독제", + "state": "결정(고체)/액체(용융)", + "color": "무색~연분홍", + "odor": "독특한 약품취", + "flashPoint": "79°C", + "autoIgnition": "715°C", + "boilingPoint": "181.7°C", + "density": "1.07", + "solubility": "84 g/L", + "vaporPressure": "0.36 mmHg (25°C)", + "vaporDensity": "3.24", + "explosionRange": "1.8% ~ 8.6%", + "nfpa": { + "health": 4, + "fire": 2, + "reactivity": 0, + "special": "" + }, + "hazardClass": "독성 액체 (Class 6.1), 부식성", + "ergNumber": "153", + "idlh": "250 ppm", + "aegl2": "29 ppm", + "erpg2": "50 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.2km", + "responseDistanceSpillNight": "0.8km", + "marineResponse": "비중 1.07 → Sinker. 저층 축적. 수중 독성 높음", + "ppeClose": "레벨A: 완전밀폐+SCBA", + "ppeFar": "레벨B: 비밀폐형+SCBA", + "msds": { + "hazard": "급성 독성(경구) 구분3, 급성 독성(경피) 구분3, 피부 부식성 구분1A", + "firstAid": "피부: 즉시 PEG(폴리에틸렌글리콜)로 세척, 물 사용 시 다량", + "fireFighting": "물분무, 내알코올 포말, CO₂", + "spillResponse": "흡수제 회수, 저층 오염 모니터링", + "exposure": "TWA 5 ppm, STEL 없음", + "regulation": "위험물안전관리법, 화학물질관리법(사고대비물질)" + }, + "ibcHazard": "안전상의 위험성(S), 독성(T), 부식성(C)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "독성가스검지기", + "ibcFireFighting": "물분무, 내알코올 포말", + "ibcMinRequirement": "IMO 2TYPE 이상, 가열설비(융점 41°C)", + "emsCode": "F-A, S-A", + "emsFire": "가연성. 물분무, 내알코올 포말. 독성 연소 가스 주의.", + "emsSpill": "비중>1 → 침강. 용해성 있어 수질 오염. 저층 모니터링 필수.", + "emsFirstAid": "피부: PEG 400 세척 → 다량의 물. 흡입: 신선한 공기. 경피 독성 높음.", + "cargoCodes": [ + { + "code": "PHENOL", + "name": "PHENOL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PHE", + "name": "PHENOL (MOLTEN)", + "company": "금호미쓰이", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-03-30", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-03-20", + "frequency": "중간" + } + ] + }, + { + "id": 16, + "abbreviation": "ETHAN", + "nameKr": "에틸렌", + "nameEn": "ETHYLENE", + "synonymsEn": "ETHENE / OLEFIANT GAS", + "synonymsKr": "에텐 · 석유화학 기초원료", + "unNumber": "1962", + "casNumber": "74-85-1", + "transportMethod": "산적액체(2류)", + "sebc": "G (Gas)", + "usage": "PE, EO 원료, 석유화학 기초", + "state": "기체", + "color": "무색", + "odor": "약간 달콤한 취", + "flashPoint": "—", + "autoIgnition": "490°C", + "boilingPoint": "-103.7°C", + "density": "0.57 (액체)", + "solubility": "0.01%", + "vaporPressure": "— (극고압)", + "vaporDensity": "0.97", + "explosionRange": "2.7% ~ 36.0%", + "nfpa": { + "health": 1, + "fire": 4, + "reactivity": 2, + "special": "" + }, + "hazardClass": "인화성 가스 (Class 2.1)", + "ergNumber": "116P", + "idlh": "— (단순질식)", + "aegl2": "—", + "erpg2": "—", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.3km", + "responseDistanceSpillNight": "1.1km", + "marineResponse": "기체 확산, 폭발범위 넓음, 해상수거 불가", + "ppeClose": "레벨B: 비밀폐형+SCBA", + "ppeFar": "레벨D: 작업복(환기 확보 시)", + "msds": { + "hazard": "인화성 가스 구분1", + "firstAid": "질식: 산소 공급", + "fireFighting": "건조분말, CO₂", + "spillResponse": "점화원 제거, 환기", + "exposure": "TWA 없음", + "regulation": "고압가스안전관리법" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2PG (독립형가압탱크)", + "ibcDetection": "가연성가스검지기", + "ibcFireFighting": "건조분말, CO₂", + "ibcMinRequirement": "IMO 2TYPE, 냉각설비", + "emsCode": "F-D, S-U", + "emsFire": "인화성 극히 높음, 폭발범위 넓음. 건조분말, CO₂.", + "emsSpill": "기체 확산. 점화원 제거. 환기.", + "emsFirstAid": "질식: 산소 공급.", + "cargoCodes": [ + { + "code": "ETHAN", + "name": "ETHYLENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ETH", + "name": "ETHYLENE", + "company": "LG화학", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-02", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-04-01", + "frequency": "높음" + } + ] + }, + { + "id": 17, + "abbreviation": "H2SO4", + "nameKr": "황산", + "nameEn": "SULPHURIC ACID", + "synonymsEn": "SULFURIC ACID / OIL OF VITRIOL / BATTERY ACID", + "synonymsKr": "유산 · 비료·제철·석유정제", + "unNumber": "1830", + "casNumber": "7664-93-9", + "transportMethod": "산적액체(8류)", + "sebc": "SD (Sinker/Dissolver)", + "usage": "비료, 제철, 석유정제", + "state": "점성 액체", + "color": "무색~황색", + "odor": "무취(순수)~자극취(농축)", + "flashPoint": "— (불연)", + "autoIgnition": "— (불연)", + "boilingPoint": "337°C", + "density": "1.84", + "solubility": "완전 혼화", + "vaporPressure": "0.001 mmHg", + "vaporDensity": "3.4", + "explosionRange": "—", + "nfpa": { + "health": 3, + "fire": 0, + "reactivity": 2, + "special": "W" + }, + "hazardClass": "부식성 (Class 8)", + "ergNumber": "137", + "idlh": "15 mg/m³", + "aegl2": "0.43 ppm", + "erpg2": "10 mg/m³", + "responseDistanceFire": "500m (주변 화재)", + "responseDistanceSpillDay": "0.3km", + "responseDistanceSpillNight": "1.0km", + "marineResponse": "비중 1.84 → 즉시 침강. 해수 반응 시 발열·미스트", + "ppeClose": "레벨A: 완전밀폐+SCBA", + "ppeFar": "레벨B: 비밀폐형+SCBA", + "msds": { + "hazard": "피부 부식성 구분1A, 심한 눈 손상 구분1", + "firstAid": "피부: 즉시 다량의 물로 15분 이상 세척. 눈: 세안 15분 이상", + "fireFighting": "물분무(희석 주의), 건조분말", + "spillResponse": "중화제(석회, 소다회), 배수구 차단", + "exposure": "TWA 0.2 mg/m³", + "regulation": "위험물안전관리법, 화학물질관리법(사고대비물질)" + }, + "ibcHazard": "부식성(C), 반응성(R)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (내식재료)", + "ibcDetection": "없음", + "ibcFireFighting": "물분무", + "ibcMinRequirement": "IMO 2TYPE, 내산 탱크코팅", + "emsCode": "F-A, S-B", + "emsFire": "비가연. 주변 화재 시 독성 SO₃ 미스트 발생. 물분무로 냉각.", + "emsSpill": "비중 1.84 → 즉시 침강. 물 접촉 시 발열 주의. 중화제 사용.", + "emsFirstAid": "피부: 즉시 다량의 물 15분. 눈: 세안 15분. 경구: 물·우유.", + "cargoCodes": [ + { + "code": "H2SO4", + "name": "SULPHURIC ACID", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SA", + "name": "SULFURIC ACID", + "company": "롯데정밀화학", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-02", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "인천항", + "portCode": "KRINC", + "lastImport": "2025-03-28", + "frequency": "높음" + } + ] + }, + { + "id": 18, + "abbreviation": "NaOH", + "nameKr": "가성소다", + "nameEn": "SODIUM HYDROXIDE SOLUTION", + "synonymsEn": "CAUSTIC SODA / LYE / SODA LYE", + "synonymsKr": "수산화나트륨 · 화학공업·수처리", + "unNumber": "1824", + "casNumber": "1310-73-2", + "transportMethod": "산적액체(8류)", + "sebc": "D (Dissolver)", + "usage": "화학공업, 수처리, 세제", + "state": "액체(수용액)", + "color": "무색~약간 혼탁", + "odor": "무취", + "flashPoint": "— (불연)", + "autoIgnition": "— (불연)", + "boilingPoint": "140°C (50% 용액)", + "density": "1.52 (50% 용액)", + "solubility": "완전 혼화", + "vaporPressure": "0 mmHg (실온)", + "vaporDensity": "—", + "explosionRange": "—", + "nfpa": { + "health": 3, + "fire": 0, + "reactivity": 1, + "special": "" + }, + "hazardClass": "부식성 (Class 8)", + "ergNumber": "154", + "idlh": "10 mg/m³", + "aegl2": "—", + "erpg2": "5 mg/m³", + "responseDistanceFire": "—", + "responseDistanceSpillDay": "0.1km", + "responseDistanceSpillNight": "0.3km", + "marineResponse": "해수에 용해, pH 변화 → 해양생태계 영향", + "ppeClose": "레벨B: 비밀폐형+SCBA", + "ppeFar": "레벨C: 화학보호복+정화식호흡기", + "msds": { + "hazard": "피부 부식성 구분1A, 심한 눈 손상 구분1", + "firstAid": "피부: 다량의 물로 15분 세척. 눈: 즉시 세안 15분 이상", + "fireFighting": "비가연, 주변 소화", + "spillResponse": "중화제(산성용액), 배수구 차단", + "exposure": "TWA 2 mg/m³", + "regulation": "위험물안전관리법, 화학물질관리법" + }, + "ibcHazard": "부식성(C)", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G (내식재료)", + "ibcDetection": "없음", + "ibcFireFighting": "해당없음", + "ibcMinRequirement": "IMO 3TYPE, 내알칼리 탱크코팅", + "emsCode": "F-A, S-B", + "emsFire": "비가연. 주변 화재 시 냉각 주수.", + "emsSpill": "해수에 용해. pH 변화 모니터링. 중화제 사용.", + "emsFirstAid": "피부: 다량의 물 15분. 눈: 즉시 세안.", + "cargoCodes": [ + { + "code": "NaOH", + "name": "SODIUM HYDROXIDE SOLUTION", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CSL", + "name": "CAUSTIC SODA LIQUID", + "company": "OCI", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "인천항", + "portCode": "KRINC", + "lastImport": "2025-03-30", + "frequency": "높음" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-03-28", + "frequency": "중간" + } + ] + }, + { + "id": 19, + "abbreviation": "AAN", + "nameKr": "아크릴로니트릴", + "nameEn": "ACRYLONITRILE", + "synonymsEn": "VINYL CYANIDE / PROPENENITRILE / CYANOETHYLENE", + "synonymsKr": "시안화비닐 · 아크릴섬유·ABS 원료", + "unNumber": "1093", + "casNumber": "107-13-1", + "transportMethod": "산적액체(3류)", + "sebc": "ED (Evaporator/Dissolver)", + "usage": "아크릴섬유, ABS, NBR 원료", + "state": "액체", + "color": "무색", + "odor": "양파/마늘취", + "flashPoint": "0°C", + "autoIgnition": "481°C", + "boilingPoint": "77°C", + "density": "0.806", + "solubility": "7.3%", + "vaporPressure": "109 mmHg (25°C)", + "vaporDensity": "1.83", + "explosionRange": "3.0% ~ 17.0%", + "nfpa": { + "health": 4, + "fire": 3, + "reactivity": 2, + "special": "" + }, + "hazardClass": "인화성 액체 (Class 3), 독성", + "ergNumber": "131P", + "idlh": "85 ppm", + "aegl2": "10 ppm", + "erpg2": "35 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.5km", + "responseDistanceSpillNight": "2.0km", + "marineResponse": "부분 용해 + 증발. 독성 높음", + "ppeClose": "레벨A: 완전밀폐+SCBA", + "ppeFar": "레벨B: 비밀폐형+SCBA", + "msds": { + "hazard": "인화성 액체 구분2, 급성 독성(흡입) 구분2, 발암성 구분2", + "firstAid": "흡입: 즉시 신선한 공기. 피부: 오염의복 제거, 다량의 물", + "fireFighting": "내알코올 포말, CO₂, 건조분말", + "spillResponse": "흡수제 회수, 환기, 독성가스 경보", + "exposure": "TWA 2 ppm, STEL 없음", + "regulation": "위험물안전관리법, 화학물질관리법(사고대비물질), 산업안전보건법(발암물질)" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F), 독성(T)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G (일체형탱크)", + "ibcDetection": "독성가스검지기, 가연성가스검지기", + "ibcFireFighting": "내알코올 포말", + "ibcMinRequirement": "IMO 2TYPE 이상, 억제제 첨가", + "emsCode": "F-E, S-D", + "emsFire": "인화성 높음. 독성가스 발생 주의. 내알코올 포말, CO₂.", + "emsSpill": "부분 용해 + 증발. 독성 높음 — 풍하측 대피. 흡수제 회수.", + "emsFirstAid": "흡입: 즉시 대피. 시안화물 중독 우려 — 해독제 준비.", + "cargoCodes": [ + { + "code": "AAN", + "name": "ACRYLONITRILE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AN", + "name": "ACRYLONITRILE", + "company": "LG화학", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-03-28", + "frequency": "중간" + }, + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-03-15", + "frequency": "낮음" + } + ] + }, + { + "id": 20, + "abbreviation": "VCM", + "nameKr": "염화비닐", + "nameEn": "VINYL CHLORIDE", + "synonymsEn": "CHLOROETHYLENE / CHLOROETHENE / VCM", + "synonymsKr": "모노머 · PVC 원료", + "unNumber": "1086", + "casNumber": "75-01-4", + "transportMethod": "산적액체(2류)", + "sebc": "G (Gas)", + "usage": "PVC 원료", + "state": "기체(액화)", + "color": "무색", + "odor": "달콤한 에테르취", + "flashPoint": "-78°C", + "autoIgnition": "472°C", + "boilingPoint": "-13°C", + "density": "0.91 (액체)", + "solubility": "0.11%", + "vaporPressure": "3,000 mmHg (25°C)", + "vaporDensity": "2.15", + "explosionRange": "3.6% ~ 33.0%", + "nfpa": { + "health": 2, + "fire": 4, + "reactivity": 1, + "special": "" + }, + "hazardClass": "인화성 가스 (Class 2.1), 발암성", + "ergNumber": "116P", + "idlh": "-", + "aegl2": "140 ppm", + "erpg2": "500 ppm", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "0.3km", + "responseDistanceSpillNight": "1.2km", + "marineResponse": "기화 확산. 발암물질 — 노출 최소화", + "ppeClose": "레벨A: 완전밀폐+SCBA", + "ppeFar": "레벨B: 비밀폐형+SCBA", + "msds": { + "hazard": "인화성 가스 구분1, 발암성 구분1A", + "firstAid": "흡입: 즉시 신선한 공기. 호흡곤란 시 산소", + "fireFighting": "건조분말, CO₂, 물분무(냉각)", + "spillResponse": "환기, 점화원 제거, 가스검지기", + "exposure": "TWA 1 ppm", + "regulation": "고압가스안전관리법, 산업안전보건법(발암물질)" + }, + "ibcHazard": "안전상의 위험성(S), 인화성(F), 독성(T)", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2PG (독립형가압탱크)", + "ibcDetection": "가연성가스검지기, 독성가스검지기", + "ibcFireFighting": "건조분말, CO₂", + "ibcMinRequirement": "IMO 2TYPE, 억제제, 냉각설비", + "emsCode": "F-D, S-U", + "emsFire": "인화성 극히 높음. 건조분말, CO₂. 발암물질 → 노출 최소화.", + "emsSpill": "기화 확산. 점화원 제거. 풍하측 대피.", + "emsFirstAid": "흡입: 즉시 신선한 공기. 발암물질 — 노출 기록 보관.", + "cargoCodes": [ + { + "code": "VCM", + "name": "VINYL CHLORIDE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VC", + "name": "VINYL CHLORIDE MONOMER", + "company": "한화솔루션", + "source": "용선자" + } + ], + "portFrequency": [ + { + "port": "여수항", + "portCode": "KRYOS", + "lastImport": "2025-04-01", + "frequency": "높음" + }, + { + "port": "울산항", + "portCode": "KRULS", + "lastImport": "2025-03-28", + "frequency": "중간" + } + ] + }, + { + "id": 21, + "abbreviation": "BTDN", + "nameKr": "1.3부타디엔", + "nameEn": "1-3 BUTADIENE", + "synonymsEn": "1-3 BUTADIENE / BUTADIENE / BUTADIEN / 1.3-BUTADIENE / BUTADIEEN / PYROLYLENE / 1.3-BUTADINE / DIVINYL / BUDIENE / BIVINYL / ERYTHRENE", + "synonymsKr": "1.3부타디엔 / 뷰타다이엔 / 부타이엔 / 1.3-뷰타다이엔", + "unNumber": "1010", + "casNumber": "106-99-0", + "transportMethod": "", + "sebc": "", + "usage": "합성고무(특히 타이어의 주요원료)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BTDN", + "name": "1-3 BUTADIENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 22, + "abbreviation": "150BS", + "nameKr": "베이스오일", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "자동차용, 선업용, 선박용 윤활유 및 그리스 (GS칼텍스 제품)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "150BS", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 23, + "abbreviation": "150N", + "nameKr": "베이스오일", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "자동차용, 산업용 윤활유 (GS칼텍스 제품)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "150N", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 24, + "abbreviation": "150R", + "nameKr": "베이스오일", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "압축기, 변합기용, 산업용 윤활유 (GS칼텍스 제품)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "150R", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 25, + "abbreviation": "150SN", + "nameKr": "베이스오일", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "차량용, 산업용, 윤활유 (GS칼텍스 제품)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "150SN", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 26, + "abbreviation": "200N", + "nameKr": "베이스오일", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "산업용 윤활유 (GS칼텍스 제품)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "200N", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 27, + "abbreviation": "220N", + "nameKr": "베이스오일", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "차량용, 산업용 윤활유 (GS칼텍스 제품)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "220N", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 28, + "abbreviation": "2CST", + "nameKr": "베이스오일", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "일반적인 윤활유, 유압유 등 산업용 유제 (GS칼텍스 제품)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2CST", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 29, + "abbreviation": "2EH", + "nameKr": "2-에틸헥실 아크릴산", + "nameEn": "2-ETHYL HEXANOL ACRYLATE", + "synonymsEn": "2EHA / EHA / 2-ETHYL / ACRYLIC ACID 2-ETHYLHEXYL / 2-ETHYLHEXYL 2-PROPENOATE / OCTYL ACRYLATE / 2-ETHYLHEXYL PROPENOATE / 2-ETHYL-1-HEXYL ACRYLATE / ACRYLIC ACID 2-ETHYLEXYL ESTER", + "synonymsKr": "2-에틸헥실 아크릴산 / 2-에틸-1헥산올아크릴산 / 2-에틸-1-헥실아크릴산 / 2-에틸헥실2-프로펜산 / 2-에틸헥실아크릴레이트 / 2-프로펜산 / 아크릴산2-에틸헥실 / 옥틸아크릴산 / 2-에틸핵실아크릴산 / 2-에틸헥실아크릴산 / 에틸헥실아크릴레이트 / 2-에틸헥실 아크릴레이트 2-에틸헥실2-프로펜산 / 2-에틸헥실 아크릴산 / 2-프로펜산 2-에틸헥실 에스터 / 옥틸아크릴산", + "unNumber": "3077", + "casNumber": "103-11-7", + "transportMethod": "", + "sebc": "", + "usage": "폴리에틸렌 용기, 석유화학 제품, 가소제, 에멀션 안전제, 표면 활성제,세정제, 고무 및 합성 가소제 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2EH", + "name": "2-ETHYL HEXANOL ACRYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 30, + "abbreviation": "4CST(100N)", + "nameKr": "유제 오일(고급 차량용, 산업용 윤활유)/제품명", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고급 차동차용, 산업용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "4CST(100N)", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 31, + "abbreviation": "500EX", + "nameKr": "유제 오일(고급 차량용, 산업용 윤활유)/제품명", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고급 차동차용, 산업용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "500EX", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 32, + "abbreviation": "500N", + "nameKr": "기유 오일(압축기, 변압기용 산업용 윤활유)/제품명", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "압축기, 변합기용, 산업용 윤활유 (GS칼텍스 제품)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "500N", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 33, + "abbreviation": "500SN", + "nameKr": "베이스오일(윤활기유) /제품명", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "윤활기유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "500SN", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 34, + "abbreviation": "600N", + "nameKr": "유제오일(차량용, 산업용, 선박용 윤활유)/제품명", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "차량용, 산업용, 선박용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "600N", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 35, + "abbreviation": "600R", + "nameKr": "기유 오일(압축기, 변압기용 산업용 윤활유)/제품명", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "압축기, 변압기용 산업용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "600R", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 36, + "abbreviation": "60N", + "nameKr": "베이스오일(프로세스오일, 금속가공유) /제품명", + "nameEn": "BASE OIL", + "synonymsEn": "HYDRAULIC FLUID / distillates(petroleum),hydrotreated(mild)heavyparaffinic / V LUBE J / superioroil / HYDRAULIC FLUID / Neo SK-OIL L400 / emulsifiableoil / horticulturalsprayoil / HYDROTREATEDHYDROCRACKEDOIL / Hydraulic Fluid@0.5 mg/mL in Hexane / HYDRAULIC FLUID ISO 9001:2015 REACH", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-56-8", + "transportMethod": "", + "sebc": "", + "usage": "프로세스오일, 금속가공유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "60N", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 37, + "abbreviation": "6CST(150N)", + "nameKr": "유제 오일(고급 차량용, 산업용 윤활유)/제품명", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고급 차량용, 산업용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "6CST(150N)", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 38, + "abbreviation": "70N", + "nameKr": "기유 오일(압축기, 변압기용 산업용 윤활유)/제품명", + "nameEn": "BASE OIL", + "synonymsEn": "HYDRAULIC FLUID / distillates(petroleum),hydrotreated(mild)heavyparaffinic / V LUBE J / superioroil / HYDRAULIC FLUID / Neo SK-OIL L400 / emulsifiableoil / horticulturalsprayoil / HYDROTREATEDHYDROCRACKEDOIL / Hydraulic Fluid@0.5 mg/mL in Hexane / HYDRAULIC FLUID ISO 9001:2015 REACH", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-56-8", + "transportMethod": "", + "sebc": "", + "usage": "압축기, 변압기용 산업용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "70N", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 39, + "abbreviation": "80SN", + "nameKr": "베이스오일(프로세스오일, 금속가공유) /제품명", + "nameEn": "BASE OIL", + "synonymsEn": "HYDRAULIC FLUID / distillates(petroleum),hydrotreated(mild)heavyparaffinic / V LUBE J / superioroil / HYDRAULIC FLUID / Neo SK-OIL L400 / emulsifiableoil / horticulturalsprayoil / HYDROTREATEDHYDROCRACKEDOIL / Hydraulic Fluid@0.5 mg/mL in Hexane / HYDRAULIC FLUID ISO 9001:2015 REACH", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-56-8", + "transportMethod": "", + "sebc": "", + "usage": "프로세스오일, 금속가공유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "80SN", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 40, + "abbreviation": "8CST(250N)", + "nameKr": "유제 오일(고급 산업용 윤활유)/제품명", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고급 산업용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "8CST(250N)", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 41, + "abbreviation": "91RON", + "nameKr": "휘발유(옥탄가로 표기)", + "nameEn": "GASOLINE", + "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", + "synonymsKr": "가솔린 / 휘발유", + "unNumber": "1261", + "casNumber": "86290-81-5", + "transportMethod": "", + "sebc": "", + "usage": "자동차 연료유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "91RON", + "name": "GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 42, + "abbreviation": "95RON", + "nameKr": "휘발유(옥탄가로 표기)", + "nameEn": "GASOLINE", + "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", + "synonymsKr": "가솔린 / 휘발유", + "unNumber": "1261", + "casNumber": "86290-81-5", + "transportMethod": "", + "sebc": "", + "usage": "자동차 연료유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "95RON", + "name": "GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 43, + "abbreviation": "98RON", + "nameKr": "휘발유(옥탄가로 표기)", + "nameEn": "GASOLINE", + "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", + "synonymsKr": "가솔린 / 휘발유", + "unNumber": "1261", + "casNumber": "86290-81-5", + "transportMethod": "", + "sebc": "", + "usage": "자동차 연료유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "98RON", + "name": "GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 44, + "abbreviation": "AA", + "nameKr": "아세트산", + "nameEn": "ACETIC ACID", + "synonymsEn": "ACOH / HOAC / CUSUAN / ACETIC ACID GLACIAL / GLACIAL / NATURAL ACETIC ACID / GLACIAL ACETIC / IODINE CHLORIDE", + "synonymsKr": "비네갈산 / 에탄오익산 / 에틸산 / 피롤리그너스산 / 글라시알아세트산 / 빙초산 / 메탄카르복실산 / 초산 / 아세틱애씨드", + "unNumber": "2789", + "casNumber": "64-19-7", + "transportMethod": "", + "sebc": "", + "usage": "아세트산 비닐, 에스테르, 아세트산 무수물 등의 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.17, 15.19, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AA", + "name": "ACETIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 45, + "abbreviation": "AACID", + "nameKr": "아세트산", + "nameEn": "ACETIC ACID", + "synonymsEn": "ACOH / HOAC / CUSUAN / ACETIC ACID GLACIAL / GLACIAL / NATURAL ACETIC ACID / GLACIAL ACETIC / IODINE CHLORIDE", + "synonymsKr": "비네갈산 / 에탄오익산 / 에틸산 / 피롤리그너스산 / 글라시알아세트산 / 빙초산 / 메탄카르복실산 / 초산 / 아세틱애씨드", + "unNumber": "2789", + "casNumber": "64-19-7", + "transportMethod": "", + "sebc": "", + "usage": "아세트산 비닐, 에스테르, 아세트산 무수물 등의 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.17, 15.19, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AACID", + "name": "ACETIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 46, + "abbreviation": "AAH", + "nameKr": "무수초산", + "nameEn": "ACETIC ANHYDRIDE", + "synonymsEn": "ACETIC / ACETYL ACETATE / ACETIC ANHYDRIDE / ACETANHYDRIDE / ACETIC ANHYDRID / ACETIC OXIDE / ACETYL OXIDE / ACETYL ANHYDRIDE", + "synonymsKr": "아세트산무수물 / 아세트산화물 / 빙초산 / 무수아세트산 / 아세틸아세트산 / 아세틸에테르 / 에탄오익무수물 / 에탄오익산무수물 / 아세튼 산 / 무수물 / 아세트 산화물 / 아세틸 무수물 / 아세틸 아세트산 / 아세틸 애테르 / 에탄오익 무수물 / 애탄오익 산 무수물 / 아세틸무수물", + "unNumber": "2031", + "casNumber": "108-24-7", + "transportMethod": "", + "sebc": "", + "usage": "폴리에스터 섬유, 합성섬유 제조 염료, 플라스틱, 약품, 폭발물, 페인트 제조 금속 표면 처리 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AAH", + "name": "ACETIC ANHYDRIDE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 47, + "abbreviation": "LNG", + "nameKr": "액화천연가스", + "nameEn": "Liquefied Natural Gas", + "synonymsEn": "COMPRESSEDNATURAL GAS / SYNTH ETIC NATURAL GAS", + "synonymsKr": "네츄널가스 / 천연가스", + "unNumber": "1972", + "casNumber": "8006-14-2", + "transportMethod": "", + "sebc": "", + "usage": "각종 연료 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LNG", + "name": "Liquefied Natural Gas", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 48, + "abbreviation": "AAQ", + "nameKr": "무수암모니아", + "nameEn": "AMMONIA AQUEOUS", + "synonymsEn": "AQUEOUS AMMONIA / ANHYDROUS AMMORINA / AMMONIA WATER / AMMONIA IN METHANOL / AMMONIAC / AMMONIA GAS / AMMONIAK / AMMONIA HYDRATE", + "synonymsKr": "암모니아 / 무수물암모니아 / 암모니아가스", + "unNumber": "2001", + "casNumber": "7664-41-7", + "transportMethod": "", + "sebc": "", + "usage": "산업용 낸장 및 냉동 시스템 냉매", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AAQ", + "name": "AMMONIA AQUEOUS", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 49, + "abbreviation": "ACE", + "nameKr": "아세톤", + "nameEn": "ACETONE", + "synonymsEn": "PROPAN-2ONE / 2-PROPANONE / ACETONE ALCOHOL PROPAN-1-ONE / PROPANON / 2-PROANON / DIMETHYLETAL / GRAMS DECOLORIZER", + "synonymsKr": "디메틸포름알데하드 / 베타-케토프로판 / 프로파논앤 / 2-프로파논 / 디메틸케톤 / 2-프로파논 / 메틸케톤 / 피로아세트에테르 / 다이메틸 케톤 / 다이메틸포름알데하이드 / 메틸 케톤 / 피로아세트 에테르", + "unNumber": "1090", + "casNumber": "67-64-1", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱 생산 및 고무 가공 등 사용 페인트, 코팅제, 접착제, 화장품 등 다양한 제품 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ACE", + "name": "ACETONE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 50, + "abbreviation": "ACETON", + "nameKr": "아세톤", + "nameEn": "ACETONE", + "synonymsEn": "PROPAN-2ONE / 2-PROPANONE / ACETONE ALCOHOL PROPAN-1-ONE / PROPANON / 2-PROANON / DIMETHYLETAL / GRAMS DECOLORIZER", + "synonymsKr": "디메틸포름알데하드 / 베타-케토프로판 / 프로파논앤 / 2-프로파논 / 디메틸케톤 / 2-프로파논 / 메틸케톤 / 피로아세트에테르 / 다이메틸 케톤 / 다이메틸포름알데하이드 / 메틸 케톤 / 피로아세트 에테르", + "unNumber": "1090", + "casNumber": "67-64-1", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱 생산 및 고무 가공 등 사용 페인트, 코팅제, 접착제, 화장품 등 다양한 제품 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ACETON", + "name": "ACETONE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 51, + "abbreviation": "AKI84", + "nameKr": "휘발유(AKI = anti-Knock index)", + "nameEn": "GASOLINE", + "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", + "synonymsKr": "가솔린 / 휘발유", + "unNumber": "1261", + "casNumber": "86290-81-5", + "transportMethod": "", + "sebc": "", + "usage": "자동차 연료유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AKI84", + "name": "GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 52, + "abbreviation": "AKI87", + "nameKr": "휘발유(AKI = anti-Knock index)", + "nameEn": "GASOLINE", + "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", + "synonymsKr": "가솔린 / 휘발유", + "unNumber": "1261", + "casNumber": "86290-81-5", + "transportMethod": "", + "sebc": "", + "usage": "자동차 연료유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AKI87", + "name": "GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 53, + "abbreviation": "AKI90", + "nameKr": "휘발유(AKI = anti-Knock index)", + "nameEn": "GASOLINE", + "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", + "synonymsKr": "가솔린 / 휘발유", + "unNumber": "1261", + "casNumber": "86290-81-5", + "transportMethod": "", + "sebc": "", + "usage": "자동차 연료유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AKI90", + "name": "GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 54, + "abbreviation": "ALLA", + "nameKr": "알릴알코올", + "nameEn": "ALLYL ALCOHOL", + "synonymsEn": "PROP-2-EN-1-OL / PROPEN-1-OL / ALLYLIC ALCOHOL / ALLYLALKOHOL / PROPENOL / 2-PROPENOL / ALLYL ALCOHOL EXTRA PURE / ALLYALCOHOL", + "synonymsKr": "알리알콜 / 2-프로펜-1올 / 1-프로펜올-3 / 3-하이드록시프로펜 / 2-프로펜일알코올 / 알릴알콜 / 알리알코올 / 1-프로펜-3-올 / 2-프로펜놀 / 2-프로페닐 알코올 / 비닐 카비놀 / 알릴 알코올 / 오프비닐 카비놀 / 프로펜놀 / 프로페닐 알코올 / 프로펜 1-올-3", + "unNumber": "1098", + "casNumber": "107-18-6", + "transportMethod": "", + "sebc": "", + "usage": "난연성 물질, 건성유, 가소제 등 다양한 특수 화학물의 전구체", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ALLA", + "name": "ALLYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 55, + "abbreviation": "AMS", + "nameKr": "알파-메틸스타이렌", + "nameEn": "ALPHA-METHYLSTYRENE", + "synonymsEn": "A-METHYLSTYRENE / 2-PHENYLPROPENE / A-METHYL STYRENE / ISOPROPENYLBENZENE", + "synonymsKr": "알파-메틸스타이렌 / 알파-메틸스티렌 / 알파-메틸 스타이렌 / 2-페닐-1-프로펜", + "unNumber": "2303", + "casNumber": "98-83-9", + "transportMethod": "", + "sebc": "", + "usage": "접착제, 코팅제 제조 스티렌 중합체와 수지, 에틸렌 프로필렌 수지의 중간체로 주로사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AMS", + "name": "ALPHA-METHYLSTYRENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 56, + "abbreviation": "AN", + "nameKr": "아크릴로니트릴", + "nameEn": "ACRYLONITRILE", + "synonymsEn": "2-PROPENENITRILE / PROPENENITRILE / PROP-2-ENENITRILE / ACRYLIC ACID NITRILE / ACRYLON / ACRYLNITRIL / PROPENITRILE / CYANOE THYLENE / ACRYLONITRILE MONOMER", + "synonymsKr": "비닐시아나이드 / 시아노에틸렌 / 아크릴론 / 크랍아크릴 / 2-프로펜니트릴 / 아크릴로나이트릴 / 프로펜니트릴 / 아크릴로니트릴모노모 / 2-프로페나이트릴", + "unNumber": "1093", + "casNumber": "107-13-1", + "transportMethod": "", + "sebc": "", + "usage": "아크릴 섬유, 합성고뮤, ABS수지, AS수지 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AN", + "name": "ACRYLONITRILE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 57, + "abbreviation": "AND", + "nameKr": "아디포니트릴", + "nameEn": "ADIPONITRILE", + "synonymsEn": "DICYANOBUTANE / HEXANEDINITRILE / ADIPONITRIL / ADIPONITRILE / ADIPYL NITRILE / ADIPICDINTRILE / ADIPODINITRILE / HEXANEDINITRIL / NITRILEADIPICO / ADIPICDINTITRILE", + "synonymsKr": "아디포나이트릴 / 뷰테인 / 1.4-다이사이아노부탄 / 1.4-다이사이아노뷰테인 / 1.4-다이사이아노 / 아디프 산 나이트릴 / 아디프 산 디나이트릴 / 아디프산 나이트릴 / 아디프산 다이나이트릴 / 안디포나이트릴 / 테트라메틸 사이아나이드 / 헥산디나이트 릴 테트라메틸렌 사이아나이드 / 헥산아디프산 / 디나이트릴 / 헥세인다이나이트 릴", + "unNumber": "2205", + "casNumber": "111-69-3", + "transportMethod": "", + "sebc": "", + "usage": "나일론 6,6 샌상의 주요한 전구체 의료, 에어백, 케이블 타이, 카펫, 자동차 부품 등 일산적인 제품의 핵심 소재", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AND", + "name": "ADIPONITRILE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 58, + "abbreviation": "ACN", + "nameKr": "아세토나이트릴", + "nameEn": "ACETONITRILE", + "synonymsEn": "CYANOMETHANE / ETHYL NITRILE / METHYL CYANIDE", + "synonymsKr": "아세토니트릴 / 메탄카르보니트릴 / 에탄니트릴 / 메틸시아나이드 / 시아노메탄 / 아세토나이트릴 / 에틸니트릴 / 나이트로니트릴 / 메틸 시아나이드 / 에탄 나이트릴", + "unNumber": "1093", + "casNumber": "75-05-8", + "transportMethod": "", + "sebc": "", + "usage": "용매, 화학 반응제로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ACN", + "name": "ACETONITRILE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 59, + "abbreviation": "ANONE", + "nameKr": "시클로헥산온", + "nameEn": "CYCLOHEXANONE", + "synonymsEn": "HEXANONE / Anon / ANONE / Hexanon / Sextone / Cykloheksanon / CYCLOHEXANONE REAGENT (ACS) / CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS) / Nadone / hytrolo", + "synonymsKr": "섹톤 / 케토헥사메틸렌 / 시클로헥실케톤 / 아논헥사논/ 케토시클로헥산/ 옥소시클로헥산 / 피멜린케톤 / 사이클로헥사논 / 사이클로헥세인온 / 시클로헥사논 / 아논 / 시클로헥산온 / 아농 / 사이클로헥산온 / 나돈 / 섹스톤 / 시클로헥실 케톤 / 케토헥사메틸렌 / 피멜릭 케톤 / 피멜린 케톤 / 헥사논 / 히트롤 O", + "unNumber": "1915", + "casNumber": "108-94-1", + "transportMethod": "", + "sebc": "", + "usage": "살충제, 페인트, 니스 제거제을 사용 잉크, 코팅, 의약품, 접착제, 감광선 물질, 살충제 등의 다양한 산업에서 고급 용매", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANONE", + "name": "CYCLOHEXANONE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 60, + "abbreviation": "ANYSOL100", + "nameKr": "솔벤트 나프타(석유), 중질방향족 (용제 8호 / 한화토탈에너지스 제품)", + "nameEn": "SOLVENT NAPHTHA(PETROLEUM)", + "synonymsEn": "Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA", + "synonymsKr": "경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물/ C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족 /제품명", + "unNumber": "1268", + "casNumber": "64742-95-6", + "transportMethod": "", + "sebc": "", + "usage": "자동차 도장, 코팅 공정 등에서 페인트나 기타 물질을 용해, 희석, 추출하는데 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANYSOL100", + "name": "SOLVENT NAPHTHA(PETROLEUM)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 61, + "abbreviation": "ANYSOL150", + "nameKr": "솔벤트 나프타(석유), 중질방향족 (용제 9호 / 한화토탈에너지스 제품)", + "nameEn": "SOLVENT NAPHTHA", + "synonymsEn": "Generichydrocarbon heavy aromatic mixed ethylbenzenes solvent naphtha petroleum hydrocarbon", + "synonymsKr": "솔벤트나프타(석유) / 중질방향족화합물 / 중방향족화합물용제나프타 / 나프탈렌 / 타르캄포 / 횐타르 / 둥근방충제나프탈린 / C10-11아로마틱 하이드로카본 C12-15알케인 / 사이클로알케인 / 아로마틱하이드로카본", + "unNumber": "3082", + "casNumber": "64742-94-5", + "transportMethod": "", + "sebc": "", + "usage": "세척, 용해, 회석, 추출 등 석유화학 부산물로 생산되는 용제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANYSOL150", + "name": "SOLVENT NAPHTHA", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 62, + "abbreviation": "ANYSOL5", + "nameKr": "수소탈황화된 중질 등유 (용제 3호, 한화토탈에너지스 제품)", + "nameEn": "KEROSINE(PETROLEUM)", + "synonymsEn": "hydrodesulfurized kerosin / HYDRODESULFURIZEDKEROSENE / HYDRODESULPHURIZEDKEROSINE / hydrodesulphurized kerosene / HYDRODESULFURIZED KEROSINE) / kerosine, hydrodesulfurized / kerosene (non-specific name) / KEROSINE,STRAIGHTRUN,HYDROTREATED / Hydrodesulfurized kerosine (petroleum) / Kerosine (petroleum), hydrodesulfurized", + "synonymsKr": "등유 / 히드로탈황화케로신 / 히드로탈황화케로신/ 등유(석유),수소화탈황", + "unNumber": "1268", + "casNumber": "64742-81-0", + "transportMethod": "", + "sebc": "", + "usage": "도료, 접착제, 코팅제, 세정제 등 제조 및 사용에 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANYSOL5", + "name": "KEROSINE(PETROLEUM)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 63, + "abbreviation": "BA", + "nameKr": "부틸아세테이트", + "nameEn": "BUTYL ACETATE", + "synonymsEn": "N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate", + "synonymsKr": "아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트", + "unNumber": "1231", + "casNumber": "123-86-4", + "transportMethod": "", + "sebc": "", + "usage": "휘발성 용매로 사용 주로 페인트, 잉크, 화잘품, 향수 등 다양한 분야 에서 용매로 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BA", + "name": "BUTYL ACETATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 64, + "abbreviation": "BACR", + "nameKr": "부틸 아크릴산", + "nameEn": "BUTYL ACRYLATE", + "synonymsEn": "TBA / T-BUTYL ACRYLATE / 2-Propenoic acid butyl ester / Butyl propenoate / ACRYLIC ACID TERT-BUTYL ESTER / TERTIARY-BUTYL ACRYLATE / ButyAcrylate / Butyl acrylate / Acrylic acid b / 1-butylacrylate", + "synonymsKr": "N-뷰틸아크릴레이트 / 노말-부틸프로페논염 / 부틸아크릴산 / 아크릴산노말-부틸에스테르 / 2-프로펜산,부틸에스N-BUTYLACRYLATE / n-부틸아크릴레이트 / 노말-부틸아크릴레이트 / 부탄아크릴레이트 / 부틸-2-프로페논염 / 아크릴산부탄 / 아크릴산뷰틸 / n-뷰틸아크릴산 / N-뷰틸 아크릴레이트 / 2-프로펜 산, n-뷰틸 에스터 / n-뷰틸 아크릴 산 / n-뷰틸 프로펜 산 / 뷰틸-2-프로펜 산 / 아크릴 산 뷰틸 에스터", + "unNumber": "2348", + "casNumber": "141-32-2", + "transportMethod": "", + "sebc": "", + "usage": "코팅제, 접착제, 실란트, 섬유 마감재, 플라스틱 등 다양한 분양에서 사용되는 화학물질", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BACR", + "name": "BUTYL ACRYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 65, + "abbreviation": "BAM", + "nameKr": "부틸 아크릴산", + "nameEn": "BUTYL ACRYLATE", + "synonymsEn": "TBA / T-BUTYL ACRYLATE / 2-Propenoic acid butyl ester / Butyl propenoate / ACRYLIC ACID TERT-BUTYL ESTER / TERTIARY-BUTYL ACRYLATE / ButyAcrylate / Butyl acrylate / Acrylic acid b / 1-butylacrylate", + "synonymsKr": "N-뷰틸아크릴레이트 / 노말-부틸프로페논염 / 부틸아크릴산 / 아크릴산노말-부틸에스테르 / 2-프로펜산,부틸에스N-BUTYLACRYLATE / n-부틸아크릴레이트 / 노말-부틸아크릴레이트 / 부탄아크릴레이트 / 부틸-2-프로페논염 / 아크릴산부탄 / 아크릴산뷰틸 / n-뷰틸아크릴산 / N-뷰틸 아크릴레이트 / 2-프로펜 산, n-뷰틸 에스터 / n-뷰틸 아크릴 산 / n-뷰틸 프로펜 산 / 뷰틸-2-프로펜 산 / 아크릴 산 뷰틸 에스터", + "unNumber": "2348", + "casNumber": "141-32-2", + "transportMethod": "", + "sebc": "", + "usage": "코팅제, 접착제, 실란트, 섬유 마감재, 플라스틱 등 다양한 분양에서 사용되는 화학물질", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BAM", + "name": "BUTYL ACRYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 66, + "abbreviation": "BBP", + "nameKr": "부틸벤질프탈산", + "nameEn": "BUTYL BENZYL PHTHALATE", + "synonymsEn": "Benzyl butyl phthalate / BBP / BUTYL BENZYL PHTHALATE / Benzyl butyl ester / PHTHALIC ACID, BENZYLBUTYL ESTER / CW17 / mZFM / SF01 / Sicol / Sicol 160 / NCI-C54375", + "synonymsKr": "벤질부틸프탈레이트 / BBP / 부틸벤질프탈레이트 / 뷰틸벤질프탈산 / 부틸벤질프탈레이트 / 벤질부틸프탈레이트 / 뷰틸 벤질 프탈산 / 1,2-벤젠다이카복실산, 뷰틸 페닐메틸 에스터 / O1-뷰틸 O2-(페닐메틸)벤젠-1,2-다이카복실산 / 벤질뷰틸 프탈산 / 부틸벤질 프탈레이트 / 1,3-아이소벤조푸란다이온폴리머(2,2'-옥시비스)", + "unNumber": "3082", + "casNumber": "85-68-7", + "transportMethod": "", + "sebc": "", + "usage": "pvc 가소제 사용 비닐 시트 바닥재, 타일 , 식품 포장재 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BBP", + "name": "BUTYL BENZYL PHTHALATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 67, + "abbreviation": "BD PALM", + "nameKr": "바이오 디젤 팜오일", + "nameEn": "PALM OIL", + "synonymsEn": "·Fatty acids, palm-oil, me esters ·Methyl Myristate C14", + "synonymsKr": "·지방산류, 야자유, 메틸 에스터류 ·메틸 미리스테이트 C14", + "unNumber": "3082", + "casNumber": "91051-34-2", + "transportMethod": "", + "sebc": "", + "usage": "자동차 경유와 같은 연료로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BD PALM", + "name": "PALM OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 68, + "abbreviation": "BDO", + "nameKr": "1,4-부탄디올", + "nameEn": "BUTANEDIOL", + "synonymsEn": "1,4-Butanediol / BDO / Butylene glycol / Butanediol / BUTANE-1,4-DIOL / TETRAMETHYLENE GLYCOL / 1,4-Butandiol / 1,4-BD / sucolb / Diol 14B / 4-Butanediol", + "synonymsKr": "1,4-부탄디올 / 1,4-디하이드록시부탄 / 1,4-Dihydroxybutane,뷰틸렌글리콜 / 1,4-뷰테인디올 / 1,4-테트라메틸렌글리콜 / 부틸렌글리콜 / 테트라메틸렌1,4-디올 / 1,4-뷰테인다이올 / 1,4-다이하이드록시부탄 / 1,4-뷰틸렌 글리콜 / 1,4-테트라메틸 글리콜 / 디올 14B / 부탄-1,4-디올 / 부탄디올 / 뷰틸렌 글리콜 / 수콜 B / 테트라메틸렌 1,4-디올 / 테트라메틸렌 글리콜", + "unNumber": "2810", + "casNumber": "110-63-4", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 합성 섬유, 용매, 약물 합성 등 폴리우레탄 생산에 주로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BDO", + "name": "BUTANEDIOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 69, + "abbreviation": "BEHA", + "nameKr": "디옥틸아디페이트", + "nameEn": "BIS(2-ETHYLHEXYL) ADIPATE", + "synonymsEn": "Bis(2-ethylhexyl) adipate / DEHA / Hexanedioic acid, bis(2-ethylhexyl) ester / Diethylhexyl adipate / dioctyl / Beha / bis(2-ethylhexyl) / Bis(2-ethylhexyl)hexanedioate / hexanedioicacidbis(2-ethylhexyl)ester / PX-238 / mollans", + "synonymsKr": "디옥틸아디페이트 / DOA / 디(2-에틸헥실)아디프산 / 디옥틸아디페이트 / 다이에틸헥실아디페이트 / 비스(2-에틸헥실) 아디페이트 / 디(2-에틸헥실)아디페이트", + "unNumber": "3082", + "casNumber": "103-23-1", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 고무, 잉크 , 접착제, 페인트, 윤활유 등 다양한 분야에서 가소제 및 첨가제로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BEHA", + "name": "BIS(2-ETHYLHEXYL) ADIPATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 70, + "abbreviation": "BFT", + "nameKr": "우지", + "nameEn": "BEEF TALLOW", + "synonymsEn": "·Fatty glyceride ·Edible tallow ·Animal tallow ·Horse fat tallow ·Beef tallow ·Stearin tallow ·Oleo tallow ·Mutton tallow ·Sheep fat tallow ·Tallow A1 grade ·Soap grade", + "synonymsKr": "Fatty 글리세라이드 ·Edible 탈로우 ·Animal 탈로우 ·Horse fat 탈로우 ·Beef 탈로우 ·Stearin 탈로우 ·Oleo 탈로우 ·Mutton 탈로우 ·Sheep fat 탈로우", + "unNumber": "-", + "casNumber": "61789-97-7", + "transportMethod": "", + "sebc": "", + "usage": "마아가린 등 식용품과", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BFT", + "name": "BEEF TALLOW", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 71, + "abbreviation": "BG", + "nameKr": "에틸렌글리콜모노부틸에테르", + "nameEn": "BUTYL GLYCOL ETHER", + "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", + "synonymsKr": "부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르 / 부톡시에탄올", + "unNumber": "2810", + "casNumber": "111-76-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BG", + "name": "BUTYL GLYCOL ETHER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 72, + "abbreviation": "BGE", + "nameKr": "에틸렌글리콜모노부틸에테르", + "nameEn": "BUTYL GLYCOL ETHER(2-BUTOXYETHANOL)", + "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", + "synonymsKr": "부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르 / 부톡시에탄올", + "unNumber": "2810", + "casNumber": "111-76-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BGE", + "name": "BUTYL GLYCOL ETHER(2-BUTOXYETHANOL)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 73, + "abbreviation": "BNZ", + "nameKr": "벤젠", + "nameEn": "BENZENE", + "synonymsEn": "Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv®", + "synonymsKr": "벤젠 / 벤졸렌 / 석탄나프타 / 시클로헥사트리엔 / 아눌렌 / 콜타르나프타 / 탄소오일 / 페닐수화 / 펜 / 피로벤졸 / 벤졸 / 싸이클로헥사트라이엔 / 페닐 하이드리드", + "unNumber": "1114", + "casNumber": "71-43-2", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 합성고무, 세제, 페인트, 의약품 등 석유화학 제품의 원료로 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BNZ", + "name": "BENZENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 74, + "abbreviation": "BUCB", + "nameKr": "다이에틸렌 글라이콜 모노-N-뷰틸 에테르", + "nameEn": "DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", + "synonymsEn": "BUCB / BUTOXYDIETHYLENE GLYCOL / BUTOXYDIGLYCOL / BUTOXYETHOXYETHANOL / 2-(2BUTOXYETHOXY) ETHANOL / BUTYLCARBITOL / O-BUTYL DIETHYLENE GLYCOL / BUTYLDIGLYCOL / BUTYLDIGOL / BUTYL ETHYL CELLOSOLVE / DIETHYLENE GLYCOL BUTYL ETHER / DIETHYLENE GLYCOL N-BUTYL ETHER / DIETHYLENE GLYCOL MONOBUTYL ETHER / DGBE / BUTYL DIGLYCOL ETHER / BDGE / BUTYL DIETHOXOL / DEGBE", + "synonymsKr": "뷰톡시다이에틸렌 글라이콜 / 뷰톡시다이글라이콜 / 뷰톡시에툭시에탄올 / 2-(2-뷰톡시에톡시_에탄올 / 뷰틸카르비톨 / O-뷰틸 다이에틸렌 글라이콜 / 뷰틸다이글라이콜 / 뷰틸다이골 / 뷰틸 다이옥시톨 / 뷰틸 에틸 셀로솔브 / 다이에틸렌 글라이콜 뷰틸 에테르 / 다이에틸렌 글라이콜 N-뷰틸 에테르 / 다이에틸렌 글라이콜 모노뷰틸 에테르 / 다이글라이콜 모노뷰틸 에테르", + "unNumber": "2810", + "casNumber": "112-34-5", + "transportMethod": "", + "sebc": "", + "usage": "용매, 보습제, 유화제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BUCB", + "name": "DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 75, + "abbreviation": "BUCS", + "nameKr": "부틸 셀레솔브", + "nameEn": "ETHYLENE GLYCOL MONO-N-BUTYL ETHER", + "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", + "synonymsKr": "부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르 / 부틸셀로솔브", + "unNumber": "2810", + "casNumber": "111-76-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BUCS", + "name": "ETHYLENE GLYCOL MONO-N-BUTYL ETHER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 76, + "abbreviation": "BZ", + "nameKr": "벤젠", + "nameEn": "BENZENE", + "synonymsEn": "Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv®", + "synonymsKr": "벤젠 / 벤졸렌 / 석탄나프타 / 시클로헥사트리엔 / 아눌렌 / 콜타르나프타 / 탄소오일 / 페닐수화 / 펜 / 피로벤졸 / 벤졸 / 싸이클로헥사트라이엔 / 페닐 하이드리드", + "unNumber": "1114", + "casNumber": "71-43-2", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 합성고무, 세제, 페인트, 의약품 등 석유화학 제품의 원료로 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BZ", + "name": "BENZENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 77, + "abbreviation": "C10ANYSOL 150", + "nameKr": "솔벤트 나프타(석유), 중질방향족 (용제 9호 / 한화토탈에너지스 제품)", + "nameEn": "SOLVENT NAPHTHA", + "synonymsEn": "Generichydrocarbon heavy aromatic mixed ethylbenzenes solvent naphtha petroleum hydrocarbon", + "synonymsKr": "솔벤트나프타(석유) / 중질방향족화합물 / 중방향족화합물용제나프타 / 나프탈렌 / 타르캄포 / 횐타르 / 둥근방충제나프탈린 / C10-11아로마틱 하이드로카본 C12-15알케인 / 사이클로알케인 / 아로마틱하이드로카본", + "unNumber": "3082", + "casNumber": "64742-94-5", + "transportMethod": "", + "sebc": "", + "usage": "세척, 용해, 회석, 추출 등 석유화학 부산물로 생산되는 용제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C10ANYSOL 150", + "name": "SOLVENT NAPHTHA", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 78, + "abbreviation": "C5", + "nameKr": "C5 라피네이트", + "nameEn": "C5 NA RAFFINATE", + "synonymsEn": "raffinate", + "synonymsKr": "C5라피네이트", + "unNumber": "3295", + "casNumber": "혼합물", + "transportMethod": "", + "sebc": "", + "usage": "부산물(혼합물)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C5", + "name": "C5 NA RAFFINATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 79, + "abbreviation": "C5NAR", + "nameKr": "C5 라피네이트", + "nameEn": "C5 NA RAFFINATE", + "synonymsEn": "C5 raffinate", + "synonymsKr": "C5라피네이트", + "unNumber": "3295", + "casNumber": "혼합물", + "transportMethod": "", + "sebc": "", + "usage": "부산물(혼합물)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C5NAR", + "name": "C5 NA RAFFINATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 80, + "abbreviation": "C8", + "nameKr": "C8(혼합 아로마틱스)", + "nameEn": "C8(mixed aromatics)", + "synonymsEn": "C8(mixed aromatics)", + "synonymsKr": "C8(혼합 아로마틱스)", + "unNumber": "1993", + "casNumber": "혼합물", + "transportMethod": "", + "sebc": "", + "usage": "제품원료(혼합물)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C8", + "name": "C8(mixed aromatics)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 81, + "abbreviation": "C9", + "nameKr": "C9+ 아로마틱스", + "nameEn": "C9+ AROMATICS", + "synonymsEn": "C9+ AROMATICS", + "synonymsKr": "C9+ 아로마틱스", + "unNumber": "-", + "casNumber": "1330-20-7", + "transportMethod": "", + "sebc": "", + "usage": "석유화학 원료, 용제, 비료원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C9", + "name": "C9+ AROMATICS", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 82, + "abbreviation": "C9+", + "nameKr": "C9+ 아로마틱스", + "nameEn": "C9+ AROMATICS", + "synonymsEn": "C9+ AROMATICS", + "synonymsKr": "C9+ 아로마틱스", + "unNumber": "-", + "casNumber": "1330-20-7", + "transportMethod": "", + "sebc": "", + "usage": "석유화학 원료, 용제, 비료원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C9+", + "name": "C9+ AROMATICS", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 83, + "abbreviation": "C9ANYSOL 100", + "nameKr": "경 방향족 화합물 용제 나프타 (용제 8호 / 한화토탈에너제스 제품)", + "nameEn": "SOLVENT NAPHTHA", + "synonymsEn": "/ Solvent naphtha (petroleum), light arom. / Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA", + "synonymsKr": "경 방향족 화합물 용제 나프타 / 경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물 / C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족.", + "unNumber": "1268", + "casNumber": "64742-95-6", + "transportMethod": "", + "sebc": "", + "usage": "석유화학 제품의 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C9ANYSOL 100", + "name": "SOLVENT NAPHTHA", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 84, + "abbreviation": "CAN", + "nameKr": "카놀라 오일", + "nameEn": "CANOLA OIL", + "synonymsEn": "canola / CANBRAOIL / PRIMOROIL / CANOLA OIL / CANOLAOILFUMES / HEATEDCANOLAOIL / Canola Oil (1 g) / CANOLACOOKINGOIL / oils,glyceridic,canola / LOWERUCICACIDRAPESEEDOIL", + "synonymsKr": "채종유 / 카놀라유", + "unNumber": "-", + "casNumber": "120962-03-0", + "transportMethod": "", + "sebc": "", + "usage": "식용유 등 식용으로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CAN", + "name": "CANOLA OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 85, + "abbreviation": "CHXNN", + "nameKr": "시클로헥산온", + "nameEn": "CYCLOHEXANONE", + "synonymsEn": "Cyclohexanone / HEXANONE / Anon / ANONE / Hexanon / Sextone / Cykloheksanon / CYCLOHEXANONE REAGENT (ACS) / CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS) / Nadone / hytrolo", + "synonymsKr": "/ 사이클로헥사논 / 섹톤 케토헥사메틸렌 / 시클로헥실케톤 / 아논헥사논 / 케토시클로헥산옥소시클로헥산 / 피멜린케톤 / 히트롤O나돈피메르케톤 / 사이클로헥사논 / 사이클로헥세인온 / 시클로헥사논 / 아논 / 시클로헥산온 / 아농 / 사이클로헥산온 / 나돈 / 섹스톤 / 시클로헥실 케톤 / 케토헥사메틸렌 / 피멜릭 케톤 / 피멜린 케톤 / 헥사논 / 히트롤 O", + "unNumber": "1915", + "casNumber": "108-94-1", + "transportMethod": "", + "sebc": "", + "usage": "주로 나일론 생산에 사용되는 아디포산 합성, 폐인트 제거제, 살충제 용제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHXNN", + "name": "CYCLOHEXANONE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 86, + "abbreviation": "CNO", + "nameKr": "코코넛 오일", + "nameEn": "Coconut oil", + "synonymsEn": "COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", + "synonymsKr": "/ 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", + "unNumber": "1353", + "casNumber": "8001-31-8", + "transportMethod": "", + "sebc": "", + "usage": "화장품, 세제, 식품 첨가제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CNO", + "name": "Coconut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 87, + "abbreviation": "CPP", + "nameKr": "폴리프로필렌", + "nameEn": "CAST POLYPROPYLENE", + "synonymsEn": "Polypropylene / dlp / PROPYLENE RESIN / POLYPROPYLENE (PP) / HoMopolyMer Polypropylene / soMe / celgard / RPP / j400 / amco / p6500", + "synonymsKr": "폴리프로필렌 / 폴리프로필렌 / 폴리프로필렌", + "unNumber": "-", + "casNumber": "9003-07-0", + "transportMethod": "", + "sebc": "", + "usage": "식품 포장, 레토르트 식품 포장, 스택 포장 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPP", + "name": "CAST POLYPROPYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 88, + "abbreviation": "CSODA", + "nameKr": "수산화나트륨", + "nameEn": "CAUSTIC SODA", + "synonymsEn": "/ Sodium hydroxide / NaOH / Caustic soda / Caustic Soda flakes / Caustic soda pearl / CAUSTIC FLAKES / Natriumhydroxid / IODINE SOLUTION / FLAKE CAUSTIC SODA / Hydroxyde de sodium / SODIUM HYDROXIDE, REAGENT GRADE, 97%, FL", + "synonymsKr": "WHITE가성용액 / 나트륨수산화물리퀴드 / 히드록시나트륨용액 / 가성소다,고체 / 가성소다,과립상 / 가성소다,용구 / 가성소다,건조 / 나트륨수산화물,고체 / 나트륨수화물 / 나트륨수산화물,건조고체,플레이크,용구,또는과립상 / 소다알칼리액 / 알칼리액 / 화이트가성 / 0.025N-수산화나트륨(0.025M) / 0.05N-수산화나트륨(0.05M) / 0.1N(0.1M)수산화나트륨 / 0.25M수산화나트륨 / 0.2N-수산화나트륨(0.2M) / 0.5N-수산화나트륨(0.5M) / 1N-수산화나트륨 / 가성소다", + "unNumber": "1823", + "casNumber": "1310-73-2", + "transportMethod": "", + "sebc": "", + "usage": "펄프 및 종이 제조, 비누 및 세제 제조, 섬유, 금속 세정 등에 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSODA", + "name": "CAUSTIC SODA", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 89, + "abbreviation": "CSS", + "nameKr": "수산화나트륨", + "nameEn": "CAUSTIC SODA", + "synonymsEn": "/ Sodium hydroxide / NaOH / Caustic soda / Caustic Soda flakes / Caustic soda pearl / CAUSTIC FLAKES / Natriumhydroxid / IODINE SOLUTION / FLAKE CAUSTIC SODA / Hydroxyde de sodium / SODIUM HYDROXIDE, REAGENT GRADE, 97%, FL", + "synonymsKr": "/ WHITE가성용액 / 나트륨수산화물리퀴드 / 히드록시나트륨용액 / 가성소다,고체 / 가성소다,과립상 / 가성소다,용구 / 가성소다,건조 / 나트륨수산화물,고체 / 나트륨수화물 / 나트륨수산화물,건조고체,플레이크,용구,또는과립상 / 소다알칼리액 / 알칼리액 / 화이트가성 / 0.025N-수산화나트륨(0.025M) / 0.05N-수산화나트륨(0.05M) / 0.1N(0.1M)수산화나트륨 / 0.25M수산화나트륨 / 0.2N-수산화나트륨(0.2M) / 0.5N-수산화나트륨(0.5M) / 1N-수산화나트륨 / 가성소다", + "unNumber": "1823", + "casNumber": "1310-73-2", + "transportMethod": "", + "sebc": "", + "usage": "펄프 및 종이 제조, 비누 및 세제 제조, 섬유, 금속 세정 등에 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSS", + "name": "CAUSTIC SODA", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 90, + "abbreviation": "CT", + "nameKr": "석탄 타르", + "nameEn": "COAL TAR", + "synonymsEn": "kc261 / zetar / D03573 / syntar / lavatar / Aquatar / supertah / pixalbol / Crudetar / Tar,coal", + "synonymsKr": "석탄타르 / 콜타르 / 콜타르및정제콜타르 / 석탄 타르", + "unNumber": "1999", + "casNumber": "8007-45-2", + "transportMethod": "", + "sebc": "", + "usage": "붕부제, 지붕 및 도로 포장재, 페인트 원료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CT", + "name": "COAL TAR", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 91, + "abbreviation": "CUMENE", + "nameKr": "큐멘", + "nameEn": "CUMENE", + "synonymsEn": "ISOPROPYLBENZENE / 2-PHENYLPROPANE / CUMEEN / ISOPROPYLBENZEN / ISOPROPILBENZENE / CUMOL / CUMENE", + "synonymsKr": "쿠멘 / 큐멘 / (1-메틸에틸)벤젠 / 메틸 에틸 벤젠 / 아이소프로필벤젠 / 큐몰 / 프로판-2-일베젠 /쿠메네", + "unNumber": "1918", + "casNumber": "98-82-8", + "transportMethod": "", + "sebc": "", + "usage": "페놀과 아세톤을 제조하는데 사용되는 원료 물질", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CUMENE", + "name": "CUMENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 92, + "abbreviation": "CWNO", + "nameKr": "캐슈넛 오일", + "nameEn": "Cashew nut oil", + "synonymsEn": "CNSL / CASHEWOIL / CASHEWNUTSHELLLIQUID / CASHEWNUTSHELLLIQUIDS / Cashew, nutshell liq. / 3-(8-Pentadecenyl)-phenol / Quantum Cashew Nutshell Oil / CNSL - Cashew Nut Shell Liquid / Anacardium occidentale nutshell oil / Anacardium occidentale,nutshell liq.", + "synonymsKr": "캐슈,넛쉘액 / 캐슈,넛쉘액 / 캐슈넛오일 / 캐슈", + "unNumber": "3000", + "casNumber": "8007-24-7", + "transportMethod": "", + "sebc": "", + "usage": "바이오 연료, 접착제, 방수제, 수지, 코팅제, 도장 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CWNO", + "name": "Cashew nut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 93, + "abbreviation": "BITUMEN", + "nameKr": "비투멘", + "nameEn": "BITUMEN", + "synonymsEn": "BITUMEN", + "synonymsKr": "콜타르, 핏치, 아스팔트", + "unNumber": "3257", + "casNumber": "8052-42-4", + "transportMethod": "", + "sebc": "", + "usage": "도로포장제, 지붕방수제, 경유 첨가제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BITUMEN", + "name": "BITUMEN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 94, + "abbreviation": "DCBC", + "nameKr": "벙커-c (한화토탈에너지스 제품명)", + "nameEn": "BUNKER C", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "64741-80-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCBC", + "name": "BUNKER C", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 95, + "abbreviation": "DCE", + "nameKr": "1,2-디클로로에탄", + "nameEn": "1,2-Dichloroethane", + "synonymsEn": "DCE / EDC / 1,2-DCE / ETHYLENE DICHLORIDE / ETHYLENE CHLORIDE / CH2ClCH2Cl / 1,2-Dichlorethane / 1,2-Dichlorethan / Ethane,1,2-dichloro- / ethylene dichloride (eDC)", + "synonymsKr": "염화에틸렌 / 1,2-디클로로에탄 / 1,2-비클로로에탄 알파,베타-디클로로에탄 / SYM-디클로로에탄 / 이염화글리콜 / 이염화에틸렌 / 이염화에탄 / 이염화에테인 / 1,2-이염화에탄 / 1,2-다이클로로에탄 / 다이클로로에탄(에틸렌다이클로라이드) / 에틸렌디클로라이드 / 1,2-디클로로에탄", + "unNumber": "1184", + "casNumber": "107-06-2", + "transportMethod": "", + "sebc": "", + "usage": "용제, 합성 원료, 가소제 등으로 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCE", + "name": "1,2-Dichloroethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 96, + "abbreviation": "DCLM", + "nameKr": "디클로로메탄", + "nameEn": "Dichloromethane", + "synonymsEn": "DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", + "synonymsKr": "염화메틸렌 / 솔라에스틴 / 솔메틴 / 에어로텐MM / 이염화메틸렌 / TC523에폭시 / 나르코틸 / 다이클로로메테인 / 디클로로메탄 / 락코메틸렌염화물 / 메탄,디클로로- / 설비세척솔벤트 / 에어로텐(R)MM솔벤트(AEROTHENE / 이염화메탄 / 다이클로로메탄 / 메틸렌 다이클로라이드 / 메틸렌 클로라이드", + "unNumber": "1593", + "casNumber": "75-09-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용 유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCLM", + "name": "Dichloromethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 97, + "abbreviation": "DCM", + "nameKr": "디클로로메탄", + "nameEn": "Dichloromethane", + "synonymsEn": "DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", + "synonymsKr": "/ 염화메틸렌 / 솔라에스틴 / 솔메틴 / 에어로텐MM / 이염화메틸렌 / TC523에폭시 / 나르코틸 / 다이클로로메테인 / 디클로로메탄 / 락코메틸렌염화물 / 메탄,디클로로- / 설비세척솔벤트 / 에어로텐(R)MM솔벤트(AEROTHENE / 이염화메탄 / 다이클로로메탄 / 메틸렌 다이클로라이드 / 메틸렌 클로라이드", + "unNumber": "1593", + "casNumber": "75-09-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용 유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCM", + "name": "Dichloromethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 98, + "abbreviation": "DCPD", + "nameKr": "디사이클로펜타디엔", + "nameEn": "Dicyclopentadiene", + "synonymsEn": "DCPD / C10H12 / Dicyclopentadien / CYCLOPENTADIENE DIMER / 3A,4,7,7A-TETRAHYDRO-4,7-METHANOINDENE / Dicyclpentadiene / Bicyclopentadiene / 1,3-cyclopentadiene dimer / DicycL / DCPD90%", + "synonymsKr": "디사이클로펜타디엔 / 디시클로펜타디엔 / 다이사이클로펜타디엔 / 1,3-다이사이클로펜타디엔 이합체 / 1,3-사이클로펜타디엔 이합체 / 1,3-사이클로펜타디엔, 이합체 / 3a,4,7,7a-테트라하이드로-4,7-메타노인덴 / 4,7-메타노-1H-인덴, 3a,4,7,7,7a-테트라하이드로- / 4,7-메타노-3A,4,7,7A-테트라하이드로인덴 / 바이사이클로펜타디엔 / 사이클로펜타디엔 이합체 / 트라이사이클로(5.2.1.02,6)데카-3,8-디렌", + "unNumber": "1993", + "casNumber": "77-73-6", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 레진, 윤활유, 접착제, 엑포시, 폼, 실리콘 ,고무 등의 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCPD", + "name": "Dicyclopentadiene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 99, + "abbreviation": "DDBZN", + "nameKr": "도데실벤젠", + "nameEn": "DODECYL BENZENE", + "synonymsEn": "ALKYLBENZENE / LAURYLBENZENE / PHENYLDODECANE / N-LAURYLBENZENE / N-DODECYLBENZENE / 1-PHENYLDODECANE / Tetrapropylenbenzol / tetrapropylene-benzen / tetrapropylene-Benzene / Benzene, tetrapropylene-", + "synonymsKr": "테트라프로필렌벤젠", + "unNumber": "3077", + "casNumber": "123-01-3", + "transportMethod": "", + "sebc": "", + "usage": "합성 세제, 유지화학물질, 윤활유, 방수제 등 플라스틱 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DDBZN", + "name": "DODECYL BENZENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 100, + "abbreviation": "DEA", + "nameKr": "다이에탄올아민", + "nameEn": "Diethanolamine", + "synonymsEn": "DEA / Aliphatic amine / Diolamine / Diethanolamin / dela / Iminodiethanol / 2,2'-Azanediyldiethanol / 2-(2-hydroxyethylamino)ethanol / 2,2-IMINODIETHANOL / 2,2'-DIHYDROXYDIETHYLAMINE", + "synonymsKr": "2,2-이미노디에탄올 / 디올아민 / 2,2-이미노비스(에탄올) / 이미노디에탄올 / 다이에탄올아민 / 다이에탄올아민(디에탄올아민) / 디에탄올아민 / 비스(2-히드록시에틸)아민 / 2,2-디히드록시디에틸아민 / 디(2-히드록시에틸)아민 / 2-((2-히드록시에틸)아미노)에탄올 / 비스(히드록시에틸)아민(BIS / N,N-디에탄올아민 / B,B-디히드록시-디에틸아민 / 2,2'-이미노비스-에탄올 / 2,2’악사네딜-b-에탄올 / 2,2'-다이하이드록시다이에틸아민 / 2,2'-이미노다이에탄올 / 다이(2-하이드록시에틸)아민 / 비스(2-하이드록시에틸)아민 / N,N-디에탄올아민", + "unNumber": "1719", + "casNumber": "111-42-2", + "transportMethod": "", + "sebc": "", + "usage": "액체 세탁 및 식기 세척, 세제, 화장품, 샴푸 및 헤어 컨디셔너 등 사용 (계면활성제 성분)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DEA", + "name": "Diethanolamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 101, + "abbreviation": "DEG", + "nameKr": "다이에틸렌 글리콜", + "nameEn": "Diethylene glycol", + "synonymsEn": "DEG / Her / Diethylene glyco / DIGLYCOL / 2,2'-Oxybis(ethan-1-ol) / DIGOL / Diethylenglycol / Ethanol, 2,2'-oxybis- / Diethyleneglyc / Diethylenglykol", + "synonymsKr": "디에틸렌글리콜 / 다이에틸렌글리콜 / 비스(2-하이드록시에틸)에테르 / 다이에틸렌글리콜 / 다이에틸렌글라이콜 / 2,2'-옥시다이에탄올 / 다이에틸렌글라이콜(다만,비의도적잔류물로서0.1%이하인경우는제외) / 다이에틸렌 글리콜 / 2-(2-하이드록시에톡시)에탄올 / 2,2'-다이하이드록시에틸 에테르 / 3-옥시펜탄-1,5-디올 / 에틸렌 다이글리콜 / 2,2'-옥시비스에탄올", + "unNumber": "-", + "casNumber": "111-46-6", + "transportMethod": "", + "sebc": "", + "usage": "폴리에스터 수지, 폴리우레탄, 가소제, 합성수지 유화제 등의 원료로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DEG", + "name": "Diethylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 102, + "abbreviation": "DEHA", + "nameKr": "디옥틸아디페이트", + "nameEn": "Bis(2-ethylhexyl) adipate", + "synonymsEn": "DEHA / Hexanedioic acid, bis(2-ethylhexyl) ester / Diethylhexyl adipate / dioctyl / Beha / bis(2-ethylhexyl) / Bis(2-ethylhexyl)hexanedioate / hexanedioicacidbis(2-ethylhexyl)ester / PX-238 / mollans", + "synonymsKr": "DOA / 디(2-에틸헥실)아디프산 / 디옥틸아디페이트 / 다이에틸헥실아디페이트 / 비스(2-에틸헥실) 아디페이트 / 디(2-에틸헥실)아디페이트", + "unNumber": "3082", + "casNumber": "103-23-1", + "transportMethod": "", + "sebc": "", + "usage": "가소제, 유압유, 윤활유 PVC 기반 플라스틱 랩 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DEHA", + "name": "Bis(2-ethylhexyl) adipate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 103, + "abbreviation": "DEHP", + "nameKr": "디(2-에틸헥실)프탈레이트", + "nameEn": "Bis(2-ethylhexyl) phthalate", + "synonymsEn": "DEHP / DOP / DIOCTYL PHTHALATE / DEHP-D4 / 1,2-Benzenedicarboxylic acid, bis(2-ethylhexyl) ester / Behp / Diisocapryl phthalate / Di(ethylhexyl) phthalate / DI-2-ETHYLHEXYL PHTHALATE / di-sec", + "synonymsKr": "DOP / 디(2-에틸헥실)프탈레이트 / 디옥틸프탈레이트(DOP) / 디프탈산(D.O.P) / 비스(2-에틸헥실)프탈레이트 / 다이에틸헥실프탈레이트 / 비스(2-에틸헥실)프탈레이트 / 비스(2-에틸헥실) 프탈레이트 / 2-에틸헥실프탈레이트", + "unNumber": "-", + "casNumber": "117-81-7", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱의 유연성을 높이기 위해 사용되는 대표적인 가소제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DEHP", + "name": "Bis(2-ethylhexyl) phthalate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 104, + "abbreviation": "DER", + "nameKr": "디글리시딜 에테르", + "nameEn": "DIGLYCIDYL ETHER", + "synonymsEn": "dge / nsc54739 / glycidylether / ether,diglycidyl / DIGLYCIDYL ETHER / oxydedediglycidyle / 2-epoxypropylether / diallyletherdioxide / Diglycidyl ether,95% / Di(2-epoxypropyl)ether", + "synonymsKr": "디글리시딜에테르 / 다이글라이시딜 에테르", + "unNumber": "-", + "casNumber": "1675-54-3", + "transportMethod": "", + "sebc": "", + "usage": "에폭시 수지의 반응성 회석제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DER", + "name": "DIGLYCIDYL ETHER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 105, + "abbreviation": "DGE", + "nameKr": "디글리시딜 에테르", + "nameEn": "DIGLYCIDYL ETHER", + "synonymsEn": "dge / nsc54739 / glycidylether / ether,diglycidyl / DIGLYCIDYL ETHER / oxydedediglycidyle / 2-epoxypropylether / diallyletherdioxide / Diglycidyl ether,95% / Di(2-epoxypropyl)ether", + "synonymsKr": "디글리시딜에테르 / 다이글라이시딜 에테르", + "unNumber": "-", + "casNumber": "1675-54-3", + "transportMethod": "", + "sebc": "", + "usage": "에폭시 수지의 반응성 회석제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DGE", + "name": "DIGLYCIDYL ETHER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 106, + "abbreviation": "DIB", + "nameKr": "디이소부틸렌", + "nameEn": "DIISOBUTYLENE", + "synonymsEn": "Diisobutylene (DIB) / DIB 2 / Two isobutylene / Diisobutylene 2,4,4-trimethyl-penten / 2,2,4-Trimethylpentene / Pentene, 2,4,4-trimethyl- / diisobutylene,isomericcompounds / DIISOBUTYLENE(MIXTURE OF ISOMERS) / DIISOBUTYLENE ISO 9001:2015 REACH", + "synonymsKr": "2,4,4-트리메틸펜텐 / 2,4,4-트리메틸펜텐 / 다이아이소뷰틸렌", + "unNumber": "2050", + "casNumber": "25167-70-8", + "transportMethod": "", + "sebc": "", + "usage": "주로 연료, 윤활유, 고분자 화학물 제조 등에 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIB", + "name": "DIISOBUTYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 107, + "abbreviation": "DIBK", + "nameKr": "디이소부틸케톤", + "nameEn": "DIISOBUTYL KETONE", + "synonymsEn": "2,6-Dimethyl-4-heptanone / DIBK / DIISOBUTYL KETONE / ISOBUTYL KETONE / 2,6-Dimethylheptan-4-one / VALERONE / FEMA 3537 / NSC 15136 / isovaleron / NSC 406913 / ISOVALERONE", + "synonymsKr": "다이아이소부틸케톤 / 다이아이소부틸케톤(디이소부틸케톤) / 디이소부틸케톤 / 다이아이소뷰틸케톤 / 다이아이소부틸 케톤 / 2,6-다이메틸-4-헵탄온 / 2,6-다이메틸헵탄-4-온 / 디아이비케이 / 발러론", + "unNumber": "1157", + "casNumber": "108-83-8", + "transportMethod": "", + "sebc": "", + "usage": "주로 합성 및 공정 약품, 실험 연구용 시약 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIBK", + "name": "DIISOBUTYL KETONE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 108, + "abbreviation": "DICOL", + "nameKr": "다이에틸렌 글리콜", + "nameEn": "Diethylene glycol", + "synonymsEn": "DEG / Her / Diethylene glyco / DIGLYCOL / 2,2'-Oxybis(ethan-1-ol) / DIGOL / Diethylenglycol / Ethanol, 2,2'-oxybis- / Diethyleneglyc / Diethylenglykol", + "synonymsKr": "디에틸렌글리콜 / 다이에틸렌글리콜 / 비스(2-하이드록시에틸)에테르 / 다이에틸렌글리콜 / 다이에틸렌글라이콜 / 2,2'-옥시다이에탄올 / 다이에틸렌글라이콜(다만,비의도적잔류물로서0.1%이하인경우는제외) / 다이에틸렌 글리콜 / 2-(2-하이드록시에톡시)에탄올 / 2,2'-다이하이드록시에틸 에테르 / 3-옥시펜탄-1,5-디올 / 에틸렌 다이글리콜 / 2,2'-옥시비스에탄올", + "unNumber": "-", + "casNumber": "111-46-6", + "transportMethod": "", + "sebc": "", + "usage": "폴리에스터 수지, 폴리우레탄, 가소제, 용매, 습윤제 탈수제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DICOL", + "name": "Diethylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 109, + "abbreviation": "DIPP", + "nameKr": "디이소데실프탈산", + "nameEn": "Diisodecyl phthalate", + "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISODECYL ESTER ·BIS(ISODECYL) PHTHALATE ·DIDP ·DIDP (PLASTICIZER) ·PHTHALIC ACID, BIS(8-METHYLNONYL) ESTER ·PHTHALIC ACID, DIISODECYL ESTER ·PLASTICIZED DDP ·PX 120 ·SICOL 184 ·Phthalic acid, diisodecyl ester ·bis(isodecyl phthalate) ·DIDP ·DisoDP ·1, 2 benzenedicarboxylic acid, diisodecyl ester ·1, 2-benzenedicarboxylic acid, di-(C9-C11) branched chain alkyl ester", + "synonymsKr": "·벤젠다이카복실산, 다이아이소데실 에스터 ·비스(아이소데실) 프탈레이트 ·프탈익산, 비스(8-메틸노닐) 에스터 ·프탈익 산, 다이아이소데실 에스터 ·프탈익산, 다이아이소데실 에스터 ·비스(아이소데실 프탈레이트) ·1, 2 벤젠다이카복실산, 다이아이소데실 에스터 ·1, 2-벤젠다이카복실산, 다이-(C9-C11) 알킬 에스터 체인", + "unNumber": "3082", + "casNumber": "26761-40-0", + "transportMethod": "", + "sebc": "", + "usage": "케이블, 자동차 내장재, 컨베이어 벨트, 플라스티졸, 코팅 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIPP", + "name": "Diisodecyl phthalate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 110, + "abbreviation": "DIDP", + "nameKr": "디이소데실 프탈레이트", + "nameEn": "Diisodecyl phthalate", + "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISODECYL ESTER ·BIS(ISODECYL) PHTHALATE ·DIDP ·DIDP (PLASTICIZER) ·PHTHALIC ACID, BIS(8-METHYLNONYL) ESTER ·PHTHALIC ACID, DIISODECYL ESTER ·PLASTICIZED DDP ·PX 120 ·SICOL 184 ·Phthalic acid, diisodecyl ester ·bis(isodecyl phthalate) ·DIDP ·DisoDP ·1, 2 benzenedicarboxylic acid, diisodecyl ester ·1, 2-benzenedicarboxylic acid, di-(C9-C11) branched chain alkyl ester", + "synonymsKr": "·벤젠다이카복실산, 다이아이소데실 에스터 ·비스(아이소데실) 프탈레이트 ·프탈익산, 비스(8-메틸노닐) 에스터 ·프탈익 산, 다이아이소데실 에스터 ·프탈익산, 다이아이소데실 에스터 ·비스(아이소데실 프탈레이트) ·1, 2 벤젠다이카복실산, 다이아이소데실 에스터 ·1, 2-벤젠다이카복실산, 다이-(C9-C11) 알킬 에스터 체인", + "unNumber": "3082", + "casNumber": "26761-40-0", + "transportMethod": "", + "sebc": "", + "usage": "케이블, 자동차 내장재, 컨베이어 벨트, 플라스티졸, 코팅 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIDP", + "name": "Diisodecyl phthalate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 111, + "abbreviation": "DINP", + "nameKr": "다이아이소노닐프탈산", + "nameEn": "DIISONONYL PHTHALATE", + "synonymsEn": "Diisononyl phthalate / BIS(3,5,5-TRIMETHYLHEXYL) PHTHALATE / 1,2-benzenedicarboxylicacid,di-c8-c10-branchedalkylester,c9-rich / DINP-1 / Diisononyl phthalate / DI(ISONONYL)PHTHALATE1 / Dialkyl-(C8-C10)phthalate / Diisononyl Phthalate Bis(3,5,5-trimethylhexyl) / DIISONONYL PHTHALATE, TECH. / DI-ISONONYLPHTHALATE,BRANCHED", + "synonymsKr": "프탈산디이소노닐에스테르/ 다이아이소노닐프탈산 / 디이소노닐프탈산 / 프탈산디이소노닐에스테르 / 다이아이소노닐프탈산/ 1,2-벤젠다이카복실산, 다이(C=8-10) 가지친 알킬 에스터, (C=9)-풍부 / 1,2-벤젠다이카복실산, 다이-C8-10 가지친 알킬 에스터, C9-풍부 / 1,2-벤젠다이카복실산, 다이-C8-10-가지친 알킬 에스터, C9-풍부", + "unNumber": "3082", + "casNumber": "68515-48-0", + "transportMethod": "", + "sebc": "", + "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도 조정제 등으로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DINP", + "name": "DIISONONYL PHTHALATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 112, + "abbreviation": "DMC", + "nameKr": "디메틸 카보네이트", + "nameEn": "DIMETHYL CARBONATE", + "synonymsEn": "Dimethyl carbonate / METHYL CARBONATE / CARBONIC ACID DIMETHYL ESTER / Dimethylcarbonat / dimetyl carbonate / methylcarbonate((meo)2co) / CH3OCOOCH3 / Dimethylcarbonate,99% / DMC / dimethly carbonate", + "synonymsKr": "다이메틸카보네이트 / 다이메틸카르보네이트 / 디메틸카보네이트 / 다이메틸카르보네이트 / 다이메틸 카보네이트", + "unNumber": "1161", + "casNumber": "616-38-6", + "transportMethod": "", + "sebc": "", + "usage": "제약, 산업용 살충제, 휘발유 첨가제, 전해액 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMC", + "name": "DIMETHYL CARBONATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 113, + "abbreviation": "DMDS", + "nameKr": "이황화메틸", + "nameEn": "DIMETHYL DISULPHIDE", + "synonymsEn": "Dimethyl disulfide / DMDS / 1,2-dimethyldisulfane / mds / Disulfide,dimethyl / (CH3S)2 / DiMethyl disul / Dimethyldisulfid / 143B / FEMA 3536", + "synonymsKr": "디메틸디설파이드 / 디메틸디설파이드 / 메틸 다이설파이드 / 다이메틸다이설파이드 / 디메틸이황화물", + "unNumber": "2381", + "casNumber": "624-92-0", + "transportMethod": "", + "sebc": "", + "usage": "토양 훈증제, 황화제, 살충제, 중간체, 연료 및 윤활유 첨가제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMDS", + "name": "DIMETHYL DISULPHIDE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 114, + "abbreviation": "DMF", + "nameKr": "N,N-다이메틸폼아마이드", + "nameEn": "DIMETHYLFORMAMIDE", + "synonymsEn": "N,N-Dimethylformamide / DMF / DMFA / amide,n,n-dimethyl-formicaci / Dimethylformamid / HCON(CH3)2 / Dimethylforamide / DIMETHYL FORMIDE / N,N-Dimethylmethanamide / EMF", + "synonymsKr": "다이메틸폼아마이드 / N,N-다이메틸폼아마이드 / N,N-디메틸포름아미드 / N-포밀다이메틸아민 / 디메틸포름아미드 / 디엠에프 / N,N-다이메틸포름아마이드 / 다이메틸포름아마이드", + "unNumber": "2265", + "casNumber": "68-12-2", + "transportMethod": "", + "sebc": "", + "usage": "합성피혁, 섬유, 화학제품 생산 공정에서 용매나 첨가제로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMF", + "name": "DIMETHYLFORMAMIDE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 115, + "abbreviation": "DMFA", + "nameKr": "N,N-다이메틸폼아마이드", + "nameEn": "DIMETHYLFORMAMIDE", + "synonymsEn": "N,N-Dimethylformamide / DMF / DMFA / amide,n,n-dimethyl-formicaci / Dimethylformamid / HCON(CH3)2 / Dimethylforamide / DIMETHYL FORMIDE / N,N-Dimethylmethanamide / EMF", + "synonymsKr": "다이메틸폼아마이드 / N,N-다이메틸폼아마이드 / N,N-디메틸포름아미드 / N-포밀다이메틸아민 / 디메틸포름아미드 / 디엠에프 / N,N-다이메틸포름아마이드 / 다이메틸포름아마이드", + "unNumber": "2265", + "casNumber": "68-12-2", + "transportMethod": "", + "sebc": "", + "usage": "합성피혁, 섬유, 화학제품 생산 공정에서 용매나 첨가제로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMFA", + "name": "DIMETHYLFORMAMIDE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 116, + "abbreviation": "DMK", + "nameKr": "아세톤", + "nameEn": "DIMETHYLKETAL", + "synonymsEn": "propan-2-one / aceton / 2-Propanone / (CH3)2CO / ACETONE ALCOHOL / Propan-1-one / Propanon / 2-Propanon / Dimethylketal / GRAMS DECOLORIZER", + "synonymsKr": "/ 아세톤 / 디메틸포름알데히드 / 베타-케토프로판 / 프로파논엔 / 2-프로파논 / 디메틸케톤 / 디메틸케톤,2-프로파논 / 메틸케톤 / 피로아세트에테르 / 다이메틸 케톤 / 다이메틸포름알데하이드 / 메틸 케톤 / 피로아세트 에테르", + "unNumber": "1090", + "casNumber": "67-64-1", + "transportMethod": "", + "sebc": "", + "usage": "페인트, 코팅제, 접착제, 화장품 등 다양한 제품 제조에 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMK", + "name": "DIMETHYLKETAL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 117, + "abbreviation": "DML", + "nameKr": "디메틸실록산", + "nameEn": "DIMETHYLPOLYSILOXANE", + "synonymsEn": "Poly(dimethylsiloxane) / Simethicone / Dimethylpolysiloxane / SILICONE FLUID / POLYDIMETHYLSILOXANE, TRIMETHYLSILOXY TERM / baros / silain / Dimethylpolysiloxan / Simethicone Emulsion 30% / dimethyl(l1-oxidaneyl)-l3-silane / POLYDIMETHYLSILOXANES, TRIMETHYLSILOXY TERMINATED", + "synonymsKr": "다이메틸폴리실록산 / 다이메틸폴리실록산 / 다이메틸폴리실록산/ 폴리(디메틸실록산)", + "unNumber": "-", + "casNumber": "9016-00-6", + "transportMethod": "", + "sebc": "", + "usage": "화학 및 식품 산업에서 소포제, 화장품의 계면 활성제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DML", + "name": "DIMETHYLPOLYSILOXANE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 118, + "abbreviation": "DOA", + "nameKr": "디옥틸아디페이트", + "nameEn": "DIOCTYLADIPATE", + "synonymsEn": "Bis(2-ethylhexyl) adipate / DEHA / Hexanedioic acid, bis(2-ethylhexyl) ester / Diethylhexyl adipate / dioctyl / Beha / bis(2-ethylhexyl) / Bis(2-ethylhexyl)hexanedioate / hexanedioicacidbis(2-ethylhexyl)ester / PX-238 / mollans", + "synonymsKr": "디옥틸아디페이트 / DOA / 디(2-에틸헥실)아디프산 / 디옥틸아디페이트 / 다이에틸헥실아디페이트 / 비스(2-에틸헥실) 아디페이트 / 디(2-에틸헥실)아디페이트", + "unNumber": "3082", + "casNumber": "103-23-1", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 고무, 잉크 , 접착제, 페인트, 윤활유 등 다양한 분야에서 가소제 및 첨가제로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOA", + "name": "DIOCTYLADIPATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 119, + "abbreviation": "DOTP", + "nameKr": "디옥틸 테레프탈산", + "nameEn": "DIOCTYL TEREPHTHALATE", + "synonymsEn": "Dioctyl terephthalate / DOTP / BIS(2-ETHYLHEXYL) TEREPHTHALATE / DOPT / Dioctyl Terepthalate / Di(2-ethylhexyl)terephthalate / BIS(2-ETHYLHEXYL)-1,4-BENZENEDICARBOXYLATE / 168 plasticizer / 1,4-Benzenedicarboxylic acid, 1,4-bis(2-ethylhexyl) ester / Dioctyl terephthalate,Bis(2-ethylhexyl) terephthalate, PA-6 Plasticizer adhesive / DP-28", + "synonymsKr": "디옥틸테레프탈산 / 디옥틸테레프탈산 / 다이에틸헥실테레프탈레이트", + "unNumber": "-", + "casNumber": "6422-86-2", + "transportMethod": "", + "sebc": "", + "usage": "가소제, 특히 케이블 재료에 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOTP", + "name": "DIOCTYL TEREPHTHALATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 120, + "abbreviation": "DPG", + "nameKr": "옥시비스프로판올", + "nameEn": "DIPROPYLENE GLYCOL", + "synonymsEn": "·PROPANOL, OXYBIS- ·EPA Pesticide Chemical Code 068604 ·4-Oxa-2,6-heptandiol ·Dipropylene glycol (6CI) ·Dipropyleneglycol ·Dipropylenglykol 1,1'-Oxybis(2-propanol) ·Oxybispropanol ·Di-1,2-propylene glycol ·2, 2'-Dihydroxydipropyl ether ·2, 2-'Dihydroxyisopropyl ether ·1, 1'Oxydi-2-propanol ·1, 1'-Oxybis-2-propanol ·Bis(2-Hydroxypropyl)ether ·1, 1'-Dimethyldiethylene glycol ·2, 2'-Dihydroxydiisopropyl ether ·2, 2'-Dihydroxydipropyl ether ·2-Hydroxypropyl-2'-hydroxyisopropyl ether", + "synonymsKr": "·프로판올, 옥시비스- ·EPA 살충제 Chemical Code 068604 ·4-옥사-2,6-헵탄다이올 ·다이프로필렌 글리콜 (6CI) ·다이프로필렌글리콜 ·다이프로필렌글리콜 1,1'-옥시비스(2-프로판올) ·옥시비스프로판올 ·다이-1,2-프로필렌 글리콜 ·2, 2'-다이하이드록시다이프로필 에테르 ·2, 2-'다이하이드록시아이소프로필 에테르 ·1, 1'옥시다이-2-프로판올 ·1, 1'-옥시비스-2-프로판올 ·비스(2-하이드록시프로필)에테르 ·1, 1'-다이메틸다이에틸렌 글리콜 ·2, 2'-다이하이드록시다이아이소프로필 에테르 ·2, 2'-다이하이드록시다이프로필 에테르 ·2-하이드록시프로필-2'-하이드록시아이소프로필 에테르", + "unNumber": "-", + "casNumber": "25265-71-8", + "transportMethod": "", + "sebc": "", + "usage": "화장품 원료, 솔벤트, 식품 첨가제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPG", + "name": "DIPROPYLENE GLYCOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 121, + "abbreviation": "CDP", + "nameKr": "크레질 디페닐 포스페이트", + "nameEn": "DIPHENYL CRESYL PHOSHATE", + "synonymsEn": "diphenyl CRESYL PHOSPHATE / MONOCRESYL DIPHENYL PHOSPHATE / METHYLPHENYL DIPHENYL PHOSPHATE / 3-METHYLPHENYL DIPHENYL", + "synonymsKr": "메틸페닐디페닐인산 / 크로질디페닐포스페이트 / 메틸페닐디페닐인산 / 다이페닐 인산 크레실 / 다이페닐 인산 톨릴", + "unNumber": "-", + "casNumber": "26444-49-5", + "transportMethod": "", + "sebc": "", + "usage": "나연제 및 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CDP", + "name": "DIPHENYL CRESYL PHOSHATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 122, + "abbreviation": "DPK", + "nameKr": "크레질 디페닐 포스페이트", + "nameEn": "DIPHENYL CRESYL PHOSHATE", + "synonymsEn": "diphenyl CRESYL PHOSPHATE / MONOCRESYL DIPHENYL PHOSPHATE / METHYLPHENYL DIPHENYL PHOSPHATE / 3-METHYLPHENYL DIPHENYL", + "synonymsKr": "메틸페닐디페닐인산 / 크로질디페닐포스페이트 / 메틸페닐디페닐인산 / 다이페닐 인산 크레실 / 다이페닐 인산 톨릴", + "unNumber": "-", + "casNumber": "26444-49-5", + "transportMethod": "", + "sebc": "", + "usage": "나연제 및 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPK", + "name": "DIPHENYL CRESYL PHOSHATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 123, + "abbreviation": "MDI", + "nameKr": "메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산)", + "nameEn": "METHYLENEDIPHENYL 4,4-DIISOCYANATE", + "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", + "synonymsKr": "4,4′-메틸렌 비스(페닐 이소시아네이트)(고체) / 4,4'-디페닐메탄디이소시아네이트 / 4,4′-메틸렌비스(페닐이소시아네 / 4,4′-메틸렌비스(페닐이소시아네이트)(고체) / 메틸렌디(비스)페닐4,4‘-디이소시아네이트 / 메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산) / 4,4'-메틸렌디(비스)페닐디이소시아네이트 / 메틸렌비스(4-페닐아이소사이아네이트) / 4,4'-디이소시안산 디페닐메탄 / 4,4-디이소시안산디페닐메탄 / 메틸렌비스페닐이소시아네이트", + "unNumber": "2206", + "casNumber": "101-68-8", + "transportMethod": "", + "sebc": "", + "usage": "단열재, 건축재, 접착제, 스판덱스. 합성피혁 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MDI", + "name": "METHYLENEDIPHENYL 4,4-DIISOCYANATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 124, + "abbreviation": "NARO", + "nameKr": "논-아로마틱스", + "nameEn": "NON AROMATIC RAFFINATE", + "synonymsEn": "NON AROMATIC RAFFINATE", + "synonymsKr": "비방향족 혼합물(연료 첨가제, 공업용 용제원료)", + "unNumber": "-", + "casNumber": "64741-46-4 96-37-7 110-54-3 110-82-7", + "transportMethod": "", + "sebc": "", + "usage": "연료 첨가제, 공업용 용제원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NARO", + "name": "NON AROMATIC RAFFINATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 125, + "abbreviation": "BUTANE", + "nameKr": "부탄", + "nameEn": "n-Butane", + "synonymsEn": "n-Butane / BUTANE / r600 / n-Butan / Batane / n-C4H10 / BUTANES / 1-Butane / A-17 / Q GAS / Bu-Gas", + "synonymsKr": "부탄 / 부탄 / 부타디엔0.1%w/w이상함유하는부탄", + "unNumber": "1011", + "casNumber": "106-97-8", + "transportMethod": "", + "sebc": "", + "usage": "라이터, 버너 등 휴대용 연료 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BUTANE", + "name": "n-Butane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 126, + "abbreviation": "HRAFF", + "nameKr": "헤비 라피네이트", + "nameEn": "Hydrocarbons, C5-8", + "synonymsEn": "Hydrocarbons, C5-8", + "synonymsKr": "헤비 라피네이트", + "unNumber": "-", + "casNumber": "92128-65-9", + "transportMethod": "", + "sebc": "", + "usage": "사이클로헥산, 헥산 등의 제조 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HRAFF", + "name": "Hydrocarbons, C5-8", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 127, + "abbreviation": "IP", + "nameKr": "이소프렌", + "nameEn": "Isoprene", + "synonymsEn": "Isoprene / 2-METHYL-1,3-BUTADIENE / ACETATE BUFFER / BUFFER SOLUTION / SODIUM ACETATE BUFFER / lsoprene / BUFFER PH7.20 / BUFFER PH 4.65 / Isoprene, stabilized / 2-Methyl-1,3-butadien / nsc9237", + "synonymsKr": "이소프렌(2-메틸-1,3-부타디엔) / 펜탄디엔 / 2-메틸-1,3-부타디엔 / 이소프렌 / 이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌 / 1,3-부타디엔, 2-메틸-", + "unNumber": "1218", + "casNumber": "78-79-5", + "transportMethod": "", + "sebc": "", + "usage": "합성고무, 타이어 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.13, 15.14, 15.17, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IP", + "name": "Isoprene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 128, + "abbreviation": "NB-1", + "nameKr": "부텐1", + "nameEn": "1-BUTENE", + "synonymsEn": "1-BUTENE / But-1-ene / Butene-1 / 1-C4H8 / 1-BUTYLENE / Ethylethylene / 1-BUTENE / N-BUTENE / -Butylene / n-Buten-1 / 1-N-BUTENE", + "synonymsKr": "1-부텐 / 1-부텐 / 1부텐", + "unNumber": "1012", + "casNumber": "106-98-9", + "transportMethod": "", + "sebc": "", + "usage": "폴리에틸렌 등 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NB-1", + "name": "1-BUTENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 129, + "abbreviation": "BTX", + "nameKr": "조경유", + "nameEn": "BENZENE, TOLUENE, XYLENE 등 방향족 탄화수소 통칭", + "synonymsEn": "BENZENE, TOLUENE, XYLENE 등 방향족 탄화수소 통칭", + "synonymsKr": "벤젠, 툴루엔, 자일렌 통칭", + "unNumber": "1202", + "casNumber": "8002-31-9", + "transportMethod": "", + "sebc": "", + "usage": "벤젠, 톨루엔, 자일렌 제조 플라스틱, 합성고무, 세제, 농약 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BTX", + "name": "BENZENE, TOLUENE, XYLENE 등 방향족 탄화수소 통칭", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 130, + "abbreviation": "HCI", + "nameKr": "염산", + "nameEn": "HYDROCHLORIC ACID", + "synonymsEn": "Hydrochloric acid / HCL / Hydrogen chloride / chlorane / Hydrochloric Acid, 6N Volumetric Solution / Itaconic / hydrogen chloride solution / Acide chlorhydrique / Hydrochloric Acid, 36.5-38.0% / Hydrocholoride / Hydrogenchlorid", + "synonymsKr": "0.1노르말(몰)염산 / 6노르말염산 / N/2-염산(0.5M) / N/20-염산(0.05M) / N/5-염산(0.2M) / N/50염산 / 염산 / 염산10% / 염산20% / 염산30% / 염산9% / 염산수용액(액체) / 염화수소 / 히드로클로르산0.05N / 염화수소산 / 수소염화물 / 무수염산 / 염산가스 / 무리아틱산 / 염화수소", + "unNumber": "1789", + "casNumber": "7647-01-0", + "transportMethod": "", + "sebc": "", + "usage": "PH조절, 중화 및 화학물질 합성, 금속 표면 처리, 폐수 처리 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HCI", + "name": "HYDROCHLORIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 131, + "abbreviation": "CREOSOTE", + "nameKr": "크레오소트", + "nameEn": "CRESOSTE", + "synonymsEn": "CREOSOTE / taroil / awpa#1 / heavyoil / CREOSATE / brickoil / creosotum / creosotep1 / creosoteoil / CARBOLINEUM / sakresote100", + "synonymsKr": "크레오소트유 / 콜타르크레오소트 / 크레오소트유 / 벤조(a)피렌(benzo(a)pyrene)0.005%를초과하여함유하고있는크레오소트 / 석탄 타르 크레오소트", + "unNumber": "1136", + "casNumber": "8001-58-9", + "transportMethod": "", + "sebc": "", + "usage": "카본블랙, 방부제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CREOSOTE", + "name": "CRESOSTE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 132, + "abbreviation": "IPM", + "nameKr": "이소프렌", + "nameEn": "", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "78-79-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPM", + "name": "", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 133, + "abbreviation": "HRPG", + "nameKr": "중질분해가솔린", + "nameEn": "PYROLYSIS GASOLINE", + "synonymsEn": "PYROLYSIS GASOLINE", + "synonymsKr": "열분해 가솔린", + "unNumber": "1203", + "casNumber": "64741-54-5", + "transportMethod": "", + "sebc": "", + "usage": "방향족 공장 연료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HRPG", + "name": "PYROLYSIS GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 134, + "abbreviation": "BUTENE", + "nameKr": "부텐-1", + "nameEn": "1-BUTENE", + "synonymsEn": "1-BUTENE / But-1-ene / Butene-1 / 1-C4H8 / 1-BUTYLENE / Ethylethylene / 1-BUTENE / N-BUTENE / -Butylene / n-Buten-1 / 1-N-BUTENE", + "synonymsKr": "1-부텐 / 1-부텐 / 1부텐", + "unNumber": "1012", + "casNumber": "106-98-9", + "transportMethod": "", + "sebc": "", + "usage": "폴리에틸렌 등 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BUTENE", + "name": "1-BUTENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 135, + "abbreviation": "MD", + "nameKr": "메틸프로판디올", + "nameEn": "METHYLPROPANEDIOL", + "synonymsEn": "2-METHYL-1,3-PROPANEDIOL / METHYLPROPANEDIOL / 2-methylpropane-1,3-diol / 2-Methyl-1,3-propanediol (MPO) / MP Diol / MPDIOL(R) / MPDIOL MPD / MP diol glycol / MPDIOL(R) GLYCOL / β-Hydroxyisobutanol / 2-methyl-3-propanediol", + "synonymsKr": "2-메틸-1,3-프로판디올 / 2-메틸-1,3-프로판디올 / 메틸프로판다이올", + "unNumber": "", + "casNumber": "2163-42-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MD", + "name": "METHYLPROPANEDIOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 136, + "abbreviation": "EA", + "nameKr": "아크릴산에틸", + "nameEn": "ETHYL ACRYLATE", + "synonymsEn": "Ethyl acrylate / Ethy Acrylate / FEMA 2418 / Ethyl propenoate / ETHYL 2-PROPENOATE / ACRYLIC ACID ETHYL ESTER / Ethyl acrylate, stabilized / 2-988 / NCI-C50384 / carboset511 / Carboset 511", + "synonymsKr": "아크릴산에틸 / 2-프로펜오익산,에틸에스테르 / 아크릴산,에틸에스테르 / 아크릴에스테르E / 아클릴릭애시드에틸에스테르 / 에톡시카르보닐에틸렌 / 에틸2-프로펜오에이트 / 에틸아크릴릭에스테르 / 에틸아크릴레이트 / 이틸아크릴레이트 / 아크릴산에틸에스테르 / 에틸아크릴산 / 에틸프로펜오에이트 / 에틸프로렌오에이트 / 에틸아크릴레이트 / 에틸 아크릴레이트 / 2-프로페노익산, 에틸 에스터 / 아크릴산 에틸 에스터 / 에틸 프로-2-에노에이트 / 에틸 프로페노에이트", + "unNumber": "1173", + "casNumber": "140-88-5", + "transportMethod": "", + "sebc": "", + "usage": "용매, 착향제, 디카페인 용매 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.13, 15.17 , 15.19, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EA", + "name": "ETHYL ACRYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 137, + "abbreviation": "EAC", + "nameKr": "아틸아세테이트", + "nameEn": "Ethyl acetate", + "synonymsEn": "Ethyl acetate / EtOAc / ETOH / ALCOHOL / yisuanyizhi / ETHYL ETHANOATE / ACETIC ACID ETHYL ESTER / ETHANOL ABSOLUTE / METHYLATED SPIRIT / CH3COOC2H5 / ACETIC ETHER", + "synonymsKr": "아세트산에틸 / 메틸아세틸에스테르 / 비네가나프타 / 아세톡시에탄 / 아세트에테르 / 아세트에스테르 / 아세트산에틸에스테르 / 아세티딘 / 에틸에탄오에이트 / 에틸아세트산 / 초산에틸 / 초산에틸,무수물 / 초산에틸에스테르 / 무수에탄올 / 초산에틸 / 에틸아세테이트 / 아세테이트 에틸 / 아세트산 에틸", + "unNumber": "1173", + "casNumber": "141-78-6", + "transportMethod": "", + "sebc": "", + "usage": "내일케어 제품, 페인트, 코팅, 접착제, 식품첨가물, 의약품, 향료 풍미 소재 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EAC", + "name": "Ethyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 138, + "abbreviation": "ETHANOL", + "nameKr": "에틸알코올", + "nameEn": "ETHYL ALCOHOL", + "synonymsEn": "Ethanol / Ethyl alcohol / C2H5OH / Absolute ethanol / Etanol / ALCOHOL DENAT. / Dehydrated Alcohol / Ethanol min. 99,9 % / 75% Ethanol / ETHANOL CONTROL-H / Denatured ethanol", + "synonymsKr": "/ 에틸알코올 / 그래인알코올 / 알그래인 / 알코올 / 에틸수산화물 / 에틸알코올,100% / 재이솔 / 95%합성(변성)에탄올 / 메틸카르비놀 / 무수에탄올 / 브롬페놀블루용액 / 안히드롤 / 알코올무수물 / 에타놀 / 에탄올 / 에탄올70%소독 / 에탄올70~75% / 에탄올Ethanol / 에탄올무수", + "unNumber": "1070", + "casNumber": "64-17-5", + "transportMethod": "", + "sebc": "", + "usage": "소독제, 용매, 연료 그리고 일부 약물 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ETHANOL", + "name": "ETHYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 139, + "abbreviation": "ETOH", + "nameKr": "알코올", + "nameEn": "ETHYL ALCOHOL", + "synonymsEn": "Ethanol / Ethyl alcohol / C2H5OH / Absolute ethanol / Etanol / ALCOHOL DENAT. / Dehydrated Alcohol / Ethanol min. 99,9 % / 75% Ethanol / ETHANOL CONTROL-H / Denatured ethanol", + "synonymsKr": "/ 에틸알코올 / 그래인알코올 / 알그래인 / 알코올 / 에틸수산화물 / 에틸알코올,100% / 재이솔 / 95%합성(변성)에탄올 / 메틸카르비놀 / 무수에탄올 / 브롬페놀블루용액 / 안히드롤 / 알코올무수물 / 에타놀 / 에탄올 / 에탄올70%소독 / 에탄올70~75% / 에탄올Ethanol / 에탄올무수", + "unNumber": "1070", + "casNumber": "64-17-5", + "transportMethod": "", + "sebc": "", + "usage": "소독제, 용매, 연료 그리고 일부 약물 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ETOH", + "name": "ETHYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 140, + "abbreviation": "EB", + "nameKr": "에틸벤젠", + "nameEn": "ETHYL BENZENE", + "synonymsEn": "Ethylbenzene / ET2O / EB / ETHOXYETHANE / Benzene, ethyl- / PHENYLETHANE / DIETHYL OXIDE / ethylenzene / Ethylbenzol / ETHYL OXIDE / Etilbenzene", + "synonymsKr": "에틸벤젠 / 에틸번젠", + "unNumber": "1175", + "casNumber": "100-41-4", + "transportMethod": "", + "sebc": "", + "usage": "스티렌 생산의 중간물질로 사용 가솔린의 안티 노킹제, 고무 접착제, 페인트, 잉크 용제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EB", + "name": "ETHYL BENZENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 141, + "abbreviation": "EBO", + "nameKr": "에틸렌다이올레아마이드", + "nameEn": "ETHYLENE DIOLEAMIDE", + "synonymsEn": "N,N'-ETHYLENEBISOLEAMIDE / EBO / BSO / n,n’-ethane-1, / Glycolube(R) VL / Ethylenebisoleamide / ETHYLENE DIOLEAMIDE / N,N'-ETHYLENEBISOLEAMIDE / 9-Octadecenamide, N,N'Ethylene Bis Oleamide(EBO) / N,N'-Ethylenebisoleic amide", + "synonymsKr": "에틸렌다이올레아마이드 / N,N'-에틸렌비솔아미드", + "unNumber": "-", + "casNumber": "110-31-6", + "transportMethod": "", + "sebc": "", + "usage": "폴리올레핀 필름 생산 시 미 끄럼제 및 윤활제 고무 및 플라스틱 등 다양한 재료의 성형 시 이형제 로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EBO", + "name": "ETHYLENE DIOLEAMIDE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 142, + "abbreviation": "ECH", + "nameKr": "에피클로로하이드린", + "nameEn": "EPICHLOROHYDRIN", + "synonymsEn": "Epichlorohydrin / ECH / 2-(Chloromethyl)oxirane / EPICHLOROHYDRINE / EPICHLORHYDRIN / 1-CHLORO-2,3-EPOXYPROPANE / Epichlorhydrine / ALPHA-EPICHLOROHYDRIN / New product 99.9% purity CAS 106-89-8 Epichlorohydrin CAS NO.106-89-8 Manufacturers wholesale / Epicloridrina / J006", + "synonymsKr": "(클로로메틸)에틸렌산화물 / 에피클로로하이드린 / 에피클로로히드린 / 에피클로로히드린(ECH) / 1-클로로-2,3-에폭시프로판 / 3-클로로프로필렌산화물 / 감마-클로로프로필렌산화물 / 글리세롤에피클로로히드린 / 클로로메틸옥시란", + "unNumber": "2033", + "casNumber": "106-89-8", + "transportMethod": "", + "sebc": "", + "usage": "주로 에폭시 수지 제조 시 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ECH", + "name": "EPICHLOROHYDRIN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 143, + "abbreviation": "EDA", + "nameKr": "에틸렌다이아민", + "nameEn": "ETHYLENEDIAMINE", + "synonymsEn": "Ethylenediamine / EDA / ETHANE-1,2-DIAMINE / 1,2-DIAMINOETHANE / YEA / 1,2-ETHANEDIAMINE / Ethylendiamine / 1,2-Ethylenediamine / Diaminoethane / H2NCH2CH2NH2 / Ethyleendiamine", + "synonymsKr": "1,2-디아미노에탄 / 에틸렌다이아민 / 에틸렌디아민", + "unNumber": "1604", + "casNumber": "107-15-3", + "transportMethod": "", + "sebc": "", + "usage": "유기합성 원료, 섬유 처리제, EDTA 수지 등 제조원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EDA", + "name": "ETHYLENEDIAMINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 144, + "abbreviation": "ENB", + "nameKr": "에틸리덴노르보넨", + "nameEn": "ETHYLIDENE NORBORNENE", + "synonymsEn": "·Bicyclo(2.2.1)hept-2-ene, 5-ethylidene- ·5-Ethylidenebicyclo(2,2,1)hep-2-ene ·Ethylidenenorbornene ·2-Norbornene, 5-ethylidene- ·5-Ethylidenebicyclo(2.2.1)hept-2-ene ·5-Ethylidene-2-norbornene ·ENB", + "synonymsKr": "·바이사이클로(2.2.1)헵트-2-엔, 5-에틸리덴- ·5-에틸리덴바이사이클로(2,2,1)헵-2-엔 ·5-에틸리덴바이사이클로(2.2.1)헵트-2-엔 ·에틸리덴노보넨 ·2-노보넨, 5-에틸리덴- ·5-에틸리덴-2-노보넨", + "unNumber": "1993", + "casNumber": "16219-75-3", + "transportMethod": "", + "sebc": "", + "usage": "EPDM 고무 제조 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ENB", + "name": "ETHYLIDENE NORBORNENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 145, + "abbreviation": "EPCH", + "nameKr": "에틸렌산화물", + "nameEn": "EPICHLOROHYDRIN", + "synonymsEn": "Epichlorohydrin / ECH / 2-(Chloromethyl)oxirane / EPICHLOROHYDRINE / EPICHLORHYDRIN / 1-CHLORO-2,3-EPOXYPROPANE / Epichlorhydrine / ALPHA-EPICHLOROHYDRIN / New product 99.9% purity CAS 106-89-8 Epichlorohydrin CAS NO.106-89-8 Manufacturers wholesale / Epicloridrina / J006", + "synonymsKr": "(클로로메틸)에틸렌산화물 / 에피클로로하이드린 / 에피클로로히드린 / 에피클로로히드린(ECH) / 1-클로로-2,3-에폭시프로판 / 3-클로로프로필렌산화물 / 감마-클로로프로필렌산화물 / 글리세롤에피클로로히드린 / 클로로메틸옥시란", + "unNumber": "2033", + "casNumber": "106-89-8", + "transportMethod": "", + "sebc": "", + "usage": "주로 에폭시 수지 제조 시 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EPCH", + "name": "EPICHLOROHYDRIN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 146, + "abbreviation": "EXXSOL D80", + "nameKr": "에틸렌 유도 용매 (엑손모빌 제조)", + "nameEn": "JP-TS AVIATION FUEL", + "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", + "synonymsKr": "히드로처리된 경 증류 /수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", + "unNumber": "-", + "casNumber": "64742-47-8", + "transportMethod": "", + "sebc": "", + "usage": "세정제, 인쇄 용제, 페인트 용제, 표면 코팅 용제, 고무 용제, 화학용체 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXXSOL D80", + "name": "JP-TS AVIATION FUEL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 147, + "abbreviation": "FCC", + "nameKr": "정제된 슬러지유(FCC : FLUID CATALYTIC CRACKING / 정재방법 표기)", + "nameEn": "FCC Slurry oil (Decanted Oil)", + "synonymsEn": "·Cat cracked clarified oil -decanted oil ·Clarifid oils, petroleum, catalytic cracked ·Decanted oil, c20 ·Low sulfur fuel oil ·Clarified oils (petroleum), catalytic cracked ·Catalytic cracked clarified oil", + "synonymsKr": "·접촉분해된정제유 -디켄트 오일(decanted oil) ·디켄트 오일(decanted oil), C20 ·저유황유 ·접촉분해된(석유) 정제유 ·접촉분해된 정제유", + "unNumber": "1268", + "casNumber": "64741-62-4", + "transportMethod": "", + "sebc": "", + "usage": "휘발유, 경유, 디젤 등 가솔린, 항공유, 중유, 윤활유 아스팔트, 접촉분해장치 원료 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FCC", + "name": "FCC Slurry oil (Decanted Oil)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 148, + "abbreviation": "FFA", + "nameKr": "프르프릴 알코올", + "nameEn": "FURFURLY ALCOHOL", + "synonymsEn": "2-FURYLCARBINOL / 2-(HYDROXYMETHYL)FURAN / 2-FURANCARBINOL / 2-FURYLMETHANOL", + "synonymsKr": "푸르푸릴알코올 / 2-푸릴메탄올 / 2-하이드록시메틸푸란 / 2-푸란카프비놀 / 2-푸란메탄올 / 푸르푸랄알코올 / 알파-푸릴키르비놀", + "unNumber": "2874", + "casNumber": "98-00-0", + "transportMethod": "", + "sebc": "", + "usage": "레진, 코팅, 가공, 세정제, 제약 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FFA", + "name": "FURFURLY ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 149, + "abbreviation": "GASOIL", + "nameKr": "경유", + "nameEn": "MARINEDIESELFUEL", + "synonymsEn": "MARINEDIESELFUEL / MARINEDIESEL / SHALE-DERIVEDDIESELFUELMARINE / DIESELFUELMARINE / PETROLEUM-DERIVEDDIESELFUELMARINE / Diesel fuel No. 4 (Marine diesel) - Vapor & aerosol", + "synonymsKr": "경유", + "unNumber": "1202", + "casNumber": "77650-28-3", + "transportMethod": "", + "sebc": "", + "usage": "자동차, 선박 연료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GASOIL", + "name": "MARINEDIESELFUEL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 150, + "abbreviation": "GLC", + "nameKr": "글리세린", + "nameEn": "GLYCERINE", + "synonymsEn": "Glycerol / Glycerine / Glyceol / ifp / Glycerin USP / GLYCEROL ANHYDROUS / Propanetriol / propan-1,2,3-triol / 1,2,3-Propanetriol / Clycerol / Glycyl alcohol", + "synonymsKr": "글리세롤 / 글리세린 / 글리세린미스트 / 1,2,3-프로페인트라이올 / 글리롤 / 글리사닌 / 글리세리톨 / 글리세린 무수물 / 글리실 알코올 / 오스모글린 / 트라이하이드록시프로페인 / 프로페인트라이올 / 글리세라믹스-에올", + "unNumber": "1293", + "casNumber": "56-81-5", + "transportMethod": "", + "sebc": "", + "usage": "건조제, 보습제, 방부제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "2016-02-09 00:00:00", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GLC", + "name": "GLYCERINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 151, + "abbreviation": "GPA", + "nameKr": "글리세롤 프로폭실레이트", + "nameEn": "GLYCEROL POLYALKOXYLATE", + "synonymsEn": "GLYCEROL PROPOXYLATE-B-ETHOXYLATE / Glycerol,propyleneoxide,ethyleneoxidepolymer / PGP-2000 / CALTHANE NF) / polyglycol112-2 / polyglycol15-200 / Polyether polyol HSH-230 / GLYCEROL PROPOXYLATE-B-ETHOXYLATE / Glycerol ethoxylated propoxylated / glycerine, propoxylated ethoxylated / glycerol propoxylate-block-ethoxylate", + "synonymsKr": "칼탄 NF / 칼탄NF / 폴리에테르폴리올수지 / 폴리에테르폴리올수지 / 글리콜폴리프로필렌-B-에톡실레이트", + "unNumber": "-", + "casNumber": "9082-00-2", + "transportMethod": "", + "sebc": "", + "usage": "폴리우레탄 폼 제조, 발수제, 친수성 물질, 코팅제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GPA", + "name": "GLYCEROL POLYALKOXYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 152, + "abbreviation": "HBM", + "nameKr": "고비점 모노머 (총칭하는 산업적 용어)", + "nameEn": "HIGH BOIL MONOMER", + "synonymsEn": "Distillates (petroleum), C3-6, piperylene-rich / Distillates (petroleum), C3-6, piperylene-rich / Distillates (petroleum), C3-6, piperylene-rich Petroleum gas [A complex combination of hydrocarbons from the distillation of saturated and unsaturated aliphatic hydrocarbons usually ranging in the carbon numbers C3 through C6. It consists of saturated", + "synonymsKr": "고점비 모노머, 고비점 단량체", + "unNumber": "1232 2285", + "casNumber": "68477-35-0", + "transportMethod": "", + "sebc": "", + "usage": "점착제, 접착제, 코팅재료, 틸터 등 다양하게 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HBM", + "name": "HIGH BOIL MONOMER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 153, + "abbreviation": "HCA", + "nameKr": "염산", + "nameEn": "HYDROCHLORIC ACID", + "synonymsEn": "Hydrochloric acid / HCL / Hydrogen chloride / chlorane / Hydrochloric Acid, 6N Volumetric Solution / Itaconic / hydrogen chloride solution / Acide chlorhydrique / Hydrochloric Acid, 36.5-38.0% / Hydrocholoride / Hydrogenchlorid", + "synonymsKr": "0.1노르말(몰)염산 / 6노르말염산 / N/2-염산(0.5M) / N/20-염산(0.05M) / N/5-염산(0.2M) / N/50염산 / 염산 / 염산10% / 염산20% / 염산30% / 염산9% / 염산수용액(액체) / 염화수소 / 히드로클로르산0.05N / 염화수소산 / 수소염화물 / 무수염산 / 염산가스 / 무리아틱산 / 염화수소", + "unNumber": "1789", + "casNumber": "7647-01-0", + "transportMethod": "", + "sebc": "", + "usage": "PH조절, 중화 및 화학물질 합성, 금속 표면 처리, 폐수 처리 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HCA", + "name": "HYDROCHLORIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 154, + "abbreviation": "HISENE", + "nameKr": "하이신(등유계열) (한화토탈에너지스 제조)", + "nameEn": "HI-SENE", + "synonymsEn": "BY-PRODUCT FUEL OIL / HIGH-SENE / HI-SENE OIL / BY-PRODUCT FUEL OIL", + "synonymsKr": "등유", + "unNumber": "1201", + "casNumber": "111-84-2", + "transportMethod": "", + "sebc": "", + "usage": "보일러 연료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HISENE", + "name": "HI-SENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 155, + "abbreviation": "HMD", + "nameKr": "핵사메틸렌 디아민", + "nameEn": "HEXAMETHYLENE DISMINE", + "synonymsEn": "Hexamethylenediamine / HMDA / HEXAMETHYLENEDIAMINE / 1,6-HEXANEDIAMINE / 1,6-Hexamethylenediamine / Hexamethylendiamine / HEXANEDIAMINE / Hexylenediamine / 1,6-diamino-hexan / NCI-C61405 / H2N(CH2)6NH2", + "synonymsKr": "헥사메틸렌디아민 / 헥사메틸렌디아민 / 1,6-디아미노헥산 / 1,6-헥산디아민 / 헥사메틸렌디아민 / 1,6-헥산디아민 / 1,6-디아미노헥산 / 헥실렌디아민 / 헥사메틸렌 다이아민 / 1,6-다이아미노헥산 / 1,6-헥실렌다이아민 / HMD / HMDA / 알파-, 오메가-헥산다이아민 / 헥사메틸렌다이아민 / 헥실렌다이아민", + "unNumber": "2280", + "casNumber": "124-09-4", + "transportMethod": "", + "sebc": "", + "usage": "나일론 66과 플리머의 제조 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HMD", + "name": "HEXAMETHYLENE DISMINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 156, + "abbreviation": "HMDI", + "nameKr": "헥사메틸렌 디이소시안산", + "nameEn": "Hexamethylene Diisocyanate", + "synonymsEn": "Hexamethylene Diisocyanate / HMDI / 1,6-Diisocyanatohexane / 1,6-HEXAMETHYLENE DIISOCYANATE / Hexane, 1,6-diisocyanato- / Hexamethylene-1,6-diisocyanate / 1,6-diisocyanated’hexamethylene / 1,6-Disocyanatohexane / 1,6-diisocyanato-hexan / tl78 / TL 78", + "synonymsKr": "헥사메틸렌디이소시아네이트 / 헥사메틸렌다이아이소사이안에이트 / Metyleno-bis-fenyloizocyjanian,헥사메틸렌다이아아이소사이안산(헥사메틸렌디아이소시안산) / 헥사메틸렌다이아이소사이안산(헥사메틸렌디이소시안산) / 헥사메틸렌디이소시아네이트 / 헥사메틸렌디이소시아네이트 / 헥사메틸렌 다이아이소사이안에이트 / 1,6-다이아이소사이아나토헥산 / 1,6-헥사메틸렌 다이아이소사이안 산 / 1,6-헥사메틸렌 다이-아이소사이안 산 / 디이소시안산 헥사메틸렌 / 헥사메틸렌 다이아이소사이안산 / 헥사메틸린-1,6-다이다이소사이안 산", + "unNumber": "2281", + "casNumber": "822-06-0", + "transportMethod": "", + "sebc": "", + "usage": "도료용 경화제, 접착제용 경화제 도료나 접착제 제품 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HMDI", + "name": "Hexamethylene Diisocyanate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 157, + "abbreviation": "HMDA", + "nameKr": "헥사메틸렌 다이아민", + "nameEn": "HEXAMETHYLENE DISMINE", + "synonymsEn": "Hexamethylenediamine / HMDA / HEXAMETHYLENEDIAMINE / 1,6-HEXANEDIAMINE / 1,6-Hexamethylenediamine / Hexamethylendiamine / HEXANEDIAMINE / Hexylenediamine / 1,6-diamino-hexan / NCI-C61405 / H2N(CH2)6NH2", + "synonymsKr": "헥사메틸렌디아민 / 헥사메틸렌디아민 / 1,6-디아미노헥산 / 1,6-헥산디아민 / 헥사메틸렌디아민 / 1,6-헥산디아민 / 1,6-디아미노헥산 / 헥실렌디아민 / 헥사메틸렌 다이아민 / 1,6-다이아미노헥산 / 1,6-헥실렌다이아민 / HMD / HMDA / 알파-, 오메가-헥산다이아민 / 헥사메틸렌다이아민 / 헥실렌다이아민", + "unNumber": "2280", + "casNumber": "124-09-4", + "transportMethod": "", + "sebc": "", + "usage": "나일론 66과 플리머의 제조 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HMDA", + "name": "HEXAMETHYLENE DISMINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 158, + "abbreviation": "HPNHEPTANE", + "nameKr": "n-헵탄", + "nameEn": "HIGHT PURITY N-HEPTANE", + "synonymsEn": "Heptane / N-HEPTANE / heptanes / Heptan / 1-HEPTANE / NORMAL HEPTANE / Aliphatic hydrocarbon / Gettysolve-C / Dipropylmethane / heptane(n-heptane) / Eptani", + "synonymsKr": "노르말헵탄 / 노르말헵탄(NORMALHEPTANE) / 헵탄 / 헵테인 / 헵테인(헵탄) / n-헵탄", + "unNumber": "1206", + "casNumber": "142-82-5", + "transportMethod": "", + "sebc": "", + "usage": "고무 생산 및 가고처리 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPNHEPTANE", + "name": "HIGHT PURITY N-HEPTANE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 159, + "abbreviation": "HPTN", + "nameKr": "헵탄", + "nameEn": "HEPTANE", + "synonymsEn": "Heptane / N-HEPTANE / heptanes / Heptan / 1-HEPTANE / NORMAL HEPTANE / Aliphatic hydrocarbon / Gettysolve-C / Dipropylmethane / heptane(n-heptane) / Eptani", + "synonymsKr": "헵테인 / 노르말헵탄 / 노르말헵탄(NORMALHEPTANE) / 헵탄 / 헵테인 / 헵테인(헵탄) / n-헵탄", + "unNumber": "1206", + "casNumber": "142-82-5", + "transportMethod": "", + "sebc": "", + "usage": "고무 생산 및 가고처리 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPTN", + "name": "HEPTANE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 160, + "abbreviation": "HRPIB", + "nameKr": "폴리이소부틸렌", + "nameEn": "HIGHT REACTIVE POLYISOBUTYLENE", + "synonymsEn": "Polyisobutylene / usb / POLYISOBUTENE / p20 / p118 / p200 / POLY(ISOBUTYLENE) 24'000 / kp5 / oktol / pb150 / pib100", + "synonymsKr": "폴리아이소뷰틸렌 / 폴리이소부틸렌 / 폴리아이소부텐 / 폴리이소부티렌", + "unNumber": "1325", + "casNumber": "9003-27-4", + "transportMethod": "", + "sebc": "", + "usage": "타이어 내부 튜브, 윤활제, 접착제, 실런트, 연료 첨가제, 식품 포장, 헬스케어 제품 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HRPIB", + "name": "HIGHT REACTIVE POLYISOBUTYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 161, + "abbreviation": "HSB 150N", + "nameKr": "베이스 오일 (SHELL 사 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질/ 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "윤활유의 기본 성분의 베이스 오일", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HSB 150N", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 162, + "abbreviation": "HXN", + "nameKr": "헥산", + "nameEn": "HEXANE", + "synonymsEn": "Hexane / n-Hexane / HEXANES / 1-HEXANE / n-Hexan / dipropyl / NAPHTHA SOLVENT / ISOHEXANES / n-Hexane, HPLC, 95.0% min. / OXFORD / HEXANES HPLC", + "synonymsKr": "노르말헥산 / 헥산 / 노르말헥산 / 노말헥세인 / 메틸(2-)펜탄 / 헥산95% / 헥산98% / 헥산99% / 헥산(HEXANE) / N-헥산 / 헥산 / 헥실수소화물 / 노말헥산 / N-헥세인 / 노멀 헥세인", + "unNumber": "1208", + "casNumber": "110-54-3", + "transportMethod": "", + "sebc": "", + "usage": "용매, 추출제, 세정제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HXN", + "name": "HEXANE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 163, + "abbreviation": "IBA", + "nameKr": "이소부탄올", + "nameEn": "ISOBUTYL ALCOHOL", + "synonymsEn": "2-Methyl-1-propanol / ISOBUTANOL / IBA / ISOBUTYL ALCOHOL / 2-METHYLPROPAN-1-OL / i-Butanol / 2-Methyl propanol / NATURAL ISO BUTYL ALCOHOL / 1-propanol,2-methyl- / isobutano / 2-methyl-1-propano", + "synonymsKr": "1-프로판올,2-메틸- / 1-히드록시메틸프로판 / 2-메틸-1-프로판올 / 2-메틸프로판-1-올 / 2-메틸프로필알콜 / IBA79,부틸알콜 / 발효부틸알 / 부탄 / 부탄올-이소 / 이소-부틸알콜 / 이소프로필카비 / 아이소뷰틸알코올 / 이소부탄올 / 이소부틸알코올 / 이소뷰탄올 / 이소부틸알콜 / 이소부탄올(IBOH) / 이소부틸알코올 / 아이소뷰틸 알코올 / 1-하이드록시메틸프로판", + "unNumber": "1212", + "casNumber": "78-83-1 110-19-0", + "transportMethod": "", + "sebc": "", + "usage": "도료 용매, 에스테르의 전구체, 향료, 변성제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IBA", + "name": "ISOBUTYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 164, + "abbreviation": "NB", + "nameKr": "n-부탄올", + "nameEn": "NORMAL ISOBUTANOL", + "synonymsEn": "1-Butanol / n-Butanol / BuOH / NBA / n-BuOH / n-Butyl alcohol / Normal Butanol / butanols / 1-Butano / Butanol-1 / 1-Butyl alcohol", + "synonymsKr": "/ 부틸알코올 / n-부탄올 / n-부틸알코올 / n-뷰틸알코올 / 뷰틸알코올 / 1-부틸알콜 / 정부탄올 / N-부틸알코올 / 부틸알코올 / 1-부탄올 / 1-부틸알코올 / 부틸수산화물 / 메틸올프 / 노말부탄올(NBOH) / N-뷰틸 알코올 / 노말-부틸알코올 / 부탄올", + "unNumber": "1120", + "casNumber": "71-36-3 106-97-8", + "transportMethod": "", + "sebc": "", + "usage": "용매, 화학 합성 중간체, 연료 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NB", + "name": "NORMAL ISOBUTANOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 165, + "abbreviation": "INA", + "nameKr": "아이소-알코올", + "nameEn": "ISO ALCOHOLS", + "synonymsEn": "2,6-DIMETHYL-4-HEPTANOL / FEMA 3140 / Einecs 271-233-5 / isononanols mixed / c8-10-iso-alcoholc9-rich / ISONONYL ALCOHOL, BRANCHED / Alcohols,C8-10-iso-,C9-rich / C8-10-ISO-ALCOHOLS, C9-RICH) / 4-HYDROXY-2,6-DIMETHYLHEPTANE / Alcohols, C8-1o-iso-, C9-rich", + "synonymsKr": "C8-10-아이소-알코올,C9-RICH / C8-10-아이소-알코올,C9-RICH(C8-10-ISO-ALCOHOLS,C9-RICH) / 알코올류 C8-10-아이소-, C9-풍부함(Rich) / C8-10-아이소-알코올, C9-rich / 알코올, (C=8-10)-아이소-, (C=9)-리치", + "unNumber": "1993", + "casNumber": "68526-84-1 27458-94-2", + "transportMethod": "", + "sebc": "", + "usage": "화장품, 의료, 전자 제품 세정 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "INA", + "name": "ISO ALCOHOLS", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 166, + "abbreviation": "IPA", + "nameKr": "이소프로필알코올", + "nameEn": "ISOPROPYL ALCOHOL", + "synonymsEn": "Isopropyl alcohol / IPA / 2-Propanol / Isopropanol / i-PrOH / iPrOH / i-Propanol / Propanol-2 / 2-PROPANOL (IPA) / 67-73-0 / lsopropanol", + "synonymsKr": "이소프로필알코올 / 에틸카르비놀 / 이소올 / 제록스필름제거제 / 2-프로판올 / SEC-프로필알코올 / 디메틸카르비놀 / 아이소프로필알코올 / 이소프로판올 / 프로판-2-올 / 프로필알코올 / 아이피에이 / 이소프로필알콜 / 이소프로필알코올 / 아이소프로판올 / 1-메틸에탄올 / 1-메틸에틸알코올 / 2-프로필알코올 / 2-하이드록시프로페인 / n-프로판-2-올", + "unNumber": "1219", + "casNumber": "67-63-0", + "transportMethod": "", + "sebc": "", + "usage": "화잘품, 개인용품, IT부품 세정, 소독 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPA", + "name": "ISOPROPYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 167, + "abbreviation": "IPRE", + "nameKr": "이소프렌(2-메틸-1,3-부타디엔)", + "nameEn": "ISOPRENE", + "synonymsEn": "Isoprene / 2-METHYL-1,3-BUTADIENE / ACETATE BUFFER / BUFFER SOLUTION / SODIUM ACETATE BUFFER / lsoprene / BUFFER PH7.20 / BUFFER PH 4.65 / Isoprene, stabilized / 2-Methyl-1,3-butadien / nsc9237", + "synonymsKr": "펜탄디엔 / 2-메틸-1,3-부타디엔 / 이소프렌 / 이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌 / 1,3-부타디엔, 2-메틸-", + "unNumber": "1218", + "casNumber": "78-79-5", + "transportMethod": "", + "sebc": "", + "usage": "합성 고무, 타이어, 점도증진제, 에센셜 오일 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.13, 15.14, 15.17, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPRE", + "name": "ISOPRENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 168, + "abbreviation": "JETA1", + "nameKr": "항공유(등유 기반)", + "nameEn": "JET FUOL A-1", + "synonymsEn": "AVIATION TURBINE FUEL / ATF / AVTUR", + "synonymsKr": "항공유", + "unNumber": "1209", + "casNumber": "8008-20-6", + "transportMethod": "", + "sebc": "", + "usage": "민 항공기(여객기) 연료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "JETA1", + "name": "JET FUOL A-1", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 169, + "abbreviation": "KERO", + "nameKr": "케로신(등유)", + "nameEn": "KEROSENE", + "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", + "synonymsKr": "등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", + "unNumber": "1201", + "casNumber": "8008-20-6", + "transportMethod": "", + "sebc": "", + "usage": "보일러 연료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "KERO", + "name": "KEROSENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 170, + "abbreviation": "NAH", + "nameKr": "수소화나트륨", + "nameEn": "Sodium Hydride", + "synonymsEn": "Sodium hydride / NAH / QHN / Sodium Hydride, 60% oil / Sodium hydride suspension / 340F / nah80 / NAH 80 / 0.84-0.86 / Hydridesodium / SODIUM HYDRIDE", + "synonymsKr": "나트륨수화물 / 수소화나트륨 / 나트륨수화물/ 소듐 하이드라이드", + "unNumber": "1427", + "casNumber": "7646-69-7", + "transportMethod": "", + "sebc": "", + "usage": "유기 합성에서의 환원제, 수소 첨가제, 축합제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NAH", + "name": "Sodium Hydride", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 171, + "abbreviation": "KSS", + "nameKr": "칼륨베타-시토스테롤황산염(KSS)", + "nameEn": "POTASSIUM BETA-SITOSTEROL SULFATE", + "synonymsEn": "POTASSIUM BETA-SITOSTEROL SULFATE", + "synonymsKr": "칼륨베타-시토스테롤황산염", + "unNumber": "-", + "casNumber": "72884-27-6", + "transportMethod": "", + "sebc": "", + "usage": "난연제 첨가제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "KSS", + "name": "POTASSIUM BETA-SITOSTEROL SULFATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 172, + "abbreviation": "LAB", + "nameKr": "소프트알킬벤젠", + "nameEn": "LINEAR ALKYL BENZENE", + "synonymsEn": "·Linear alkylbenzene ·Nalkylene 500 detergent alkylate ·Naxel DDB-500 ·Alkyl c10-13, benzol ·Benzene, c10-13-alkyl-deriv ·Benzol, c10-13-alkyl-deriv", + "synonymsKr": "·선형 알킬벤젠 ·Nalkylene 500 세제 알킬레이트 ·Naxel DDB-500 ·알킬 c10-13, 벤졸 ·벤젠, c10-13-알킬-유도체 ·벤졸, c10-13-알킬-유도체", + "unNumber": "2586", + "casNumber": "67774-74-7", + "transportMethod": "", + "sebc": "", + "usage": "세제, 계면활성제 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LAB", + "name": "LINEAR ALKYL BENZENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 173, + "abbreviation": "LAWS", + "nameKr": "저아로마 화이트 스피릿", + "nameEn": "LOW AROMATIC WHITE SPIRIT", + "synonymsEn": "Naphtha (petroleum), solvent-refined heavy / WHITESPIRITTYPE2 / SOLVENT-REFINED HEAVY NAPHTHA / naphtha petroleum, heavy, solvent-refined / Naphtha (petroleum), solvent-refined heavy / Naphtha (petroleum), solvent-refined heavy Low boiling point modified naphtha", + "synonymsKr": "솔벤트-정제된 중질 나프타 (석유) / 솔벤트-정제된HEAVY나프타 / 솔벤트-정제된중질나프타(석유) / 솔벤트-정제된중질나프타(석유)(NAPHTHA(PETROLEUM),SOLVENT-REFINEDHEAVY)", + "unNumber": "2319", + "casNumber": "64741-92-0", + "transportMethod": "", + "sebc": "", + "usage": "페인트, 코팅, 세정제, 접착제, 인쇄용 잉크 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LAWS", + "name": "LOW AROMATIC WHITE SPIRIT", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 174, + "abbreviation": "LCO", + "nameKr": "고유황디젤유분", + "nameEn": "LIGHT CYCLE OIL", + "synonymsEn": "LIGHT CATALYTIC CRACKED OIL / DISTILLATES / LIGHT CATALYTIC / NAPHTHALENE, MOLTEN / LIGHT CYCLE OIL TRADING", + "synonymsKr": "경순환유", + "unNumber": "3082", + "casNumber": "64741-59-9", + "transportMethod": "", + "sebc": "", + "usage": "주로 중유에 혼합하거나 바이오 디젤 원료 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LCO", + "name": "LIGHT CYCLE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 175, + "abbreviation": "LSMGO", + "nameKr": "저유황 경유", + "nameEn": "LOW SULFUR MARINE GAS OIL", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "77650-28-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LSMGO", + "name": "LOW SULFUR MARINE GAS OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 176, + "abbreviation": "LYE", + "nameKr": "수산화나트륨", + "nameEn": "SODIUM HYDRATE, SOLID", + "synonymsEn": "Sodium hydroxide / NaOH / Caustic soda / Caustic Soda flakes / Caustic soda pearl / CAUSTIC FLAKES / Natriumhydroxid / IODINE SOLUTION / FLAKE CAUSTIC SODA / Hydroxyde de sodium / SODIUM HYDROXIDE, REAGENT GRADE, 97%, FL", + "synonymsKr": "수산화나트륨 / WHITE가성용액 / 나트륨수산화물리퀴드 / 히드록시나트륨용액 / 가성소다,고체 / 가성소다,과립상 / 가성소다,용구 / 가성소다,건조 / 나트륨수산화물,고체 / 나트륨수화물 / 나트륨수산화물,건조고체,플레이크,용구,또는과립상 / 소다알칼리액 / 알칼리액 / 화이트가성 / 0.025N-수산화나트륨(0.025M) / 0.05N-수산화나트륨(0.05M) / 0.1N(0.1M)수산화나트륨 / 0.25M수산화나트륨 / 0.2N-수산화나트륨(0.2M) / 0.5N-수산화나트륨(0.5M) / 1N-수산화나트륨", + "unNumber": "1823 1824", + "casNumber": "1310-73-2", + "transportMethod": "", + "sebc": "", + "usage": "산성물질 중화, 비누 및 세제 제조, 섬유 가공 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LYE", + "name": "SODIUM HYDRATE, SOLID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 177, + "abbreviation": "MACE", + "nameKr": "메틸 아세테이트", + "nameEn": "METHYL ACETATE", + "synonymsEn": "Ethyl acetate / EtOAc / ETOH / ALCOHOL / yisuanyizhi / ETHYL ETHANOATE / ACETIC ACID ETHYL ESTER / ETHANOL ABSOLUTE / METHYLATED SPIRIT / CH3COOC2H5 / ACETIC ETHER", + "synonymsKr": "아세트산에틸 / 메틸아세틸에스테르 / 비네가나프타 / 아세톡시에탄 / 아세트에테르 / 아세트에스테르 / 아세트산에틸에스테르 / 아세티딘 / 에틸에탄오에이트 / 에틸아세트산 / 초산에틸 / 초산에틸,무수물 / 초산에틸에스테르 / 무수에탄올 / 초산에틸 / 에틸아세테이트 / 아세테이트 에틸 / 아세트산 에틸", + "unNumber": "1231", + "casNumber": "141-78-6", + "transportMethod": "", + "sebc": "", + "usage": "휘발성 용매 사용 접착제, 페인트, 매니큐어 리무버 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MACE", + "name": "METHYL ACETATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 178, + "abbreviation": "MCB", + "nameKr": "클로로벤젠", + "nameEn": "MONO CHLORO BENZENE", + "synonymsEn": "ChlorobenzenE / MONOCHLOROBENZENE / Chlorobenzen / Chlorbenzol / Chlorbenzene / CHLOROBENZOL / PHENYL CHLORIDE / cp27 / NSC 8433 / U.N. 1134 / orobenzene", + "synonymsKr": "클로로벤젠 / 모노클로로벤졸 / 벤젠,클로로 / 테트로신SP / 모노클로로벤젠 / 벤젠염화물 / 페닐염화물 / 벤젠 염화물 / 벤젠, 클로로 / 테트로신 SP / 페닐 염화물", + "unNumber": "1134", + "casNumber": "108-90-7", + "transportMethod": "", + "sebc": "", + "usage": "중간체, 용매, 고비점 용제 등 사용 주로 제초제, 염료, 고무, 의약품 등 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MCB", + "name": "MONO CHLORO BENZENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 179, + "abbreviation": "MC", + "nameKr": "디클로로메탄", + "nameEn": "METHYLENE CHLORIDE", + "synonymsEn": "Dichloromethane / DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", + "synonymsKr": "염화메틸렌 / 솔라에스틴 / 솔메틴 / 에어로텐MM / 이염화메틸렌 / TC523에폭시 / 나르코틸 / 다이클로로메테인 / 디클로로메탄 / 락코메틸렌염화물 / 메탄,디클로로- / 설비세척솔벤트 / 에어로텐(R)MM솔벤트(AEROTHENE / 이염화메탄 / 다이클로로메탄 / 메틸렌 다이클로라이드 / 메틸렌 클로라이드", + "unNumber": "1593", + "casNumber": "75-09-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용 유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MC", + "name": "METHYLENE CHLORIDE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 180, + "abbreviation": "MDEA", + "nameKr": "N-메틸다이에탄올아민", + "nameEn": "METHYL DIETHANOLAMINE", + "synonymsEn": "N-Methyldiethanolamine / MDEA / METHYL DIETHANOLAMINE / Methyldiethanolamin / Methyliminodiethanol / FC MDEA / usafdo-52 / USAF DO-52 / Mdea (diol) / Diethanolmethylamine / N-Methyldiethanolami", + "synonymsKr": "N-메틸다이에탄올아민 / N-메틸디에탄올아민 / 메틸디에탄올아민 / 메틸다이에탄올아민 / 디에탄올메틸아민", + "unNumber": "-", + "casNumber": "105-59-9", + "transportMethod": "", + "sebc": "", + "usage": "가스처리, 의약품, 수처리, 직물처리, 코팅 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MDEA", + "name": "METHYL DIETHANOLAMINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 181, + "abbreviation": "MDO", + "nameKr": "선박용 경유", + "nameEn": "MARINE DISEL OIL", + "synonymsEn": "MARINE DISEL OIL", + "synonymsKr": "선박용 경유", + "unNumber": "3082", + "casNumber": "77650-28-3", + "transportMethod": "", + "sebc": "", + "usage": "선박 연료유 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MDO", + "name": "MARINE DISEL OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 182, + "abbreviation": "MEA", + "nameKr": "에탄올아민", + "nameEn": "MONOETHANOLAMINE", + "synonymsEn": "Monoethanolamine / MONOETHANOLAMINE / 2-Aminoethan-1-ol / 2-AMINOETHANOL / Olamine / Aminoethanol / GLYCINOL / 2-Ethanolamine / 2-HYDROXYETHYLAMINE / Ethanolamine, 99%, H2O 0.5% max / MEA 90", + "synonymsKr": "2-아미노에탄올 / 2-아미노에타놀 / 2-에타놀아민 / 글리시놀 / 아미노에타놀 / 콜올아민 / 2-히드록시에탄아민 / 2-히드록시에틸아민 / 모노에타놀아민 / 베타-아미노에타놀 / 베타-아미노에틸알코올 / 베타-에타놀아민 / 베타-히드록시에틸아민 / 에타놀,2-아미노- / 에탄올아민 / 에틸올아민 / 모노에탄올아민 / 2-하이드록시에틸아민 / 콜라민", + "unNumber": "2491", + "casNumber": "141-43-5", + "transportMethod": "", + "sebc": "", + "usage": "가스 세정, 세제, 계면활성제, 유화제, 광택제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEA", + "name": "MONOETHANOLAMINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 183, + "abbreviation": "MA", + "nameKr": "초산메틸", + "nameEn": "METHYL ACETATE", + "synonymsEn": "Methyl acetate / ACETIC ACID METHYL ESTER / CH3COOCH3 / methylethanoate / Acetate de methyle / Metile / Devoton / Tereton / Methylacetat / Methyl ethanoate / methyle(acetatede)", + "synonymsKr": "/ 메틸 아세테이트 / 아세트산 메틸 / 아세트산메틸 / 데보톤 / 아세트산메틸 / 메틸에탄오에이트 / 아세트산,메틸에스테르 / 초산메틸 / 테레톤 / 초산메틸 /", + "unNumber": "1231", + "casNumber": "79-20-9", + "transportMethod": "", + "sebc": "", + "usage": "래커, 페인트 용제, 매니큐어 제거제, 향료 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MA", + "name": "METHYL ACETATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 184, + "abbreviation": "MEAC", + "nameKr": "메틸아세테이트", + "nameEn": "METHYL ACETATE", + "synonymsEn": "Methyl acetate / ACETIC ACID METHYL ESTER / CH3COOCH3 / methylethanoate / Acetate de methyle / Metile / Devoton / Tereton / Methylacetat / Methyl ethanoate / methyle(acetatede)", + "synonymsKr": "/ 메틸 아세테이트 / 아세트산 메틸 / 아세트산메틸 / 데보톤 / 아세트산메틸 / 메틸에탄오에이트 / 아세트산,메틸에스테르 / 초산메틸 / 테레톤 / 초산메틸 /", + "unNumber": "1231", + "casNumber": "79-20-9", + "transportMethod": "", + "sebc": "", + "usage": "래커, 페인트 용제, 매니큐어 제거제, 향료 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEAC", + "name": "METHYL ACETATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 185, + "abbreviation": "MEC", + "nameKr": "디클로로메탄", + "nameEn": "METHYLENE CHLORIDE", + "synonymsEn": "Dichloromethane / DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", + "synonymsKr": "염화메틸렌 / 솔라에스틴 / 솔메틴 / 에어로텐MM / 이염화메틸렌 / TC523에폭시 / 나르코틸 / 다이클로로메테인 / 디클로로메탄 / 락코메틸렌염화물 / 메탄,디클로로- / 설비세척솔벤트 / 에어로텐(R)MM솔벤트(AEROTHENE / 이염화메탄 / 다이클로로메탄 / 메틸렌 다이클로라이드 / 메틸렌 클로라이드", + "unNumber": "1593", + "casNumber": "75-09-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용 유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEC", + "name": "METHYLENE CHLORIDE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 186, + "abbreviation": "MDG", + "nameKr": "메틸 카비톨", + "nameEn": "DIETHYLENE GLYCOL MONOMETHYL ETHER", + "synonymsEn": "Diethylene glycol monomethyl ether / DM / 2-(2-METHOXYETHOXY)ETHANOL / degme / METHYL CARBITOL / METHYLDIGLYCOL / METHOXYETHOXYETHANOL / Ethanol,2-(2-methoxyethoxy)- / DIETHYLENE GLYCOL METHYL ETHER / 2-(2- / DIEGME", + "synonymsKr": "디에틸렌 글리콜 모노메틸 에테르 / 2-(메톡시에톡시)에탄올DI / 다이에틸렌글리콜모노메틸에테르 / 디에틸렌글리콜모노메틸에테르 / 메틸디글리콜 / 2-(2-메톡시에톡시)에탄올 / 2-(2-메톡시에톡시)에탄올(메톡시디글라이콜) / 다이에틸렌글라이콜모노메틸에터 / 메톡시다이글리콜 / 다이에틸렌글리콜모노메틸에테르 / 다이에틸렌 글리콜 메틸 에테르 / 2-(2-메톡시에톡시에탄올) / 메틸 다이옥시톨 /", + "unNumber": "2810", + "casNumber": "111-77-3", + "transportMethod": "", + "sebc": "", + "usage": "반도체 산업, 인쇄 잉크, 가죽 염색, 필름 제조 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MDG", + "name": "DIETHYLENE GLYCOL MONOMETHYL ETHER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 187, + "abbreviation": "MEG", + "nameKr": "에틸렌글리콜", + "nameEn": "MONO ETHYLENE GLYCOL", + "synonymsEn": "Ethylene glycol / Monoethylene glycol / dowtherm / 1,2-Ethanediol / HOCH2CH2OH / 2-Hydroxyethanol / Antifrogen N / Dihydroxyethane / Zerex / Glygen / Glykol", + "synonymsKr": "에틸렌알코올 / 1,2-디히드록시에탄 / 모노에틸렌글리콜 / 에틸렌글리콜(MEG) / 글라이콜 / 에칠렌글라이콜 / 에틸렌글리콜 / 에틸렌 글리콜 / 모노에틸렌글리콜", + "unNumber": "3082", + "casNumber": "107-21-1", + "transportMethod": "", + "sebc": "", + "usage": "플라에스터, 폴리에스터, 폴리에스터수지, 흡습제, 가소제, 계면활설제, 합성섬유, 화장품, 화약류의 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEG", + "name": "MONO ETHYLENE GLYCOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 188, + "abbreviation": "MEK", + "nameKr": "메틸에틸케톤", + "nameEn": "METHYL ETHYLE KETONE", + "synonymsEn": "2-Butanone / MEK / METHYL ETHYL KETONE / BUTANONE / Butan-2-one / ETHYL METHYL KETONE / 2-Butanone,99% / 2-Butanon / METHYL ETHYL KETONE (MEK)(BUTANONE) / Butanon / MEK = 2-BUTANONE", + "synonymsKr": "2-부탄온 / 3-부탄온 / 메틸아세톤 / 부탄은 / 에틸메틸케톤 / 메틸에틸케톤 / 부탄온 / 솔벤트#3(SCOTCH-GRIP / 스타본드C-신나 / 제거제 / 크리너(OATEYCLEANER / 2-부탄논 / 메틸에틸케톤 / 엠이케이 / 메틸 에틸 케톤 / 부탄-2-온 / 옥소부탄", + "unNumber": "1193", + "casNumber": "78-93-3", + "transportMethod": "", + "sebc": "", + "usage": "페인트, 잉크, 합성고무, 마그네틱 테이프 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEK", + "name": "METHYL ETHYLE KETONE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 189, + "abbreviation": "METHA", + "nameKr": "카비놀", + "nameEn": "METHYL ALCOHOL", + "synonymsEn": "Methanol / jiachun / Methyl alcohol / CH3OH / Carbinol / metanol / ACID RED / Methanol dried / METHYL RED INDICATOR / METHYL RED MIXED SOLUTION / METHYL RED, SPIRIT SOLUBLE", + "synonymsKr": "메틸올 / 콜로니알스피리트 / 우드스피리트 / 우드나프타 / 우드알코올 / 메틸수산화물 / 카비놀 / 모노히드록시메탄 / 콜럼비안스피리트 / 피록실릭스피리트 / 메탄올 / 메틸알코올 / 메틸알콜 / 메틸알코올 / 메타놀", + "unNumber": "1230", + "casNumber": "67-56-1", + "transportMethod": "", + "sebc": "", + "usage": "용매, 연료, 원료 등 사용 플라스틱, 페인트, 접착제, 의약품 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "METHA", + "name": "METHYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 190, + "abbreviation": "MHA", + "nameKr": "2-하이드록시-4-(메틸싸이오)뷰탄산", + "nameEn": "METHIONINE HYDROXY ANALOGUE", + "synonymsEn": "2-HYDROXY-4-(METHYLTHIO)BUTYRIC ACID / HMTBA / alimet / mha-fa / mhaacid / HMTBA-13C4 / Desmenidol-13C4 / (68-72% in Water) / Ipradol (feed grade) / MHA acid (feed grade) / methioninehydroxyanalog", + "synonymsKr": "2-하이드록시-4-(메틸싸이오)뷰탄산", + "unNumber": "-", + "casNumber": "583-91-5", + "transportMethod": "", + "sebc": "", + "usage": "농업용 화학물질 제조 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MHA", + "name": "METHIONINE HYDROXY ANALOGUE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 191, + "abbreviation": "MIBK", + "nameKr": "메틸이소부틸케톤", + "nameEn": "METHYL ISOBUTYL KETONE", + "synonymsEn": "4-Methyl-2-pentanone / MIBK / METHYL ISOBUTYL KETONE / 4-METHYLPENTAN-2-ONE / MIK / MIKB / Hexon / ISOBUTYL METHYL KETONE / HEXONE / 4-Methyl-2-pen / ISOPROPYLACETONE", + "synonymsKr": "메틸아이소부틸케톤 / 2-메틸프로필메틸케톤 / 헥손 / 4-메틸-2-펜탄온 / 메틸아이소뷰틸케톤 / 메틸이소부틸케톤 / 메틸이소뷰틸케톤 / 이소부틸메틸케톤 / 이소프로필아세톤 / 4-메틸-2-펜타논 / 메틸이소부틸케톤 / 미비케이 / 메틸 아이소부틸 케톤", + "unNumber": "2053", + "casNumber": "108-10-1", + "transportMethod": "", + "sebc": "", + "usage": "용제, 현상액, 변성제 등 사용 고무, 수지, 니트롤셀룰로스, 폴리우레탄 라커 및 페인트 용제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MIBK", + "name": "METHYL ISOBUTYL KETONE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 192, + "abbreviation": "MIK", + "nameKr": "메틸이소부틸케톤", + "nameEn": "METHYL ISOBUTYL KETONE", + "synonymsEn": "4-Methyl-2-pentanone / MIBK / METHYL ISOBUTYL KETONE / 4-METHYLPENTAN-2-ONE / MIK / MIKB / Hexon / ISOBUTYL METHYL KETONE / HEXONE / 4-Methyl-2-pen / ISOPROPYLACETONE", + "synonymsKr": "메틸아이소부틸케톤 / 2-메틸프로필메틸케톤 / 헥손 / 4-메틸-2-펜탄온 / 메틸아이소뷰틸케톤 / 메틸이소부틸케톤 / 메틸이소뷰틸케톤 / 이소부틸메틸케톤 / 이소프로필아세톤 / 4-메틸-2-펜타논 / 메틸이소부틸케톤 / 미비케이 / 메틸 아이소부틸 케톤", + "unNumber": "2053", + "casNumber": "108-10-1", + "transportMethod": "", + "sebc": "", + "usage": "용제, 현상액, 변성제 등 사용 고무, 수지, 니트롤셀룰로스, 폴리우레탄 라커 및 페인트 용제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MIK", + "name": "METHYL ISOBUTYL KETONE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 193, + "abbreviation": "MLSS", + "nameKr": "당밀", + "nameEn": "MOLASSES", + "synonymsEn": "Molasses / tangmi / Molasses / Cane syrup / CANEMOLASSES / beet molasses / Molasses, beet / Einecs 270-698-1 / Beet sugar molasses / Molasses ISO 9001:2015 REACH", + "synonymsKr": "함밀당 / 흑당 / 설탕 / 폐당밀 / 몰라시스", + "unNumber": "-", + "casNumber": "68476-78-8", + "transportMethod": "", + "sebc": "", + "usage": "식물 및 발효 원료 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MLSS", + "name": "MOLASSES", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 194, + "abbreviation": "MMA", + "nameKr": "메틸메타크릴레이트", + "nameEn": "METHYL METHACRYLATE", + "synonymsEn": "Methyl methacrylate / MMA / Mme / Methylmetacrylate / Methyl methylacrylate / Methyl 2-methylacrylate / METHYL 2-METHYL-2-PROPENOATE / METHYL METACRYLAT / Methyl-methacrylat / 2-METHYLACRYLIC ACID METHYL ESTER / 2-Methyl-2-propenoic acid methyl ester", + "synonymsKr": "메타크릴산메틸 / 2-메틸프로펜오익산,메틸에스테르 / 메타크릴산메틸에스테르 / 메타크릴산,메틸에스테르 / 메틸2-메틸아크릴레이트 / 메틸메타크릴레이트단량체 / 메틸메타크릴레이트,억제된 / 2-(메톡시카르보닐)-1-프로펜 / 2-메틸-2-프로펜오익산메틸에스테르 / 메틸2-메틸프로펜오에이트 / 메틸메틸아크릴산 / 메틸메타크릴레이트 / 메틸 메타크릴에이트", + "unNumber": "1247", + "casNumber": "80-62-6", + "transportMethod": "", + "sebc": "", + "usage": "유리의 대체재, 광학 부품, 도료 및 접착제, 섬유 호재 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.13, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MMA", + "name": "METHYL METHACRYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 195, + "abbreviation": "MME", + "nameKr": "메타크릴산메틸에스테르", + "nameEn": "METHYL METHACRYLATE", + "synonymsEn": "Methyl methacrylate / MMA / Mme / Methylmetacrylate / Methyl methylacrylate / Methyl 2-methylacrylate / METHYL 2-METHYL-2-PROPENOATE / METHYL METACRYLAT / Methyl-methacrylat / 2-METHYLACRYLIC ACID METHYL ESTER / 2-Methyl-2-propenoic acid methyl ester", + "synonymsKr": "메타크릴산메틸 / 2-메틸프로펜오익산,메틸에스테르 / 메타크릴산메틸에스테르 / 메타크릴산,메틸에스테르 / 메틸2-메틸아크릴레이트 / 메틸메타크릴레이트단량체 / 메틸메타크릴레이트,억제된 / 2-(메톡시카르보닐)-1-프로펜 / 2-메틸-2-프로펜오익산메틸에스테르 / 메틸2-메틸프로펜오에이트 / 메틸메틸아크릴산 / 메틸메타크릴레이트 / 메틸 메타크릴에이트", + "unNumber": "1247", + "casNumber": "80-62-6", + "transportMethod": "", + "sebc": "", + "usage": "유리의 대체재, 광학 부품, 도료 및 접착제, 섬유 호재 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.13, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MME", + "name": "METHYL METHACRYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 196, + "abbreviation": "MNS", + "nameKr": "메틸렌디옥시-베타-니트로스티렌", + "nameEn": "3.4-METHYLENEDIOXY-BETA-NITROSTYENE", + "synonymsEn": "3,4-Methylenedioxy-beta-nitrostyrene / MDBN / NSC 170724 / MNS (MDBN) / 5-(2-Nitrovinyl) / AKOS BBS-00006781 / Syk Inhibitor III / MNS, 10 mM in DMSO / TIMTEC-BB SBB007833 / -nitrostyrene, MDBN) / MNS (NSC 170724, MDBN)", + "synonymsKr": "메틸렌디옥시-베타-니트로스티렌", + "unNumber": "-", + "casNumber": "1485-00-3", + "transportMethod": "", + "sebc": "", + "usage": "연구 및 화학 합성 분야에서 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MNS", + "name": "3.4-METHYLENEDIOXY-BETA-NITROSTYENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 197, + "abbreviation": "MOGAS", + "nameKr": "휘발유", + "nameEn": "MOTOR GASOLINE", + "synonymsEn": "gasoline MOTO GAS / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH / MOTOR GASOLINE", + "synonymsKr": "/ 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", + "unNumber": "1203", + "casNumber": "8006-61-9", + "transportMethod": "", + "sebc": "", + "usage": "선박(모터) 및 차량 등 연료 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MOGAS", + "name": "MOTOR GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 198, + "abbreviation": "PG", + "nameKr": "프로필렌 글리콜", + "nameEn": "MONO PROPYLENE GLYCOL", + "synonymsEn": "Propylene glycol / PG / 1,2-PROPANEDIOL / MONO PROPYLENE GLYCOL / PROPANE-1,2-DIOL / 1,2-PROPYLENE GLYCOL / propylenglycol / Propyledne glycol / Aliphatic alcohol / Propylene glycol 57-55-6 / Propylene glycol usp / NOMO-PYROLYSIS GASOLINE", + "synonymsKr": "1,2-디히드록시프로판 / (RS)-1,2-프로판디올 / 1,2-(RS)-프로판디올 / 1,2-프로판디올 / 1,2-프로필렌글리콜 / 2,3-프로판디올 / 2-히드록시프로판올 / DL-1,2-프로판디올 / DL-프로필렌글리콜 / 메틸에틸글리콜 / 메틸에틸렌글리콜 / 모노프로필렌글리콜 / 알파-프로필렌글리콜 / 이소프로필렌글리콜 / 프로필렌글리콜 / 프로필렌글리콜(P.G)-공업용 / 프로필렌글리콜(P.G)-식첨용 / 프로필렌글리콜 / 프로필렌 글리콜 / 1,2-다이하이드록시프로판", + "unNumber": "-", + "casNumber": "57-55-6", + "transportMethod": "", + "sebc": "", + "usage": "용제, 보습제, 유화제, 냉각액, 방부제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PG", + "name": "MONO PROPYLENE GLYCOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 199, + "abbreviation": "MPG", + "nameKr": "프로필렌 글리콜", + "nameEn": "NOMO-PYROLYSIS GASOLINE", + "synonymsEn": "Propylene glycol / PG / 1,2-PROPANEDIOL / MONO PROPYLENE GLYCOL / PROPANE-1,2-DIOL / 1,2-PROPYLENE GLYCOL / propylenglycol / Propyledne glycol / Aliphatic alcohol / Propylene glycol 57-55-6 / Propylene glycol usp / NOMO-PYROLYSIS GASOLINE", + "synonymsKr": "1,2-디히드록시프로판 / (RS)-1,2-프로판디올 / 1,2-(RS)-프로판디올 / 1,2-프로판디올 / 1,2-프로필렌글리콜 / 2,3-프로판디올 / 2-히드록시프로판올 / DL-1,2-프로판디올 / DL-프로필렌글리콜 / 메틸에틸글리콜 / 메틸에틸렌글리콜 / 모노프로필렌글리콜 / 알파-프로필렌글리콜 / 이소프로필렌글리콜 / 프로필렌글리콜 / 프로필렌글리콜(P.G)-공업용 / 프로필렌글리콜(P.G)-식첨용 / 프로필렌글리콜 / 프로필렌 글리콜 / 1,2-다이하이드록시프로판", + "unNumber": "-", + "casNumber": "57-55-6", + "transportMethod": "", + "sebc": "", + "usage": "용제, 보습제, 유화제, 냉각액, 방부제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MPG", + "name": "NOMO-PYROLYSIS GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 200, + "abbreviation": "MPO", + "nameKr": "2-메틸-1,3-프로판디올", + "nameEn": "2-METHYL, 3-PROPANEDIOL", + "synonymsEn": "2-METHYL-1,3-PROPANEDIOL / METHYLPROPANEDIOL / 2-methylpropane-1,3-diol / 2-Methyl-1,3-propanediol (MPO) / MP Diol / MPDIOL(R) / MPDIOL MPD / MP diol glycol / MPDIOL(R) GLYCOL / β-Hydroxyisobutanol / 2-methyl-3-propanediol /2-METHYL, 3-PROPANEDIOL", + "synonymsKr": "/ 2-메틸-1,3-프로판디올 / 메틸프로판다이올 / 2-메틸-1, 3-프로판디올", + "unNumber": "-", + "casNumber": "2163-42-0", + "transportMethod": "", + "sebc": "", + "usage": "폴리우레탄, 코팅 및 잉크용 접착제 소프트 세그먼트 중간체 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MPO", + "name": "2-METHYL, 3-PROPANEDIOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 201, + "abbreviation": "MTBE", + "nameKr": "메틸삼차부틸에테르", + "nameEn": "METHYL TERT-BUTYL ETHER", + "synonymsEn": "METHYL TERT-BUTYL ETHER / TERT-BUTYL METHYL ETHER METHYL TERT- BUTYL ETHER / 2-METHOXY-2-METHYLPROPANE", + "synonymsKr": "메틸 삼차뷰틸 에테르 / TERT-부틸 메틸 에테르", + "unNumber": "2398", + "casNumber": "1634-04-4", + "transportMethod": "", + "sebc": "", + "usage": "주로 가솔린 첨가제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MTBE", + "name": "METHYL TERT-BUTYL ETHER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 202, + "abbreviation": "MX", + "nameKr": "M-자일렌", + "nameEn": "MIXED XYLENE", + "synonymsEn": "m-Xylene / 1,3-Xylene / 1,3-DIMETHYLBENZENE / 3-xylene / m-Xylol / META-XYLENE / Benzene,1,3-dimethyl- / 2,4-Xylene / 3-methyltoluene / m-XyL / M-XYLENE", + "synonymsKr": "3-자일렌 / M-자일렌 / m-크실렌 / 메타크실렌 / M-크실렌 / 1,3-디메틸벤젠 / M-메틸톨루엔 / 크실렌 / M-크실롤 / 메타자일 / 1,3-다이메틸벤젠 / 1,3-자일렌 / m-자일롤 / 메타-자일렌 / 벤젠, 1,3-다이메틸-", + "unNumber": "1307", + "casNumber": "108-38-3", + "transportMethod": "", + "sebc": "", + "usage": "플리에틸렌 테레프탈레이트(PET)의 특성 조절 이소프탈산 생산에 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MX", + "name": "MIXED XYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 203, + "abbreviation": "NACID", + "nameKr": "질산", + "nameEn": "NITRIC ACID", + "synonymsEn": "Nitric acid / HNO3 / Fuming nitric acid / HYDROGEN NITRATE / nitric acid fuming 100% / XS / HONO2 / Salpetersaure / Acide nitrique / nitric acid 65% / Nitric acid 70%", + "synonymsKr": "1N-질산 / 아조트산 / 아쿠아FORTIS / 질산 / 질산69% / 질산수소 / 질산20% / 히드록시니트릴 / 질산6.5%", + "unNumber": "2031", + "casNumber": "7697-37-2", + "transportMethod": "", + "sebc": "", + "usage": "비료, 폭발물 제조, 로켓 추진체, 반도체 세정 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NACID", + "name": "NITRIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 204, + "abbreviation": "NBA", + "nameKr": "부탄올", + "nameEn": "NORMAL-BUTYL ALCOHOL", + "synonymsEn": "2-Amino-1-butanol / (R)-2-aminobutan-1-ol / (R)-(-)-2-AMINO-1-BUTANOL / tube1180 / 2-Aminobutanol / (theta)-1-butano / (+)2-Aminobutanol / ( theta)-1-butanol / L-2-AMINO-1-BUTANOL / L-2-Aminobutanol99.1% / (R)(-)-2-AMINOBUTANOL / N-BUTYL ALCOHOL", + "synonymsKr": "아미노-1-부탄올알-(-)-2 / (R)-(-)-2-아미노-1-부탄올 / (R)-2-아미노-1-뷰탄올 / 아미노-1-부탄올알-(-)-2 / 2-아미노부탄올 / N-뷰탄올", + "unNumber": "1120", + "casNumber": "71-36-3", + "transportMethod": "", + "sebc": "", + "usage": "가소제, 바이오 연료 염료, 래커, 수지, 바나시 등 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBA", + "name": "NORMAL-BUTYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 205, + "abbreviation": "NBAC", + "nameKr": "아세트산부틸", + "nameEn": "N-BUTYL ACETATE", + "synonymsEn": "Butyl acetate / N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate / N-BUTYL ACETATE", + "synonymsKr": "아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트 / N-부틸 아세트산", + "unNumber": "1123", + "casNumber": "123-86-4", + "transportMethod": "", + "sebc": "", + "usage": "코팅제, 잉크, 접착제 등에서 용매로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBAC", + "name": "N-BUTYL ACETATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 206, + "abbreviation": "NoNAROMATICS", + "nameKr": "논-아로마틱스", + "nameEn": "NON AROMATIC RAFFINATE", + "synonymsEn": "NON AROMATIC RAFFINATE", + "synonymsKr": "비방향족 혼합물(연료 첨가제, 공업용 용제원료)", + "unNumber": "", + "casNumber": "64741-46-4 96-37-7 110-54-3 110-82-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NoNAROMATICS", + "name": "NON AROMATIC RAFFINATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 207, + "abbreviation": "NPA", + "nameKr": "프로판올", + "nameEn": "PROPANOL", + "synonymsEn": "1-Propanol / PROPANOL / N-PROPANOL / PROPAN-1-OL / Propyl alcohol / N-PROPYL ALCOHOL / Propanol-1 / 1-Propyl alcohol / PROPANE-1-OL / n-Propan-1-ol / n-C3H7OH / PROPANOL", + "synonymsKr": "1-프로판올 / n-프로필알코올 / 노말-프로필알콜 / 에틸칼비놀 / 프로필알콜 / 프로파놀 / N-프로파놀 / 1-하이드록시프로판 / 1-프로파놀 / 프로필릭알콜 / 1-프로필알콜 / N-프로판올 / 노말프로필알코올 / 프로필알코올 / 노말-프로필알콜 / 프로판올", + "unNumber": "1274", + "casNumber": "71-23-8 107-98-2", + "transportMethod": "", + "sebc": "", + "usage": "반도체나 LCD 등 IT 부품 세정액, 페인트나 잉크제거용도", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPA", + "name": "PROPANOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 208, + "abbreviation": "AMP", + "nameKr": "2-아미노-2-메틸-1-프로판올", + "nameEn": "N-PROPYL ALCOHOL", + "synonymsEn": "2-Amino-2-methyl-1-propanol / 2-AMINO-2-METHYLPROPAN-1-OL / AMP-95 / 2-Amino-2-methylpropanol / 1,1-Dimethyl-2-hydroxyethylamine / Aminomethylpropanol / 2-methyl-2-amino-1-propanol / Karl Fischer / 2,2-Diethyl-ethanolamine / Isobutanolamine / 2-Aminoisobutanol / N-PROPYL ALCOHOL", + "synonymsKr": "2-아미노-2-메틸-1-프로판올 / 2-아미노-2-메틸프로판올 / 아미노메틸프로판올 / 2.2-다이메틸에탄올아민 / 2-아미노 아이소뷰틸 알코올 / 2-아미노-2-메틸프로파놀 / 2-아미노-2-메틸프로판-1-올 / 2-아미노다이메틸에탄올 / 2-아미노아이소부탄올 / 베타-아미노아이소부탄올 / 아이소부탄올-2-아민 / 아이소부탄올아민 / 1-프로판올", + "unNumber": "2735", + "casNumber": "124-68-5", + "transportMethod": "", + "sebc": "", + "usage": "유기 합성 용매, 제약 산업, 코딩, 화장품 완충제, ph조절제, 보습 성분 등 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AMP", + "name": "N-PROPYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 209, + "abbreviation": "NPROPANOL", + "nameKr": "2-아미노-2-메틸-1-프로판올", + "nameEn": "N-PROPYL ALCOHOL", + "synonymsEn": "2-Amino-2-methyl-1-propanol / 2-AMINO-2-METHYLPROPAN-1-OL / AMP-95 / 2-Amino-2-methylpropanol / 1,1-Dimethyl-2-hydroxyethylamine / Aminomethylpropanol / 2-methyl-2-amino-1-propanol / Karl Fischer / 2,2-Diethyl-ethanolamine / Isobutanolamine / 2-Aminoisobutanol / N-PROPYL ALCOHOL", + "synonymsKr": "2-아미노-2-메틸-1-프로판올 / 2-아미노-2-메틸프로판올 / 아미노메틸프로판올 / 2.2-다이메틸에탄올아민 / 2-아미노 아이소뷰틸 알코올 / 2-아미노-2-메틸프로파놀 / 2-아미노-2-메틸프로판-1-올 / 2-아미노다이메틸에탄올 / 2-아미노아이소부탄올 / 베타-아미노아이소부탄올 / 아이소부탄올-2-아민 / 아이소부탄올아민 / 1-프로판올", + "unNumber": "2735", + "casNumber": "124-68-5", + "transportMethod": "", + "sebc": "", + "usage": "유기 합성 용매, 제약 산업, 코딩, 화장품 완충제, ph조절제, 보습 성분 등 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPROPANOL", + "name": "N-PROPYL ALCOHOL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 210, + "abbreviation": "ALKYLATE", + "nameKr": "알킬레이트", + "nameEn": "ALKYLATE", + "synonymsEn": "·Naphtha (petroleum) full range alkylate CAS crude naphtha raw naphtha naphtha full range C4-11, C7-12", + "synonymsKr": "전 범위 알킬화 나프타", + "unNumber": "1203", + "casNumber": "64741-64-6", + "transportMethod": "", + "sebc": "", + "usage": "고급휘발유 원료, 가솔린 블렌딩용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ALKYLATE", + "name": "ALKYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 211, + "abbreviation": "NPTH", + "nameKr": "알킬화 나프타", + "nameEn": "NAPHTHA", + "synonymsEn": "HEAVY DISTILLATE / SHELLSOL71 / Heavy alkylate / HEAVY DISTILLATE / Naphtha (Erdoel) / schwere Alkylat- / HEAVY DISTILLATE (10%) / ALKYLATION NAPHTHA, HEAVY / PETROLEUM FOR ANALYSIS EMSURE / 64741-65-7 HEAVY DISTILLATE / Naphtha,petroleum,heavyalkylate / NAPHTHA", + "synonymsKr": "알킬화나프타,중 / 중질알킬화나프타(석유) / 중질알킬화나프타(석유) / 무거운증류액 / 나프타", + "unNumber": "1263", + "casNumber": "64741-85-7", + "transportMethod": "", + "sebc": "", + "usage": "휘발성 약체 및 석유화학 기초 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPTH", + "name": "NAPHTHA", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 212, + "abbreviation": "OLA", + "nameKr": "오레인산", + "nameEn": "OLEIC ACID", + "synonymsEn": "Oleic acid / Octadecenoic acid / METHANONE / FORMALDEHYDE SOLUTION / cis-9-Octadecenoic acid / D100 / 9-cis-Octadecenoicacid / Oleic acid, AR / Oleinic acid / cis-Oleic Acid / Oleic Acid - CAS 112-80-1 - Calbiochem / OLEIC ACID", + "synonymsKr": "올레산 / 시스-9-옥타데케노산 / 시스-옥타데크-9-에노산 / 시스-올레산 / 올레인산 / 흰올레산 / 올레익애씨드 / 오레인산 / (Z)-9-옥타데칸산 / 델타9-시스-옥타데칸산 / 델타9-시스-올레산 / 레드 기름 / 시스-9-옥타데케노 산 / 시스-델타9-옥타데칸산 / 시스-옥타에크-9-에노 산 / 시스-올레 산 / 흰 올레산 / 올레인산", + "unNumber": "3082", + "casNumber": "112-80-1", + "transportMethod": "", + "sebc": "", + "usage": "세제, 섬유, 페인트, 잉크, 화장품, 의약품, 피혁, 윤활제 등 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA", + "name": "OLEIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 213, + "abbreviation": "OTEN", + "nameKr": "옥텐", + "nameEn": "OCTENE", + "synonymsEn": "1-OCTENE / OCT-1-ENE / Octen / OCTEN-1 / Octylene / Neodene 8 / I-Octen / 1-C8H16 / 1-OCTENE / 1-0ctene / OCTENE-1/ OCTENE", + "synonymsKr": "1-옥텐 / 1-옥틸렌 / 1-카프릴렌 / 알파옥텐 / 옥텐 / 옥틸렌 / 카프리렌 / N-1-옥텐 / 1-n-옥텐 / n-옥텐-1 / 알파-옥텐 / 알파-옥틸렌 / 옥트-1-엔 / 카프릴렌/ 1-옥텐", + "unNumber": "1993 3295", + "casNumber": "111-66-0", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 합성고무, 윤활유, 표면활성제 등 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OTEN", + "name": "OCTENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 214, + "abbreviation": "OX", + "nameKr": "o-자일렌", + "nameEn": "ORTHO-XYLENE", + "synonymsEn": "o-Xylene / XYLENES / 1,2-DIMETHYLBENZENE / XYLOL / 1,2-Xylene / o-Xylol / YLENE / ORTHO-XYLENE / 2-methyltoluene / o-Dimethylbenzene / 2-xylene/ ORTHO-XYLENE", + "synonymsKr": "0-자일렌 / o-자일렌 / o-크실렌 / 오르소디메틸벤젠,1,2-디메틸벤젠,오르소메틸톨루엔 / 오르소자일렌 / 자일렌 / 1,2-크실렌 / 1,2-디메틸벤젠 / O-메틸톨루엔 / O-크실올 / O-자일렌 / 2-자일렌 / 1,2-다이메틸벤젠 / 1,2-자일렌 / 2-메틸톨루엔 / o-다이메틸벤젠 / 벤젠, 1,2-다이메틸- / 오쏘-자일렌/ o-자일렌", + "unNumber": "1307", + "casNumber": "95-47-6", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 고분자 물질, 페인트, 의약품 등 다양한 화학물질의 전구체", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OX", + "name": "ORTHO-XYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 215, + "abbreviation": "PA", + "nameKr": "프로피온산", + "nameEn": "PROPIONIC ACID", + "synonymsEn": "Propionic acid / PROPANOIC ACID / C3 / C2H5COOH / Propionoic acid / METHYL ACETIC ACID / Adofeed / Antischim B / TRIANOIC ACID / CARBOXYETHANE / 1-Propionic acid/ PROPIONIC ACID", + "synonymsKr": "프로피온산 / 루프리솔 / 메트아세톤산 / 메틸아세트산 / 모조아세트산 / 센트리그레인보존제 / 에틸포름산 / 테녹스P그레인보존제 / 프로조인 / 프로파노산 / 프로피온산그레인보존제 / 에탄카르복실산 / 카르복시에탄 /프로피오닉애씨드 / 프로피온산", + "unNumber": "1848", + "casNumber": "79-09-4", + "transportMethod": "", + "sebc": "", + "usage": "식품 보존제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PA", + "name": "PROPIONIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 216, + "abbreviation": "PACID", + "nameKr": "투프리솔", + "nameEn": "PROPIONIC ACID", + "synonymsEn": "Propionic acid / PROPANOIC ACID / C3 / C2H5COOH / Propionoic acid / METHYL ACETIC ACID / Adofeed / Antischim B / TRIANOIC ACID / CARBOXYETHANE / 1-Propionic acid / PROPIONIC ACID", + "synonymsKr": "프로피온산 / 루프리솔 / 메트아세톤산 / 메틸아세트산 / 모조아세트산 / 센트리그레인보존제 / 에틸포름산 / 테녹스P그레인보존제 / 프로조인 / 프로파노산 / 프로피온산그레인보존제 / 에탄카르복실산 / 카르복시에탄 /프로피오닉애씨드 / 프로피온산", + "unNumber": "1848", + "casNumber": "79-09-4", + "transportMethod": "", + "sebc": "", + "usage": "식품 보존제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PACID", + "name": "PROPIONIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 217, + "abbreviation": "HPS", + "nameKr": "팜스테아린", + "nameEn": "HYDROGENATED PALM STEARIN", + "synonymsEn": "팜 스테아린", + "synonymsKr": "팜스테아린", + "unNumber": "-", + "casNumber": "91079-14-0", + "transportMethod": "", + "sebc": "", + "usage": "초콜릿, 쿠키, 사탕 등 다양한 식품 생산에 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPS", + "name": "HYDROGENATED PALM STEARIN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 218, + "abbreviation": "PALM", + "nameKr": "팜유", + "nameEn": "PALM OIL", + "synonymsEn": "·Fatty acids, palm-oil, me esters ·Methyl Myristate C14", + "synonymsKr": "·지방산류, 야자유, 메틸 에스터류 ·메틸 미리스테이트 C14", + "unNumber": "3082", + "casNumber": "91051-34-2", + "transportMethod": "", + "sebc": "", + "usage": "식품, 화장품, 세제, 바이오 연료, 의약품 산업용품 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PALM", + "name": "PALM OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 219, + "abbreviation": "PAO", + "nameKr": "팜지방산 증류액", + "nameEn": "PALM ACID OIL", + "synonymsEn": "·palm butter, palm oil fatty acids", + "synonymsKr": "/ 지방산,팜유/ 팜산유", + "unNumber": "3082", + "casNumber": "68440-15-3", + "transportMethod": "", + "sebc": "", + "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PAO", + "name": "PALM ACID OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 220, + "abbreviation": "PCE", + "nameKr": "퍼클로로에틸렌", + "nameEn": "PERCHLOROETHYLENE", + "synonymsEn": "Tetrachloroethylene / PERCHLOROETHYLENE / PCE / PERCHLORETHYLENE / Nema / TETRACHLOROETHENE / PERC / C2Cl4 / Tetrachlorethylene / Perk / Tetrachlorethen /", + "synonymsKr": "테트라클로로에틸렌 / 테트라클로로에틸렌* / 사염화에틸렌 / 퍼클로로에틸렌 / 디다켄 / 안킬로스틴 / 퍼클로로에틸렌 / 퍼클로로에텐 / 1,1,2,2-테트 / 퍼클로로에틸렌(P.C.E)/ 퍼클로로에틸렌", + "unNumber": "1897", + "casNumber": "127-18-4", + "transportMethod": "", + "sebc": "", + "usage": "브레이크 세정제 및 접착제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PCE", + "name": "PERCHLOROETHYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 221, + "abbreviation": "PERC", + "nameKr": "퍼클로로에틸렌", + "nameEn": "PERCHLOROETHYLENE", + "synonymsEn": "Tetrachloroethylene / PERCHLOROETHYLENE / PCE / PERCHLORETHYLENE / Nema / TETRACHLOROETHENE / PERC / C2Cl4 / Tetrachlorethylene / Perk / Tetrachlorethen /", + "synonymsKr": "테트라클로로에틸렌 / 테트라클로로에틸렌* / 사염화에틸렌 / 퍼클로로에틸렌 / 디다켄 / 안킬로스틴 / 퍼클로로에틸렌 / 퍼클로로에텐 / 1,1,2,2-테트 / 퍼클로로에틸렌(P.C.E)/ 퍼클로로에틸렌", + "unNumber": "1897", + "casNumber": "127-18-4", + "transportMethod": "", + "sebc": "", + "usage": "브레이크 세정제 및 접착제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PERC", + "name": "PERCHLOROETHYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 222, + "abbreviation": "PD", + "nameKr": "1,3-펜타디엔", + "nameEn": "TRANS-1,3-PENTADIENE", + "synonymsEn": "1,3-PENTADIENE / PIPERYLENE / Penta-1,3-diene / TRANS-PIPERYLENE / m-Pentadiene / 1,3-Piperlene / 1,3-Pentadine / l,3-Pentadiene / Pentadiene-1,3 / CH2=CHCH=CHCH3/ 1,3-Pentadiene", + "synonymsKr": "1,3-펜타디엔 / 1,3-PD / 1-메틸부타디엔 / 메틸 부타디엔 / 피페릴렌 / 1,3-펜타디엔", + "unNumber": "1993 3295", + "casNumber": "504-60-9", + "transportMethod": "", + "sebc": "", + "usage": "EPDM 고무 제조 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PD", + "name": "TRANS-1,3-PENTADIENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 223, + "abbreviation": "PDEB", + "nameKr": "1.4-디에틸벤젠", + "nameEn": "1,4-DIETHYLBENZENE", + "synonymsEn": "Benzene, 1,4-diethyl- / PDEB / P-DIETHYLBENZENE / 1.4-Diethylben / p-diethylenzene / PDEB )1,4-Diethy / p-diethyl-benzen / 1,4-diethyl-benzen / 1,4-DIETHYLBENZENE / para-Diethylbenzene/ 1.4-DIETHYLBENZEN", + "synonymsKr": "1,4-다이에틸벤젠 / 1,4-디에틸벤젠 / 1.4-디에틸벤젠/ 1.4-디에틸벤젠", + "unNumber": "2049", + "casNumber": "105-05-5", + "transportMethod": "", + "sebc": "", + "usage": "가교 플리스티렌 생산에 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PDEB", + "name": "1,4-DIETHYLBENZENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 224, + "abbreviation": "PENOL", + "nameKr": "페놀", + "nameEn": "Phenol", + "synonymsEn": "PhOH / CARBOLIC ACID / Fenol / PHENOL CRYSTALS / Phenol, water saturated, stabilized / Benzophenol / HYDROXYBENZENE / LIQUEFIEDPHENOL,LIQUEFIED,USP / PHENIC ACID / LIQUIFIED PHENOL PHENOL", + "synonymsKr": "페놀 / 모노페놀 / 모노히드록시벤젠 / 벤젠올 / 페닌산 / 페닐수산화물 / 페닐알코올 / 히드록시벤젠 / 모노하이드록시벤젠 / 석탄산 / 옥시벤젠 / 카르볼산 / 페닐산 / 펜산 / 하이드록시벤젠/ 페놀", + "unNumber": "1671(고) 2312(액)", + "casNumber": "108-95-2", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 폴리카보네이트, 에폭시, 나일론 등 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PENOL", + "name": "Phenol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 225, + "abbreviation": "PFAD", + "nameKr": "지방산, 팜오일", + "nameEn": "PALM FATTY ACID DISTILLATE", + "synonymsEn": "·palm butter, palm oil fatty acids", + "synonymsKr": "/ 지방산,팜유/ 팜산유", + "unNumber": "3082", + "casNumber": "68440-15-3", + "transportMethod": "", + "sebc": "", + "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PFAD", + "name": "PALM FATTY ACID DISTILLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 226, + "abbreviation": "PFO", + "nameKr": "열분해연료유", + "nameEn": "PYROLYSIS FUEL OIL", + "synonymsEn": "PYROLYSIS FUEL OIL", + "synonymsKr": "열분해연료유", + "unNumber": "-", + "casNumber": "69013-21-4", + "transportMethod": "", + "sebc": "", + "usage": "중공업, 발전소, 시템트 공장 등에서 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PFO", + "name": "PYROLYSIS FUEL OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 227, + "abbreviation": "PGA", + "nameKr": "프로필렌글리콜에스테르", + "nameEn": "Propyleneglycol alginate", + "synonymsEn": "PROPYLENE GLYCOL ALGINATE / propylenealginate / alginicacidpropyleneglycolester / ginate / kelcoloid / 150mPa . S / kelcoloidhvf / femanumber2941 / Alginate ester’ / ALGIN DERIVATIVE/ PROPYLENE GLYCOL ALGINATE", + "synonymsKr": "알긴산프로필렌글리콜에스테르 / 프로필렌글리콜알긴산 / 프로필렌글리콜알긴산 / 프로필렌글라이콜알지네이트 / 프로필렌글리콜알기네이트/ 프로필렌 글리콜 알긴산", + "unNumber": "-", + "casNumber": "9005-37-2", + "transportMethod": "", + "sebc": "", + "usage": "수지, 염료, 오일 등을 용제 페인트 및 코팅, 플라스틱 및 섬유 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PGA", + "name": "Propyleneglycol alginate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 228, + "abbreviation": "PGMEA", + "nameKr": "프로필렌 글리콜 모노메틸 에테르 아세트산", + "nameEn": "PROPYLENEGLYCOL METHYL ETHER ACETATE", + "synonymsEn": "PGMEA / MPA / PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE / PROPYLENE GLYCOL METHYL ETHER ACETATE / 1-METHOXY-2-PROPANOL ACETATE / 2-METHOXY-1-METHYLETHYL ACETATE / PMA-EL / Dowanol PMA / Propylene glyc / METHOXYISOPROPYL ACETATE/ PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE Propyleneglycol Methyl Ether Acetate", + "synonymsKr": "1-메톡시-2-프로판올아세트산 / 1-메톡시-2프로판올아세트산,프로필렌글리콜메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산(P.M.A) / 프로필렌글리콜메틸에테르아세테이트 / 메톡시아이소프로필아세테이트 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌 글리콜 모노메틸 에테르 아세테이트, 알파-이성질체 / 1-메톡시-2-프로판올 아세트산 / 아세트 산, 2-메톡시-1-메틸에틸 에스테르 / 프로필렌 글리콜 메틸 에테르 아세테이트 / 프로필렌 글리콜 모노메틸 에테르 아세트산", + "unNumber": "3272", + "casNumber": "108-65-6", + "transportMethod": "", + "sebc": "", + "usage": "잉크, 코팅제, 세척제, 반도체 공정 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PGMEA", + "name": "PROPYLENEGLYCOL METHYL ETHER ACETATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 229, + "abbreviation": "PHOS", + "nameKr": "인산", + "nameEn": "Phosphoric acid", + "synonymsEn": "H3PO4 / ORTHOPHOSPHORIC ACID / linsuan / Phosphoric / O-PHOSPHORIC ACID / hydrogenphosphate / Acide phosphorique / phosphoricacidsolutions / phosophoric Acid / Phosphoric Acid Powder", + "synonymsKr": "인산 / 오르토-인산 / 인산60% / 인산,60% / 인산,85% / 인산,액체 / 화이트인산 / 포스포릭애씨드", + "unNumber": "1805", + "casNumber": "7664-38-2", + "transportMethod": "", + "sebc": "", + "usage": "비료 제조에 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PHOS", + "name": "Phosphoric acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 230, + "abbreviation": "PIB", + "nameKr": "폴리이소부틸렌", + "nameEn": "Polyisobutylene", + "synonymsEn": "usb / POLYISOBUTENE / p20 / p118 / p200 / POLY(ISOBUTYLENE) 24'000 / kp5 / oktol / pb150 / pib100 / POLYISOBUTENE", + "synonymsKr": "폴리아이소뷰틸렌 / 폴리이소부틸렌 / 폴리아이소부텐 / 폴리이소부티렌/ 폴리이소부틸렌", + "unNumber": "1325", + "casNumber": "9003-27-4", + "transportMethod": "", + "sebc": "", + "usage": "내부 튜브, 윤활제, 접착제 실란트, 연료 첨가제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PIB", + "name": "Polyisobutylene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 231, + "abbreviation": "PIP", + "nameKr": "1,3-펜타디엔", + "nameEn": "piperylene", + "synonymsEn": "cis-1-methyl-1 / 3-butadiene / cis-piperylene / trans-1-methyl-1 3-butadiene / trans-piperylene / 1,3-pentadiene", + "synonymsKr": "시스-피페릴렌 / 1,3-부테디엔 / 이소프렌 / 2,3-디메틸부타디엔의 혼합물", + "unNumber": "3295", + "casNumber": "2004-70-8", + "transportMethod": "", + "sebc": "", + "usage": "석유 수지 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PIP", + "name": "piperylene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 232, + "abbreviation": "PKO", + "nameKr": "팜핵유", + "nameEn": "palm kernel-oil", + "synonymsEn": "POTASSIUM PALM KERNELATE / Fettsuren, Palmkernol-, Kaliumsalze / palm oil fatty acids, potassium salts / Fatty acids, palm kernel-oil, potassium salts/ PALM KERNEL OIL", + "synonymsKr": "팜커넬오일 / 야자 씨앗유 / 팜핵오일", + "unNumber": "-", + "casNumber": "70969-43-6", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 바이오 디젤", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PKO", + "name": "palm kernel-oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 233, + "abbreviation": "PM", + "nameKr": "프로필렌 글리콜 모노메틸 에테르 아세트산", + "nameEn": "PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE", + "synonymsEn": "PGMEA / PMA / PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE / PROPYLENE GLYCOL METHYL ETHER ACETATE / 1-METHOXY-2-PROPANOL ACETATE / 2-METHOXY-1-METHYLETHYL ACETATE / PMA-EL / Dowanol PMA / Propylene glyc / METHOXYISOPROPYL ACETATE/ PROPYLENE GLYCOL MONOMETHYL ETHER", + "synonymsKr": "1-메톡시-2-프로판올아세트산 / 1-메톡시-2프로판올아세트산,프로필렌글리콜메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산(P.M.A) / 프로필렌글리콜메틸에테르아세테이트 / 메톡시아이소프로필아세테이트 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌 글리콜 모노메틸 에테르 아세테이트, 알파-이성질체 / 1-메톡시-2-프로판올 아세트산 / 아세트 산, 2-메톡시-1-메틸에틸 에스테르 / 프로필렌 글리콜 메틸 에테르 아세테이트 / 프로필렌 글리콜 모노메틸 에테르 아세트산 / 프로필렌 글리콜 모노메틸 아세트산", + "unNumber": "3272", + "casNumber": "108-65-6", + "transportMethod": "", + "sebc": "", + "usage": "잉크, 코팅제, 세척제, 반도체 공정 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PM", + "name": "PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 234, + "abbreviation": "PMDI", + "nameKr": "폴리메틸렌 폴리페닐 폴리이소시아네이트", + "nameEn": "Polymethylene polyphenyl polyisocyanate", + "synonymsEn": "papi / PMDI / pmppi / isocyanuric / papi27 / isocyanatedepolymethyleneetdepolyphenyle / Polymeric Methylene Diphenyl Diisocyanate / e534 / cr200 / mr200", + "synonymsKr": "아이소사이안산폴리메틸렌폴리페닐렌에스터 / 아이소사이안산폴리메틸렌폴리페닐렌에스터 / 폴리메틸렌 폴리페닐 아이소사이아네이트 / 폴리메틸렌폴리페닐폴리이소시아네이트", + "unNumber": "3080", + "casNumber": "9016-87-9", + "transportMethod": "", + "sebc": "", + "usage": "경질 PU 폼 단열제, 경질 PU 폼, 이소이아누레이트 폼, 도료, 접착제, 구조용 폼, 자동차 펌포 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PMDI", + "name": "Polymethylene polyphenyl polyisocyanate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 235, + "abbreviation": "PMPI", + "nameKr": "아이소사이안산폴리메틸렌폴리페닐렌에이터", + "nameEn": "Polymethylene polyphenyl polyisocyanate", + "synonymsEn": "papi / PMDI / pmppi / isocyanuric / papi27 / isocyanatedepolymethyleneetdepolyphenyle / Polymeric Methylene Diphenyl Diisocyanate / e534 / cr200 / mr200", + "synonymsKr": "아이소사이안산폴리메틸렌폴리페닐렌에스터 / 아이소사이안산폴리메틸렌폴리페닐렌에스터 / 폴리메틸렌 폴리페닐 아이소사이아네이트 / 폴리메틸렌폴리페닐폴리이소시아네이트", + "unNumber": "3080", + "casNumber": "9016-87-9", + "transportMethod": "", + "sebc": "", + "usage": "경질 PU 폼 단열제, 경질 PU 폼, 이소이아누레이트 폼, 도료, 접착제, 구조용 폼, 자동차 펌포 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PMPI", + "name": "Polymethylene polyphenyl polyisocyanate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 236, + "abbreviation": "PO", + "nameKr": "산화프로필렌", + "nameEn": "Propylene oxide", + "synonymsEn": "PO / METHYLOXIRANE / Epoxypropane / Methyl(trifluoroMethyl)dioxirane / 1,2-PROPYLENE OXIDE / 1,2-EPOXYPROPANE / PROPENE OXIDE / Oxirane, 2-Methyl- / Propylene oxide, extra pure, 99.5% / PROPYLENOXIDE", + "synonymsKr": "1,2-에폭시프로판 / 산화프로필렌 / 프로필렌옥사이드 / 프로필렌산화물 / 1,2-에폭시프로판 / 메틸옥시란 / 프로펜산화물 / 메틸에틸렌산 / 메틸옥시란 / 1,2-프로필렌 옥사이드 / 1,2-에폭시 프로판 / 2-메틸옥시렌 / 메틸 에틸 옥사이드 / 메틸옥시렌 / 산화 프로판 / 산화 프로필렌", + "unNumber": "1280", + "casNumber": "75-56-9", + "transportMethod": "", + "sebc": "", + "usage": "플리에테르 폴리올 제조 그라우트, 페인트, 방수재, 코팅 및 접착제 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.8, 15.12, 15.14, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PO", + "name": "Propylene oxide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 237, + "abbreviation": "PRIMA500", + "nameKr": "베이스 오일 (에어라모크 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "산업용 윤활유 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PRIMA500", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 238, + "abbreviation": "PT", + "nameKr": "프로필렌 테트라머", + "nameEn": "PROPYLENE TETRAMER", + "synonymsEn": "Propylene tetramer / Dodecene / Light Tetramer / Propylene tetramer / PROPYLENETETRAMERS / 1-Propene, tetramer / Dodecene (nonlinear) / Propylene Tetramer(PT) / TIANFU-CHEM Propylene tetramer / (4E,7E,10E)-dodeca-1,4,7,10-tetraene", + "synonymsKr": "1-프로펜테트라머 / 프로필렌테트라머 / 1-프로펜테트라머/ 프로필렌 테트라머", + "unNumber": "2850", + "casNumber": "6842-15-5", + "transportMethod": "", + "sebc": "", + "usage": "화학 원료, 세제, 계면활성제 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PT", + "name": "PROPYLENE TETRAMER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 239, + "abbreviation": "PX", + "nameKr": "파라-자일렌", + "nameEn": "PARA XYLENE", + "synonymsEn": "P-XYLENE / PARA-XYLENE / 1,4-DIMETHYLBENZENE / Benzene, 1,4-dimethyl- / 1,4-Xylene / 4-xylene / p-Xylene (1.4- / p-Xylol / 4-Methyltoluene / p-Dimethylbenzene / p-Xylene, For Gas Chromatography", + "synonymsKr": "p-자일렌 / 4-자일렌 / p-자일렌 / P-크실렌 / 파라자일렌 / P-디메틸벤젠 / P-메틸톨루엔 / 1,4-디메틸벤젠 / P-크실렌 / 1,4-다이메틸벤젠 / 1,4-자일렌 / 4-메틸톨루엔 / p-자일롤 / 파라-자일렌 / 파라크실렌", + "unNumber": "1307", + "casNumber": "106-42-3", + "transportMethod": "", + "sebc": "", + "usage": "폴리에스터 섬유, PET병, 플라스틱 용기 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PX", + "name": "PARA XYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 240, + "abbreviation": "TPG", + "nameKr": "열분해가솔린", + "nameEn": "Treated Pyrolysis Gasoline", + "synonymsEn": "Treated Pyrolysis Gasoline", + "synonymsKr": "", + "unNumber": "1203", + "casNumber": "64741-74-8", + "transportMethod": "", + "sebc": "", + "usage": "납사(석유)나이트열분해", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TPG", + "name": "Treated Pyrolysis Gasoline", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 241, + "abbreviation": "PYGAS", + "nameKr": "열분해가솔린", + "nameEn": "PYROLYSIS GASOLINE", + "synonymsEn": "PYROLYSIS GASOLINE", + "synonymsKr": "열분해 가솔린", + "unNumber": "1203", + "casNumber": "68606-10-0", + "transportMethod": "", + "sebc": "", + "usage": "방향족 공장 연료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PYGAS", + "name": "PYROLYSIS GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 242, + "abbreviation": "RPG", + "nameKr": "열분해가솔린", + "nameEn": "RAW PYROLYSIS GASOLINE", + "synonymsEn": "RAW PYROLYSIS GASOLINE", + "synonymsKr": "열분해 가솔린", + "unNumber": "1203", + "casNumber": "68606-10-0", + "transportMethod": "", + "sebc": "", + "usage": "가솔린, 블렌딩, BTX 추출 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RPG", + "name": "RAW PYROLYSIS GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 243, + "abbreviation": "SACID", + "nameKr": "황산", + "nameEn": "SULFURIC ACID", + "synonymsEn": "Sulfuric acid / Hydrogen sulfate / SULFURIC ACID REAGENT GRADE 95-98% / So42- / Sulfuric acid 96 % / Acide sulfurique / So4-- / Acid Mist / Sulfur acid / Dipping acid / Inorganic acid", + "synonymsKr": "황산 / 1N-황산 / 2N(1M)황산 / 5N황산 / N/10(0.05M)황산 / N/2(0.25M)황산 / N/20(0.025M)황산 / N/5(0.1M)황산 / 비트리올갈색기름 / 비트리올의기름 / 황산 / 황산1:2 / 황산15% / 황산30% / 황산9% / 황산95% / 황산pH4 / 황산이수소 / 설프릭애씨드 / 황산이나트륨 / 황산(VI)산", + "unNumber": "1350(고) 2448(액)", + "casNumber": "7664-93-9", + "transportMethod": "", + "sebc": "", + "usage": "비료, 세제, 석유정제, 야금, 의약품 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SACID", + "name": "SULFURIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 244, + "abbreviation": "SAFOL23", + "nameKr": "사폴23", + "nameEn": "Safol23", + "synonymsEn": "Alcohol C10~C16 / C10-16 ALCOHOLS", + "synonymsKr": "1-히드록시도데칸 / 도데킬알코올 / 라우린산알코올 / 1-도데칸올 / 1-도데킬알코올 / 도데칸올 / 라우르산알코올 / 라우릴알코올 / 로릴알코올 / 페티알콜 / 라우릴알콜 / 납 / C.I.염료금속4 / 납플레이크 / 로릴알코올 / 1-도데실 알코올 / 1-도데카놀 / 1-하이드록시도데케인 / n-도데실 알코올 / 도데실 알코올", + "unNumber": "3082", + "casNumber": "112-53-8", + "transportMethod": "", + "sebc": "", + "usage": "보조제, 계면활성제, 소포제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SAFOL23", + "name": "Safol23", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 245, + "abbreviation": "SM", + "nameKr": "스티렌 모노머", + "nameEn": "STYRENE MONOMER", + "synonymsEn": "Styrene / SM / STYRENE MONOMER / VINYLBENZENE / ETHENYLBENZENE / PHENYLETHYLENE / Benzene, ethenyl- / STYROL / methyl 2-methylprop-2-enoate / Styren / Styron", + "synonymsKr": "스티렌 모노머 / 스티렌 / 비닐벤젠 / 스티렌모노머,억제제 / 에텐일벤젠 / 페닐에텐 / 스타이렌 / 스티렌모노머 / 페닐에틸렌", + "unNumber": "2055", + "casNumber": "100-42-5", + "transportMethod": "", + "sebc": "", + "usage": "합성 수지 및 고무 제조 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SM", + "name": "STYRENE MONOMER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 246, + "abbreviation": "SN150", + "nameKr": "베이스오일", + "nameEn": "BASE OIL", + "synonymsEn": "PETROLEUM ETHER / HEXANES / HEX / NAPHTHA / PETROL / BENZINE / LIGROINE / LIGROIN / MINERAL SEAL OIL / BENZIN / PETROLEUM OIL", + "synonymsKr": "수소탈황화된 중질 나프타 수소탈황화된 중질 나프타 (석유) / 수소탈황화된중질나프타(석유) / 수소탈황화된중질나프타(석유) / C8-10알케인/사이클로알케인/아로마틱하이드로카본", + "unNumber": "1203", + "casNumber": "64742-82-1", + "transportMethod": "", + "sebc": "", + "usage": "윤활유의 기본 성분의 베이스 오일", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SN150", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 247, + "abbreviation": "SOY", + "nameKr": "대두유", + "nameEn": "SOYBEAN OIL", + "synonymsEn": "Soybean oil / soybean / SOYASAPONIN / Soy oil / SOYA OIL / CAP 18 (oil) / SOYBEAN POLAR LIPID EXTRACT / A6OIL / CAP 18 / D04962 / HY 3050", + "synonymsKr": "대두 기름 / 대두기름 / 대두기름(SOYBEANOIL) / 돌콩오일 / 대두유", + "unNumber": "-", + "casNumber": "8001-22-7", + "transportMethod": "", + "sebc": "", + "usage": "쇼트닝, 마가린 원료, 식용유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SOY", + "name": "SOYBEAN OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 248, + "abbreviation": "SRFO", + "nameKr": "중유", + "nameEn": "STRAIGHT RUN FUEL OIL", + "synonymsEn": "STRAIGHT RUN FUEL OIL", + "synonymsKr": "중유 과정을 거치지 않고 원유 그대로인 중유", + "unNumber": "2934", + "casNumber": "64741-45-3", + "transportMethod": "", + "sebc": "", + "usage": "선박, 가정난방, 산업용 보일러 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SRFO", + "name": "STRAIGHT RUN FUEL OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 249, + "abbreviation": "SUA", + "nameKr": "황산", + "nameEn": "SULPHURIC ACID", + "synonymsEn": "Sulfuric acid / Hydrogen sulfate / SULFURIC ACID REAGENT GRADE 95-98% / So42- / Sulfuric acid 96 % / Acide sulfurique / So4-- / Acid Mist / Sulfur acid / Dipping acid / Inorganic acid", + "synonymsKr": "황산 / 1N-황산 / 2N(1M)황산 / 5N황산 / N/10(0.05M)황산 / N/2(0.25M)황산 / N/20(0.025M)황산 / N/5(0.1M)황산 / 비트리올갈색기름 / 비트리올의기름 / 황산 / 황산1:2 / 황산15% / 황산30% / 황산9% / 황산95% / 황산pH4 / 황산이수소 / 설프릭애씨드 / 황산이나트륨 / 황산(VI)산", + "unNumber": "1350(고) 2448(액)", + "casNumber": "7664-93-9", + "transportMethod": "", + "sebc": "", + "usage": "비료, 세제, 석유정제, 야금, 의약품 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SUA", + "name": "SULPHURIC ACID", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 250, + "abbreviation": "TBA", + "nameKr": "삼차 부틸 알코올", + "nameEn": "TERT-BUTYL ACRYLATE", + "synonymsEn": "tert-Butanol / TBA / BUTANOL / TERT-BUTYL ALCOHOL / BUTAN-1-OL / 2-METHYLPROPAN-2-OL / t-Butanol / 2-METHYL-2-PROPANOL / 2-Propanol, 2-methyl- / TERTIARY BUTYL ALCOHOL / T-BUTYL ALCOHOL", + "synonymsKr": "tert-부틸알코올 / 1,1-디메틸에탄올 / T-부탄올 / 삼차-부탄올 / 트리메틸메탄올 / 트리메틸카빈올 / 부틸알코올TERT-BUTYLALCOHOL / 삼차부틸알코올 / 삼차-부틸알콜 / 2-메틸-2-프로판올 / t-부틸알코올 / T-뷰틸 알코올", + "unNumber": "1120", + "casNumber": "75-65-0", + "transportMethod": "", + "sebc": "", + "usage": "용매, 에탄올 변성제, 페인트 제거제, 가솔린 옥탄 부스터 및 산화제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TBA", + "name": "TERT-BUTYL ACRYLATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 251, + "abbreviation": "TCE", + "nameKr": "트리클로 에틸렌", + "nameEn": "TRICHLORO ETHYLENE", + "synonymsEn": "Trichloroethylene / TCE / TRI / TRICHLORETHYLENE / TRICHLOROETHENE / 1,1,2-TRICHLOROETHENE / 1979/1/6 / Triol / C2HCl3 / Trichlorethylen / Triad", + "synonymsKr": "트라이클로로에틸렌 / 트리클로로에틸렌 / 트라이클로로에틸렌 / 티씨이 / 트리클로로에틸렌(TCE) / 1,1,2-트라이클로로에텐 / 아세틸렌 트라이클로라이드 / 에티닐 트라이클로라이드 / 에틸렌 트라이클로라이드 / 트라이클로로에텐", + "unNumber": "1170", + "casNumber": "79-01-6", + "transportMethod": "", + "sebc": "", + "usage": "세척제, 탈지제, 브레이크 클리너, 실런트, 윤활유, 접착제, 페인트 및 코팅제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TCE", + "name": "TRICHLORO ETHYLENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 252, + "abbreviation": "TCM", + "nameKr": "클로로포름", + "nameEn": "TRICHLOROMETHAN", + "synonymsEn": "Chloroform / CHCl3 / TRICHLOROMETHANE / TCM / Fisher Chemical / Chloroform 5g [67-66-3] / r20 / Chloroforme / Trichlormethan / METHYLIDYNE TRICHLORIDE / Residual Solvent Class 2 - Chloroform", + "synonymsKr": "클로로포름 / 클로로포름 / R20(냉각제) / 메탄트리염화물(METHANETRICHLORIDE)메틸트리염화물 / 메테닐트리염화물 / 클로로폼 / 트리클로로메탄 / 트리클로로메탄,클로로포롬 / 트리클로로포름 / 프레온20 / 메테닐트리클로라이드 / 삼염화메탄", + "unNumber": "1888", + "casNumber": "67-66-3", + "transportMethod": "", + "sebc": "", + "usage": "살충제, 곰팡이 제거제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TCM", + "name": "TRICHLOROMETHAN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 253, + "abbreviation": "TDI", + "nameKr": "톨루엔디이소시아네이트", + "nameEn": "TOLUENE DIISOCYANATE", + "synonymsEn": "·BENZENE, 1,3-DIISOCYANATOMETHYL- ·DESMODUR T100 ·DIISOCYANATOMETHYLBENZENE ·DIISOCYANATOTOLUENE ·HYLENE T ·ISOCYANIC ACID, METHYL-M-PHENYLENE ESTER ·METHYL-M-PHENYLENE DIISOCYANATE ·METHYLPHENYLENE ISOCYANATE ·METHYL-M-PHENYLENE ISOCYANATE ·MONDUR TD ·MONDUR TD-80 ·RUBINATE TDI ·RUBINATE TDI 80/20 ·TDI ·TOLUENE-1,3-DIISOCYANATE ·TOLYLENE DIISOCYANATE ·TOLYLENE ISOCYANATE ·U223 ·TDI mixture ·tolylene-2, 4-diisocyanate / tolylene-2, 6-diisocyanate ·4-methyl-mphenylenediisocyanate / 6-methyl-m-phenylenediisocyanate ·isocyanic acid, methylphenylene ester diisocayantomethylbenzene ·2, 4-tolylene diisocyanate / 2, 6-tolylene diisocyanate ·di-isocyanatoluene ·Hylene T Mondur TD Niax TDI ·Rubinate TDI 80/20 Voronate T80", + "synonymsKr": "·벤젠, 1,3-다이아이소시아네이토메틸- ·다이아이소시아네이토메틸벤젠 ·다이아이소시아네이토톨루엔 ·아이소시안산 , 메틸-M-페닐렌 에스터 ·메틸-M-페닐렌 다이아이소시아네이트 ·메틸페닐렌 아이소시아네이트 ·메틸-M-페닐렌 아이소시아네이트 ·톨루엔-1,3-다이아이소시아네이트 ·톨일렌 다이아이소시아네이트 ·톨일렌 아이소시아네이트 ·톨일렌-2, 4-다이아이소시아네이트/ 톨일렌-2, 6-다이아이소시아네이트 ·4-메틸-m페닐렌다이아이소시아네이트/ 6-메틸-m-페닐렌다이아이소시아네이트 ·아이소시안산, 메틸페닐렌 에스터다이아이소카얀토메틸벤젠 ·2, 4-톨일렌 다이아이소시아네이트/ 2, 6-톨일렌 다이아이소시아네이트 ·di-isocyana톨루엔", + "unNumber": "2078", + "casNumber": "26471-62-5", + "transportMethod": "", + "sebc": "", + "usage": "플리우레탄 제조의 기초 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TDI", + "name": "TOLUENE DIISOCYANATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 254, + "abbreviation": "TEA", + "nameKr": "트리에탄올아민", + "nameEn": "TRIETHANOLAMINE", + "synonymsEn": "Triethylamine / TEA / Et3N / N,N-DIETHYLETHANAMINE / (C2H5)3N / TEN / Triethylamin / Trietilamina / TRIEHYLAMINE / N,N,N-Triethylamine / N,N-Diethylethanamin", + "synonymsKr": "트리에틸아민 / (디에틸아미노)에탄 / N,N-디에틸에탄아민 / 에탄아민,N,N-디에틸- / 트라이에틸아민 / 트라이에틸아민(트리에틸아민) / 트리에틸아민 / N,N-다이에틸에탄아민 / C20-C28선형일차알코올", + "unNumber": "2733", + "casNumber": "102-71-6", + "transportMethod": "", + "sebc": "", + "usage": "유화제와 계면활성제 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TEA", + "name": "TRIETHANOLAMINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 255, + "abbreviation": "TEOA", + "nameKr": "트리에탄올아민", + "nameEn": "TRIETHANOLAMINE", + "synonymsEn": "Triethylamine / TEA / Et3N / N,N-DIETHYLETHANAMINE / (C2H5)3N / TEN / Triethylamin / Trietilamina / TRIEHYLAMINE / N,N,N-Triethylamine / N,N-Diethylethanamin", + "synonymsKr": "트리에틸아민 / (디에틸아미노)에탄 / N,N-디에틸에탄아민 / 에탄아민,N,N-디에틸- / 트라이에틸아민 / 트라이에틸아민(트리에틸아민) / 트리에틸아민 / N,N-다이에틸에탄아민 / C20-C28선형일차알코올", + "unNumber": "2733", + "casNumber": "102-71-6", + "transportMethod": "", + "sebc": "", + "usage": "유화제와 계면활성제 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TEOA", + "name": "TRIETHANOLAMINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 256, + "abbreviation": "THF", + "nameKr": "테트라하드로푸란", + "nameEn": "TETRAHYDROFURAN", + "synonymsEn": "Tetrahydrofuran / THF / Oxolane / PTMEG 2000 / PTHF / Butylene oxide / Tetrahydrofurane / oxolan / PTMEG 1000 / 1,4-Epoxybutane / TETRAMETHYLENE ETHER GLYCOL 2000 POLYMER", + "synonymsKr": "테트라하이드로푸란 / 테트라히드로푸란 / 부탄,알파,델타-산화물 / 시클로테트라메틸렌산화물 / 옥사시클로펜탄 / 테트라메틸렌산화물 / 테트라하이드로푸란 / 테트라하이드로퓨란 / 테트라하이드로퓨란250ppmBHT / 티에치에프 / 테트라하이드로푸란(THF)", + "unNumber": "2056", + "casNumber": "109-99-9", + "transportMethod": "", + "sebc": "", + "usage": "플리머, 의약품, 농약 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "THF", + "name": "TETRAHYDROFURAN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 257, + "abbreviation": "TOL", + "nameKr": "톨루엔", + "nameEn": "TOLUENE", + "synonymsEn": "Toluene / TOL / METHYLBENZENE / TOLUNE / TOLUOL / Toluen / JB / PHENYLMETHANE / Methane, phenyl- / tolueno / caswellno859", + "synonymsKr": "톨루엔 / 1-메틸벤젠 / 메틸벤젠 / 톨루올 / 메틸벤젠,메틸벤졸 / 페닐메탄 / 톨루엔(TO) / 메틸벤졸", + "unNumber": "1294", + "casNumber": "108-88-3", + "transportMethod": "", + "sebc": "", + "usage": "도료의 용제, 접착제, 잉크, 의약품 용제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TOL", + "name": "TOLUENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 258, + "abbreviation": "TX", + "nameKr": "", + "nameEn": "ALKYLBENZEN MIXTURE", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TX", + "name": "ALKYLBENZEN MIXTURE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 259, + "abbreviation": "UCO", + "nameKr": "회수유", + "nameEn": "USED COOKING OIL", + "synonymsEn": "USED COOKING OIL", + "synonymsKr": "폐식용유", + "unNumber": "-", + "casNumber": "68476-81-0", + "transportMethod": "", + "sebc": "", + "usage": "바이오디젤, 비누, 사료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UCO", + "name": "USED COOKING OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 260, + "abbreviation": "UCOME", + "nameKr": "지방산 메틸 에스테르", + "nameEn": "USED COOKING OIL METHYL ESTER", + "synonymsEn": "USED COOKING OIL METHYL ESTER", + "synonymsKr": "지방산 메틸 에스테르", + "unNumber": "-", + "casNumber": "67742-38-3", + "transportMethod": "", + "sebc": "", + "usage": "바이오디젤, 비누, 사료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UCOME", + "name": "USED COOKING OIL METHYL ESTER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 261, + "abbreviation": "UG", + "nameKr": "무연휘발유", + "nameEn": "UNLEADED GASOLINE", + "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH", + "synonymsKr": "가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", + "unNumber": "1203", + "casNumber": "8006-61-9", + "transportMethod": "", + "sebc": "", + "usage": "자동차 연료 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UG", + "name": "UNLEADED GASOLINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 262, + "abbreviation": "ULSD", + "nameKr": "초저유황경유", + "nameEn": "FUELS DIESEL", + "synonymsEn": "2 DIESEL FUEL / diesel / HRD 76 / ROADFUEL / MOTORFUEL / NATO-F 76 / MskSolvent / dieseloils / dieselfuels / Fuels,diesel / 2 DIESEL FUEL", + "synonymsKr": "디젤연료1번 / 디젤연료 / 디젤연료,정제과정이완전히알려지고발암물질을함유하지않음을보여줄수있으면예외 / 디젤", + "unNumber": "-", + "casNumber": "68334-30-5", + "transportMethod": "", + "sebc": "", + "usage": "선박 연료 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ULSD", + "name": "FUELS DIESEL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 263, + "abbreviation": "ULTRA4", + "nameKr": "베이스오일 (사우디 아람코 제품)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀(윤활기유) /제풍명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "자동차 엔진오일, 전기차용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ULTRA4", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 264, + "abbreviation": "ULTRA6", + "nameKr": "베이스오일 (사우디 아람코 제품)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "상용차량 엔진오일, 기어오일, 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ULTRA6", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 265, + "abbreviation": "ULTRA8", + "nameKr": "베이스오일 (사우디 아람코 제품)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고점도 엔진오일, 그리스 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ULTRA8", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 266, + "abbreviation": "AU2", + "nameKr": "베이스오일 (사우디 아람코 제품)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "변압기유, 전기 절연유 등 전력산업용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AU2", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 267, + "abbreviation": "AU3", + "nameKr": "베이스오일 (사우디 아람코 제품)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "자동변속기오일, 백색오일 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AU3", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 268, + "abbreviation": "AU4", + "nameKr": "베이스오일 (사우디 아람코 제품)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "엔진오일, 다목적 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AU4", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 269, + "abbreviation": "AU6", + "nameKr": "베이스오일 (사우디 아람코 제품)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "엔진오일, 기어오일, 액슬오일 등 중점도 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AU6", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 270, + "abbreviation": "AU8", + "nameKr": "베이스오일 (사우디 아람코 제품)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고하중 기계오일, 산업용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AU8", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 271, + "abbreviation": "VGO", + "nameKr": "감압 경유", + "nameEn": "VACUUM GAS OIL", + "synonymsEn": "VACUUM GAS OIL", + "synonymsKr": "감압 가스 기름", + "unNumber": "-", + "casNumber": "70592-76-6", + "transportMethod": "", + "sebc": "", + "usage": "간접탈활, 윤활기유의 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VGO", + "name": "VACUUM GAS OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 272, + "abbreviation": "VAC", + "nameKr": "비닐 아세테이트", + "nameEn": "VINYL ACETATE", + "synonymsEn": "Vinyl acetate / VAM / VINYL ACETATE MONOMER / Ethenyl acetate / Ethenyl ethanoate / Vinylacetate 1 / ethenylacetate / Vinyl Acetate(VAM) / aceticacidethenylester / VyAc / Vinile", + "synonymsKr": "초산비닐모노머 / 아세트산비닐 / 1-아세톡시에틸렌 / 비닐A단량체 / 비닐아세테이트 / 비닐아세트산 / 아세톡시에틸렌 / 아세트산비닐에스테르 / 아세트산에테닐에스테르 / 아세트산,에테닐에스테르 / 에스테르 / 에테닐아세트산 / 초산비닐모노머 / 아세트산비닐에스테르 / 에테닐아세트산 / 1-아세톡시에틸렌 / 비틸아세트산모노머 / 비닐아세트산(VAM) / 비닐아세테이트 / 비닐 아세테이트", + "unNumber": "1301", + "casNumber": "108-05-4", + "transportMethod": "", + "sebc": "", + "usage": "접착제, 페인트, 직물과 종이 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VAC", + "name": "VINYL ACETATE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 273, + "abbreviation": "VAM", + "nameKr": "초산비닐모노머", + "nameEn": "VINYL ACETATE MONOMER", + "synonymsEn": "Vinyl acetate / VAM / VINYL ACETATE MONOMER / Ethenyl acetate / Ethenyl ethanoate / Vinylacetate 1 / ethenylacetate / Vinyl Acetate(VAM) / aceticacidethenylester / VyAc / Vinile", + "synonymsKr": "초산비닐모노머 / 아세트산비닐 / 1-아세톡시에틸렌 / 비닐A단량체 / 비닐아세테이트 / 비닐아세트산 / 아세톡시에틸렌 / 아세트산비닐에스테르 / 아세트산에테닐에스테르 / 아세트산,에테닐에스테르 / 에스테르 / 에테닐아세트산 / 초산비닐모노머 / 아세트산비닐에스테르 / 에테닐아세트산 / 1-아세톡시에틸렌 / 비틸아세트산모노머 / 비닐아세트산(VAM) / 비닐아세테이트 / 비닐 아세테이트", + "unNumber": "1301", + "casNumber": "108-05-4", + "transportMethod": "", + "sebc": "", + "usage": "접착제, 페인트, 직물과 종이 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VAM", + "name": "VINYL ACETATE MONOMER", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 274, + "abbreviation": "W SPIRIT", + "nameKr": "화이트 스피릿", + "nameEn": "White spirit", + "synonymsEn": "PETROLEUM ETHER / HEXANES / HEX / NAPHTHA / PETROL / BENZINE / LIGROINE / LIGROIN / MINERAL SEAL OIL / BENZIN / PETROLEUM OIL", + "synonymsKr": "수소탈황화된 중질 나프타 (석유) / 수소탈황화된중질나프타(석유) / 수소탈황화된중질나프타(석유) / C8-10알케인/사이클로알케인/아로마틱하이드로카본", + "unNumber": "1300", + "casNumber": "64742-82-1", + "transportMethod": "", + "sebc": "", + "usage": "도료 희석제, 세첵제, 탈지제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "W SPIRIT", + "name": "White spirit", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 275, + "abbreviation": "W150SN", + "nameKr": "베이스오일 (SK enmove, GS 등 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "윤활유 제조, 가공유, 방청유, 유압작동유 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "W150SN", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 276, + "abbreviation": "XHVI3", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "Lubricating oils / VKGS / VM 1 / VM 4 / VM 5 / VM 8 / TB 20 / Tp 22 / TAD 17 / TCp 10 / TCp 15K", + "synonymsKr": "베이스오일(운활유)/제품명 윤활유 / 윤활유 / 석유유래물질", + "unNumber": "1203", + "casNumber": "74869-22-0", + "transportMethod": "", + "sebc": "", + "usage": "고급엔진오일, 산업용 합성 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "XHVI3", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 277, + "abbreviation": "XHVI4", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "Lubricating oils / VKGS / VM 1 / VM 4 / VM 5 / VM 8 / TB 20 / Tp 22 / TAD 17 / TCp 10 / TCp 15K", + "synonymsKr": "베이스오일(운활유)/제품명 윤활유 / 윤활유 / 석유유래물질", + "unNumber": "1203", + "casNumber": "74869-22-0", + "transportMethod": "", + "sebc": "", + "usage": "고급엔진오일, 산업용 합성 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "XHVI4", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 278, + "abbreviation": "XHVI8", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "Lubricating oils / VKGS / VM 1 / VM 4 / VM 5 / VM 8 / TB 20 / Tp 22 / TAD 17 / TCp 10 / TCp 15K", + "synonymsKr": "베이스오일(운활유)/제품명 윤활유 / 윤활유 / 석유유래물질", + "unNumber": "1203", + "casNumber": "74869-22-0", + "transportMethod": "", + "sebc": "", + "usage": "고급엔진오일, 산업용 합성 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "XHVI8", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 279, + "abbreviation": "Y2", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "매무 저점도, 고연비용 합성기유 용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "Y2", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 280, + "abbreviation": "Y3", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "일반 저점도 합성기유, 경량 엔진오일", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "Y3", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 281, + "abbreviation": "Y4", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "중점도 합성기유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "Y4", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 282, + "abbreviation": "Y5", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고온안전성 우수, 고점도 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "Y5", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 283, + "abbreviation": "Y6", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고하중, 고온 안전성 윤활기유 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "Y6", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 284, + "abbreviation": "Y8", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고점도 고내열 기유, 산업용 윤활기유 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "Y8", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 285, + "abbreviation": "YG", + "nameKr": "식용유", + "nameEn": "YELLOW GREASE", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "68476-81-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YG", + "name": "YELLOW GREASE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 286, + "abbreviation": "YL3", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "저점도 고성능 엔진오일 하이브리드/EV용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YL3", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 287, + "abbreviation": "YUBASE2", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "초저점도 엔진오일, EV용 윤활유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YUBASE2", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 288, + "abbreviation": "YUBASE3", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "일반 저점도 엔진오일", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YUBASE3", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 289, + "abbreviation": "YUBASE4", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "중점도 엔진오일", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YUBASE4", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 290, + "abbreviation": "YUBASE4+", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고 VI 저휘발성 엔진오일", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YUBASE4+", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 291, + "abbreviation": "YUBASE6", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고하중용 디젤 엔진오일", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YUBASE6", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 292, + "abbreviation": "YUBASE6+", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고성능 합성기유", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YUBASE6+", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 293, + "abbreviation": "YUBASE8", + "nameKr": "베이스 오일 (SK enmove 제조)", + "nameEn": "BASE OIL", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", + "unNumber": "1203", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "고점도 엔진오일, 기어오일, 산업용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "YUBASE8", + "name": "BASE OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 294, + "abbreviation": "1,1,1TCE", + "nameKr": "메틸클로로포름", + "nameEn": "1,1,1-Trichloroethane", + "synonymsEn": "cf2 / Trichloroethane / CH3CCl3 / TRICHLORETHANE / METHYLCHLOROFORM / 1,1,1-TCE / Chlorothene NU / 1,1,1-Trichlorethan / 1,1,1- threeethyl chloride / CF 2", + "synonymsKr": "111 트리클로로에탄메틸클로로포름 / 1,1,1-트리클로로에탄 / 1,1,1-트리클로로에탄 / 1,1,1-트라이클로로에테인 / 메틸클로로포름 / 트리클로로에탄 / 메틸트리클로로메탄 / 메틸클로로포름 / 삼염화에탄 / 1,1,1-트리치로로에탄", + "unNumber": "2831", + "casNumber": "71-55-6", + "transportMethod": "", + "sebc": "", + "usage": "에스테르화 반응하는 에스테르 용매제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,1,1TCE", + "name": "1,1,1-Trichloroethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 295, + "abbreviation": "1,1,2,2TTCE", + "nameKr": "테트라클로로에틸렌", + "nameEn": "1,1,2,2-Tetrachloroethane", + "synonymsEn": "1,1,2,2-Tetrachloroethane / Cellon / 1,1,2,2-tce / S-TETRACHLOROETHANE / 1,1,2,2-Tetrachlorethan / ACETYLENE TETRACHLORIDE / R-130 / Westrol / Westron / (CHCl2)2 / Acetosol", + "synonymsKr": "1122테트라클로로에탄 / 1,1,2,2-테트라클로로에틸렌/ 1,1,2,2-테트라클로로에테인 / 퍼클로로에텐 / 1,1,2,2-테트라클로로에탄 / 1,1,2,2-테트라클로로에틸렌 / 에틸렌사염화물 / 여과액 / 테트라클로로에텐 / 퍼클렌 / 퍼클로로에틸렌 / 1,1,1,2-사염화에탄 / 1,1,2,2-테트라클로르에테인 / 1,1-디클로로-2,2-디클로로에탄 / sym-테트라클로로에테인 / S-테트라클로로에탄 / s-테트라클로로에테인 / 대칭구조-테트라클로로에탄 / 대팅구조MERTICAL 테트라클로로에탄 / 보노포름 / 셀론 / 아세틸렌 테트라염화물", + "unNumber": "1897", + "casNumber": "79-34-5", + "transportMethod": "", + "sebc": "", + "usage": "드라이클리닝 용매, 금속 탈지 용매, 브레이크 세정제 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,1,2,2TTCE", + "name": "1,1,2,2-Tetrachloroethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 296, + "abbreviation": "1,1,2TCE", + "nameKr": "메틸클로로포름", + "nameEn": "1,1,2-Trichloroethane", + "synonymsEn": "1,1,1-Trichloroethane / cf2 / Trichloroethane / CH3CCl3 / TRICHLORETHANE / METHYLCHLOROFORM / 1,1,1-TCE / Chlorothene NU / 1,1,1-Trichlorethan / 1,1,1- threeethyl chloride / CF 2", + "synonymsKr": "112트리클로로에탄메틸클로로포름 1,1,1-트리클로로에탄 / 1,1,1-트리클로로에탄 / 1,1,1-트라이클로로에테인 / 메틸클로로포름 / 트리클로로에탄 / 메틸트리클로로메탄 / 메틸클로로포름 / 삼염화에탄 / 1,1,1-트리치로로에탄", + "unNumber": "2831", + "casNumber": "71-55-6", + "transportMethod": "", + "sebc": "", + "usage": "에스테르화 반응하는 에스테르 용매제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,1,2TCE", + "name": "1,1,2-Trichloroethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 297, + "abbreviation": "1,1DCE", + "nameKr": "염화에틸렌", + "nameEn": "1,1-Dichloroethane", + "synonymsEn": "1,2-Dichloroethane / DCE / EDC / 1,2-DCE / ETHYLENE DICHLORIDE / ETHYLENE CHLORIDE / CH2ClCH2Cl / 1,2-Dichlorethane / 1,2-Dichlorethan / Ethane,1,2-dichloro- / ethylene dichloride (eDC)", + "synonymsKr": "11다이클로로에텐인 / 1,2-디클로로에렌 / 염화에틸렌 / 1,2-디클로로에탄(1,2-DICHLOROETHANE)1,2-비클로로에탄(1,2-BICHLOROETHANE)알파,베타-디클로로에탄(ALPHA,BETA-DICHLOROETHANE)SYM-디클로로에탄(SYM-DICHLOROETHANE)이염화글리콜 / 이염화에틸렌 / 이염화에탄 / 이염화에테인 / 1,2-이염화에탄 / 1,2-다이클로로에탄 / 다이클로로에탄(에틸렌다이클로라이드) / 에틸렌디클로라이드 / 1,2-디클로로에탄", + "unNumber": "1184", + "casNumber": "107-06-2", + "transportMethod": "", + "sebc": "", + "usage": "용제, 합성 원료, 가소제 등으로 활용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,1DCE", + "name": "1,1-Dichloroethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 298, + "abbreviation": "NAP", + "nameKr": "나프탈렌", + "nameEn": "NAPHTHALENE", + "synonymsEn": "NAPHTHALENE / NAPHTHALENE SCALES / ANTIMITE / MOTH ALLS / TAR CAMPHOR / NAPHTHALIN", + "synonymsKr": "타프 캠퍼 / 나프탈린 / 좀약 / 좀나프탈렌", + "unNumber": "91-20-3", + "casNumber": "1334", + "transportMethod": "", + "sebc": "", + "usage": "좀약, 탈취제, 방충제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NAP", + "name": "NAPHTHALENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 299, + "abbreviation": "4TTHN", + "nameKr": "1234테트라하이드로나프탈렌", + "nameEn": "1,2,3,4-Tetrahydronaphthalene", + "synonymsEn": "1,2,3,4-Tetrahydronaphthalene / TETRALIN / THN / TETRALINE / TETRAHYDRONAPHTHALENE / Naphthalene, 1,2,3,4-tetrahydro- / 1,2,3,4-tetrahydro-naphthalen / etralin / TETRANAP / tetralene / Tetralina", + "synonymsKr": "테트라히드로나프탈렌 / 테트라인 / 테트라하이드로나트탈린 / 테트라히드로나프탈렌 / 테트랄린 / 1,2,3,4-테트라하이드로나프탈렌 / 5,6,7,8-테트라하이드로나프탈렌 / THN / 벤조싸이클로헥산 / 테트라냅 / 테트라린? / 테트라하이드로나프탈렌 / 1,2,3,4-테트라히드로나프탈렌", + "unNumber": "3082", + "casNumber": "119-64-2", + "transportMethod": "", + "sebc": "", + "usage": "향수 및 화장품, 약품 그리고 연구용 시약등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "4TTHN", + "name": "1,2,3,4-Tetrahydronaphthalene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 300, + "abbreviation": "1,2DPPN", + "nameKr": "1,2-디클로로프로판", + "nameEn": "1,2-Dichloropropane", + "synonymsEn": "1,2-Dichloropropane / Dichloropropane / PROPYLENE DICHLORIDE / 1,2-Dichlorpropan / 1,2-DCP / Dichloropropanes / R270da / ent15,406 / ENT 15,406 / NCI-C55141 / CH3CHClCH2Cl", + "synonymsKr": "12다이클로로프로페인 1,2-디클로로프로판 / 1,2-디클로로프로판 / 이염화프로필렌 / 1,2-다이클로로프로판 / 1,2-다이클로로프로페인 / PDC / 다이클로로프로판 / 프로필렌 다이클로라이드", + "unNumber": "-", + "casNumber": "78-87-5", + "transportMethod": "", + "sebc": "", + "usage": "세척제, 용매제로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,2DPPN", + "name": "1,2-Dichloropropane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 301, + "abbreviation": "1,2PPG", + "nameKr": "프로필렌 글리콜", + "nameEn": "1,2-Propylene glycol", + "synonymsEn": "Propylene glycol / PG / 1,2-PROPANEDIOL / MONO PROPYLENE GLYCOL / PROPANE-1,2-DIOL / 1,2-PROPYLENE GLYCOL / propylenglycol / Propyledne glycol / Aliphatic alcohol / Propylene glycol 57-55-6 / Propylene glycol usp", + "synonymsKr": "1,2-디히드록시프로판 / (RS)-1,2-프로판디올 / 1,2-(RS)-프로판디올 / 1,2-프로판디올 / 1,2-프로필렌글리콜 / 2,3-프로판디올 / 2-히드록시프로판올 / DL-1,2-프로판디올 / DL-프로필렌글리콜 / 메틸에틸글리콜 / 메틸에틸렌글리콜 / 모노프로필렌글리콜 / 알파-프로필렌글리콜 / 이소프로필렌글리콜 / 프로필렌글리콜 / 프로필렌글리콜(P.G)-공업용 / 프로필렌글리콜(P.G)-식첨용 / 프로필렌글리콜 / 프로필렌 글리콜 / 1,2-다이하이드록시프로판", + "unNumber": "-", + "casNumber": "57-55-6", + "transportMethod": "", + "sebc": "", + "usage": "용제, 보습제, 유화제, 냉각액, 방부제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,2PPG", + "name": "1,2-Propylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 302, + "abbreviation": "1,3BD", + "nameKr": "13부타디엔", + "nameEn": "1,3-butadiene", + "synonymsEn": "1,3-Butadiene / BUTADIENE / Butadien / 1,3-Butadien / Butadieen / PYRROLYLENE / 1,3-butadine / DIVINYL / BUDIENE / BIVINYL / ERYTHRENE", + "synonymsKr": "1.3부타디엔 / 뷰타다이엔 / 부타이엔 / 1.3-뷰타다이엔", + "unNumber": "1010", + "casNumber": "106-99-0", + "transportMethod": "", + "sebc": "", + "usage": "합성고무(특히 타이어의 주요원료)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,3BD", + "name": "1,3-butadiene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 303, + "abbreviation": "1,3BG", + "nameKr": "13부틸렌글라이콜", + "nameEn": "1,3-Butylene glycol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,3BG", + "name": "1,3-Butylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 304, + "abbreviation": "1,3DPPN", + "nameKr": "13디클로로프로펜", + "nameEn": "1,3-Dichloropropene", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,3DPPN", + "name": "1,3-Dichloropropene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 305, + "abbreviation": "1,4BG", + "nameKr": "14부틸렌글라이콜", + "nameEn": "1,4-Butylene glycol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1,4BG", + "name": "1,4-Butylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 306, + "abbreviation": "150HPN", + "nameKr": "", + "nameEn": "150 SUS HPN", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "150HPN", + "name": "150 SUS HPN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 307, + "abbreviation": "180SW", + "nameKr": "", + "nameEn": "180F Slack wax", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "180SW", + "name": "180F Slack wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 308, + "abbreviation": "1DNL", + "nameKr": "1데카놀", + "nameEn": "1-Decanol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "1123-00-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1DNL", + "name": "1-Decanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 309, + "abbreviation": "1DCN", + "nameKr": "데센", + "nameEn": "1-Decene", + "synonymsEn": "1-Decene / decene / Dec-1-ene / Decen / decylene / DECENE-1 / 1-DECENE / 1-C10H20 / n-decene / dialene10 / 1-n-Decene", + "synonymsKr": "1데센 / 데센 / 1-데센 / 데센", + "unNumber": "", + "casNumber": "872-05-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1DCN", + "name": "1-Decene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 310, + "abbreviation": "1DDCN", + "nameKr": "도데센", + "nameEn": "1-Dodecene", + "synonymsEn": "1-DODECENE / Dodec-1-ene / Adacene 12 / Linealene 12 / NSC 12016 / adacene12 / laurylene / Dodecene-1 / Neodene 12 / 1-DODECENE / α-Dodecylene", + "synonymsKr": "1도데센 / 도데센(1-) / 1-도데센 / 도데센(1-) / 도데센", + "unNumber": "", + "casNumber": "112-41-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1DDCN", + "name": "1-Dodecene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 311, + "abbreviation": "1HPTNL", + "nameKr": "헵탄올", + "nameEn": "1-Heptanol", + "synonymsEn": "1-Heptanol / HEPTANOL / N-HEPTANOL / HEPTAN-1-OL / HEPTYL ALCOHOL / Enanthol / ALCOHOL C7 / 1-HeptanoI / n-Heptan-1-ol / Gentanol / n-C7H15OH", + "synonymsKr": "1헵탄올 / n-헵탄올 / 1-헵탄올 / n-헵탄올 / n-헵틸알코올", + "unNumber": "", + "casNumber": "111-70-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1HPTNL", + "name": "1-Heptanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 312, + "abbreviation": "1HPTEN", + "nameKr": "햅텐", + "nameEn": "1-Heptene", + "synonymsEn": "", + "synonymsKr": "햅텐", + "unNumber": "", + "casNumber": "592-76-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1HPTEN", + "name": "1-Heptene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 313, + "abbreviation": "1HXNL", + "nameKr": "1헥산올", + "nameEn": "1-Hexanol", + "synonymsEn": "", + "synonymsKr": "1헥산올", + "unNumber": "", + "casNumber": "111-27-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1HXNL", + "name": "1-Hexanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 314, + "abbreviation": "1NPPN", + "nameKr": "나이트로프로판", + "nameEn": "1-Nitropropane", + "synonymsEn": "1-Nitropropane / 1-NP / ai3-02264 / n-C3H7NO2 / 1-Nitropro / 1-Nitropan / NiPar S-10 / 1-nitro-propan / 1-NITROPROPANE / N-Nitropropane / Propane,1-nitro-", + "synonymsKr": "나이트로프로판 / 1-니트로프로판 / 1-나이트로프로판 / 1-나이트로프로페인(1-니트로프로판) / 1-니트로프로판", + "unNumber": "", + "casNumber": "108-03-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1NPPN", + "name": "1-Nitropropane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 315, + "abbreviation": "1NNN", + "nameKr": "노넨", + "nameEn": "1-Nonene", + "synonymsEn": "", + "synonymsKr": "1노넨", + "unNumber": "-", + "casNumber": "27215-95-8", + "transportMethod": "", + "sebc": "", + "usage": "계면활성제, 윤활제, 공중합체, 노닐페놀 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1NNN", + "name": "1-Nonene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 316, + "abbreviation": "1OTEN", + "nameKr": "1-옥텐", + "nameEn": "1-Octene", + "synonymsEn": "1-OCTENE / OCT-1-ENE / Octen / OCTEN-1 / Octylene / Neodene 8 / I-Octen / 1-C8H16 / 1-OCTENE / 1-0ctene / OCTENE-1", + "synonymsKr": "1-옥텐 / 1-옥틸렌 / 1-카프릴렌 / 알파옥텐 / 옥텐 / 옥틸렌 / 카프리렌 / N-1-옥텐 / 1-n-옥텐 / n-옥텐-1 / 알파-옥텐 / 알파-옥틸렌 / 옥트-1-엔 / 카프릴렌", + "unNumber": "1993 3295", + "casNumber": "111-66-0", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 합성고무, 윤활유, 표면활성제 등 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1OTEN", + "name": "1-Octene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 317, + "abbreviation": "1PTEN", + "nameKr": "1펜텐", + "nameEn": "1-Pentene", + "synonymsEn": "1-Pentene / 1-C5H10 / AMYLENE / PENTENE / 1-Penten / petene-1 / 1-PENTENE / 1-AMYLENE / Pentene-1 / N-AMYLENE / l-pentene", + "synonymsKr": "1-펜텐 / 프로필레틸린알파-n-아밀린", + "unNumber": "", + "casNumber": "109-67-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1PTEN", + "name": "1-Pentene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 318, + "abbreviation": "2EHA", + "nameKr": "옥틸산", + "nameEn": "2-Ethylhexanoic acid", + "synonymsEn": "2-Ethylhexanoic acid / Hexanoic acid, 2-ethyl- / Ethylhexanoic acid / 2-ETHYLCAPROIC ACID / 2-ethylhexanoic / 2-Ethyl-1-hexanoic acid / Ethylhexoic acid / CAPRYLIC ACID(SG) / 2-ETHYLCAPRONIC ACID / (RS)-2-Ethylhexansαure / 2-Ethylhexanoi", + "synonymsKr": "2에틸헥사노익산 / 옥틸산 / 2-에틸헥산산 / 2-에틸헥손산 / 옥틸산 / 2-에틸헥산산 / 2-에틸헥사노익애씨드 / 2-에틸헥사노익산 / 2-뷰틸부타노익산 / 2-에틸카프로익산 / 2-에틸헥산 산 / 2-에틸헥소익산 / 3-헵탄카복실산 / 뷰틸에틸아세틱산", + "unNumber": "-", + "casNumber": "149-57-5", + "transportMethod": "", + "sebc": "", + "usage": "가소제, 페인트 건조제, 살충제내의 기포제거제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2EHA", + "name": "2-Ethylhexanoic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 319, + "abbreviation": "2EHXE", + "nameKr": "2에틸헥사날", + "nameEn": "2-Ethylhexenal", + "synonymsEn": "2-ETHYLHEXANAL / 2-Ethylcaproaldehyde / 2-ETHYLHEXAL / α-Ethylhexanal / 2-ETHYLHEXANAL / 2-ethyl-hexana / 3-Formylheptane / ETHYLHEXANAL, 2- / Ethylhexaldehyde / hexanal,2-ethyl- / 2-Ethylhexan-1-al", + "synonymsKr": "2에틸헥사날 / 2에틸헥실알데히드 / 2에틸헥실알데히드 / 에틸헥스알데하이드 / 2-에틸헥스알데하이드 / 2-에틸헥산", + "unNumber": "", + "casNumber": "123-05-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2EHXE", + "name": "2-Ethylhexenal", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 320, + "abbreviation": "2EHACE", + "nameKr": "에틸헥실아세테이트", + "nameEn": "2-Ethylhexyl acetate", + "synonymsEn": "2-Ethylhexyl acetate / Octyl acetate / 2-ethylhexyl / Isooctyl acetate / Ethyl hexyl acetate / 2eh acetate / femanumber2806 / 2-Octylacetate / Lsoctyl Acetate / ethylhexylacetate / 2-EthylhexyAcetate", + "synonymsKr": "에틸헥실아세테이트 / 2-에틸헥실아세테이트 / 2-에틸헥실아세트산 / 2-에틸헥실아세테이트 / 옥틸아세테이트 / 2-에틸헥실아세트산 / 에틸헥실아세테이트 / 2-에틸헥실 아세테이트 / 2-에틸-1-헥산올, 아세테이트 / 2-에틸-1-헥실 아세테이트 / 2-에틸헥사닐 아세트산 / 2-에틸헥실 아세트산 / 2-에틸헥실 에타노에이트 / 2-에틸헥실 에탄산염 / 베타-에틸헥실 아세테이트 / 베타-에틸헥실 에스터 / 아세트산 알파-에틸헥실 에스터 / 아세트산, 2-에틸헥실 에스터 / 아세트산,2-에틸헥실 에스터 / 옥틸 아세트산", + "unNumber": "", + "casNumber": "103-09-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2EHACE", + "name": "2-Ethylhexyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 321, + "abbreviation": "2EHACR", + "nameKr": "아크릴산 2-에틸헥실", + "nameEn": "2-Ethylhexyl acrylate", + "synonymsEn": "2-Ethylhexyl acrylate / 2-EHA / EHA / 2-ethyl / 2-ETHYLHEXYL ACRYLATE extrapure / Acrylic acid 2-ethylhexyl / 2-ETHYLHEXYL 2-PROPENOATE / OCTYL ACRYLATE / 2-Ethylhexyl propenoate / 2-Ethyl-1-hexyl acrylate / ACRYLIC ACID 2-ETHYLHEXYL ESTER", + "synonymsKr": "2에칠헥실아크릴레이트 / 아크릴산 2-에틸헥실 / 2-에틸-1-헥산올아크릴산 / 2-에틸-1-헥실아크릴산 / 2-에틸헥실아크릴산 / 2-에틸헥실2-프로펜산 / 2-에틸헥실아크릴레이트 / 2-프로펜산,2-에1-HEXANOL,2-ETHYLACRYLATE / 아크릴산2-에틸헥실 / 옥틸아크릴산 / 2-에틸헥실아크릴산(2EHA,2EHAM) / 2-에틸헥실아크릴산 / 에틸헥실아크릴레이트 / 2-에틸헥실 아크릴레이트 / 2-에틸헥실 2-프로펜산 / 2-에틸헥실 아크릴산 / 2-프로펜산 2-에틸헥실 에스터 / 아크릴산, 2-에틸헥실 에스터 / 옥틸 아크릴산", + "unNumber": "3077", + "casNumber": "103-11-7", + "transportMethod": "", + "sebc": "", + "usage": "폴리에틸렌 용기, 석유화학 제품, 가소제, 에멀션 안전제, 표면 활성제,세정제, 고무 및 합성 가소제 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.13, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2EHACR", + "name": "2-Ethylhexyl acrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 322, + "abbreviation": "2HEACR", + "nameKr": "하이드록시에틸 아크릴레이트", + "nameEn": "2-Hydroxyethyl acrylate", + "synonymsEn": "2-Hydroxyethyl acrylate / HEA / Hydroxyethyl acrylate / hydroxyethylacrylate / 2-Hydroxyethylacrylat / 2-(Acryloyloxy)ethanol / beta-hydroxyethylacrylate / 2-Hydroxyethyl acrylate(2-HEA) / 2-Hydroxyethyl acrylate,Ethylene glycol monoacrylate / bisomer2hea / Bisomer 2HEA", + "synonymsKr": "하이드록시에틸 아크릴레이트 / 아크릴산2-히드록시에틸에스테르 / 2-하이드록시에틸아크릴산 / 2-(아크릴옥시)에탄올 / 2-히드록시에틸아크릴산염 / 아크릴산2-히드록시에틸에스테르 / 하이드록시에틸아크릴산 / 2-하이드록시에틸아크릴산(2-HYDROXYETHYLACRYLATE) / 2-하이드록시에틸 아크릴산 / 2-(아크릴로일옥시)에탄올 / 2-하이드록시에틸-2-프로펜 산 / β-하이드록시아크릴 산 / 다이에틸렌 글리콜 모노아크릴 산 / 아크릴 산, 2-하이드록시에틸에스터 / 에탄다이올-1,2-모노아클릴 산 / 에틸렌 글리콜 모노아크릴 산 / 에틸렌 글리콜 아크릴 산 / 프로펜 산: 2-하이드록시에틸 에스터 / 하이드록시에틸 아크릴 산", + "unNumber": "", + "casNumber": "818-61-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2HEACR", + "name": "2-Hydroxyethyl acrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 323, + "abbreviation": "MCH", + "nameKr": "메틸시클로헥산", + "nameEn": "METHYLCYCLOHEXANE", + "synonymsEn": "METHYLCYCLOHEXANE", + "synonymsKr": "사이클로헥산메탄 / 사이클로헥실메틸", + "unNumber": "2296", + "casNumber": "108-87-2", + "transportMethod": "", + "sebc": "", + "usage": "유기합성 용제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MCH", + "name": "METHYLCYCLOHEXANE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 324, + "abbreviation": "2M5EP", + "nameKr": "2메틸5에틸피리딘", + "nameEn": "2-Methyl-5-ethyl pyridine", + "synonymsEn": "5-Ethyl-2-methylpyridine / 2-METHYL-5-ETHYLPYRIDINE / 5-ETHYL-2-PICOLINE / 5-Ethyl-2-Methylpyridne / Pyridine, 5-ethyl-2-methyl- / NSC 1984 / -2-picoL / FEMA 3546 / ALDEHYDINE / 2,5-Aldehydine / Aldehydkollidin", + "synonymsKr": "2메틸5에틸피리딘 / 2-메틸-5-에틸피리딘 / 2-메틸-5-에틸피리딘 / 메틸에틸피리딘 / 메틸에틸피리딘", + "unNumber": "", + "casNumber": "104-90-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2M5EP", + "name": "2-Methyl-5-ethyl pyridine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 325, + "abbreviation": "2MPA", + "nameKr": "이소부틸알데히드", + "nameEn": "2-Methylpropanal", + "synonymsEn": "Isobutyraldehyde / 2-METHYLPROPANAL / methylpropanal / ISOBUTYLALDEHYDE / Isobutanal / isobutyral / sobutyraldehyde / Isobutyraldehyd / 2-methyl-propana / Propanal,2-methyl- / ISOBUTYRIC ALDEHYDE", + "synonymsKr": "이소부틸알데하이드 / 이소부틸알데히드 / 아이소뷰티르알데하이드 / 아이소뷰틸알데하이드 / 이소부틸알데히드 / 이소부탄알 / 2-메틸프로판알 / 2-메틸-1-프로판알 / 2-메틸프로피안알데하이드 / LC-메틸프로피안알데하이드 / 발린 알데하이드 / 이소부티랄데히드 / 이소-부티랄데히드 / 이소부티르산 알데하이드 / 이소뷰틸알데하이드 / 이소프로필포름알데하이드", + "unNumber": "", + "casNumber": "78-84-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2MPA", + "name": "2-Methylpropanal", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 326, + "abbreviation": "2MPDN", + "nameKr": "2메틸피리딘", + "nameEn": "2-Methylpyridine", + "synonymsEn": "", + "synonymsKr": "2메틸피리딘", + "unNumber": "", + "casNumber": "109-06-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3.2, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2MPDN", + "name": "2-Methylpyridine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 327, + "abbreviation": "2NPPN", + "nameKr": "1-니트로프로판", + "nameEn": "2-Nitropropane", + "synonymsEn": "1-Nitropropane / 1-NP / ai3-02264 / n-C3H7NO2 / 1-Nitropro / 1-Nitropan / NiPar S-10 / 1-nitro-propan / 1-NITROPROPANE / N-Nitropropane / Propane,1-nitro-", + "synonymsKr": "2나이트로프로판 / 1-니트로프로판 / 1-나이트로프로판 / 1-나이트로프로페인(1-니트로프로판) / 1-니트로프로판", + "unNumber": "", + "casNumber": "108-03-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2NPPN", + "name": "2-Nitropropane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 328, + "abbreviation": "2PTEN", + "nameKr": "2펜텐", + "nameEn": "2-Pentene", + "synonymsEn": "2-Pentene / 2-C5H10 / AMYLENE / PENTENE / 2-Penten / petene-2 / 2-PENTENE / 2-AMYLENE / Pentene-2 / N-AMYLENE / l-pentene", + "synonymsKr": "2펜텐 / 2-펜텐 / 2-펜텐 / 프로필레틸린알파-n-아밀린", + "unNumber": "", + "casNumber": "109-67-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2PTEN", + "name": "2-Pentene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 329, + "abbreviation": "500HPN", + "nameKr": "", + "nameEn": "500 SUS HPN", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "500HPN", + "name": "500 SUS HPN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 330, + "abbreviation": "AC45C", + "nameKr": "", + "nameEn": "AC-45-C", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AC45C", + "name": "AC-45-C", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 331, + "abbreviation": "AALD", + "nameKr": "아세트알데히드", + "nameEn": "Acetaldehyde", + "synonymsEn": "Acetaldehyde / Ethanal / CH3CHO / METHANONE / FORMALDEHYDE SOLUTION / Acetaldehyd / acetaldehyde solution / FORMOL / FORMIC ALDEHYDE / METHYL ALDEHYDE / ACETALDEHYDE, ACS", + "synonymsKr": "아세트알데하이드 / 아세트알데히드 / 알데히드 / 에탄알 / 초산알데히드 / 아세트알데하이드 / 아세트알데히드 / 에틸알데히드 / 아세트산알데히드", + "unNumber": "", + "casNumber": "75-07-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AALD", + "name": "Acetaldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 332, + "abbreviation": "ACTN", + "nameKr": "아세톤", + "nameEn": "Acetone", + "synonymsEn": "Acetone / propan-2-one / aceton / 2-Propanone / (CH3)2CO / ACETONE ALCOHOL / Propan-1-one / Propanon / 2-Propanon / Dimethylketal / GRAMS DECOLORIZER", + "synonymsKr": "아세톤 / 아세톤 / 디메틸포름알데히드 / 베타-케토프로판 / 프로파논엔 / 2-프로파논 / 디메틸케톤 / 디메틸케톤,2-프로파논 / 메틸케톤 / 피로아세트에테르 / 다이메틸 케톤 / 다이메틸포름알데하이드 / 메틸 케톤 / 피로아세트 에테르", + "unNumber": "", + "casNumber": "67-64-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ACTN", + "name": "Acetone", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 333, + "abbreviation": "ACH", + "nameKr": "아세톤 사이노히드린", + "nameEn": "Acetone cyanohydrine", + "synonymsEn": "Acetone cyanohydrin / 2-Hydroxy-2-methylpropanenitrile / Acetone Cyanohydrine / 2-Cyano-2-propanol / 2-HYDROXY-2-METHYLPROPIONITRILE / usafrh-8 / USAF rh-8 / Acetoncianidrina / Acetoncyanhydrin / Acetonkyanhydrin / AKOS BBS-00004270", + "synonymsKr": "아세톤시아노히드린 / 아세톤사이아노하이드린 / 2-히드록시-2-메틸-프로판니트릴2-메틸-락토니트릴 / 아세톤시아노하드린 / 아세톤시아노히드린 / 아세톤시아노히드린 / 아세톤 사이아노하이드린 / 2-메틸락토나이트릴 / 2-메틸아세토나이트릴 / 2-사이아노-2-프로판올 / 2-사이아노-2-하이드록시프로페인 / 2-사이아노프로판-2-올 / 2-하이드록시-2-메틸프로판나이트릴 / 2-하이드록시-2-메틸프로페인나이트릴 / 2-하이드록시-2-메틸프로피오나이트릴 / 2-하이드록시이소부티로나이트릴 / 락토나이트릴, 2-메틸- / 아세톤 시아노히드린 / 알파-하이드록시아이소뷰티로나이트릴 / 알파-하이드록시이소부티로나이트릴 / 이소프로필사이아노 히드린", + "unNumber": "", + "casNumber": "75-86-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ACH", + "name": "Acetone cyanohydrine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 334, + "abbreviation": "ANL", + "nameKr": "아세토나이트릴", + "nameEn": "Acetonitrile", + "synonymsEn": "Acetonitrile / ACN / MeCN / CH3CN / AN / Acetonitril / MGDA / anhydrous Acetonitrile / ETHANENITRILE / Cyanomethan / MOBILE PHASE ACETONITRILE", + "synonymsKr": "아세토나이트릴 / 아세토니트릴 / 메탄카르보니트릴 / 에탄니트릴 / 메틸시아나이드 / 시아노메탄 / 아세토나이트릴 / 에틸니트릴 / 나이트로니트릴 / 메틸 시아나이드 / 에탄나이트릴", + "unNumber": "1093", + "casNumber": "75-05-8", + "transportMethod": "", + "sebc": "", + "usage": "용매, 화학 반응제로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANL", + "name": "Acetonitrile", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 335, + "abbreviation": "ACRA", + "nameKr": "아크릴산", + "nameEn": "Acrylic acid", + "synonymsEn": "Acrylic acid / Acrylate / 2-PROPENOIC ACID / Glacial acrylic acid / PROPENOIC ACID / CH2=CHCOOH / Propensαure / Acroleic acid / prop-2-enoicacid / acrylated MonoMers / 2-Propenoic acid (I)", + "synonymsKr": "아크릴산 / 아크릴산 / 2-프로펜산 / 2-프로펜산,아크롤레익산 / 비닐포름산 / 아크롤릭산 / 에틸렌카르복실산 / 프로펜산ACROLEICACID / 아크릭산 / 아크롤릭산 / 에틸렌카르복실산 / 비닐포름산 / 2-프로펜산 / 프로펜산 / 아크릴릭애씨드", + "unNumber": "2218", + "casNumber": "79-10-7", + "transportMethod": "", + "sebc": "", + "usage": "고무, 플라스틱, 산촉매, 응집제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.12.3, 15.12.4, 15.13, 15.17, 15.19, 16.2.9, 16.6.1", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ACRA", + "name": "Acrylic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 336, + "abbreviation": "AL150Z", + "nameKr": "", + "nameEn": "AL 150Z", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AL150Z", + "name": "AL 150Z", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 337, + "abbreviation": "AL304", + "nameKr": "", + "nameEn": "AL 304", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AL304", + "name": "AL 304", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 338, + "abbreviation": "AL304B", + "nameKr": "", + "nameEn": "AL 304B", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AL304B", + "name": "AL 304B", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 339, + "abbreviation": "ALBEV", + "nameKr": "술 종류", + "nameEn": "Alcoholic beverages( i.e. rum, wine)", + "synonymsEn": "Benzyl alcohol / BnOH / PHENYLMETHANOL / BENZENEMETHANOL / benjiachun / Benzylalkohol / PHENYLCARBINOL / Benzyl alcoholl / Natural benzyl alcohol / FEMA 2137 / benzalalcohol", + "synonymsKr": "벤질 알코올 / 벤질알코올 / (하이드록시메틸)벤젠 / 벤젠메탄올 / 알BENZENEMETHANOL / 알파-하이드록시톨루엔 / 페닐메틸알코올 / 페닐카빈올 / 벤젠카빈올 / 벤질알콜 / 벤질알코올 / 알파-톨루엔올 / 페닐메탄올 / 페닐메틸 알코올", + "unNumber": "", + "casNumber": "100-51-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ALBEV", + "name": "Alcoholic beverages( i.e. rum, wine)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 340, + "abbreviation": "AFA", + "nameKr": "세틸알코올", + "nameEn": "Alfol alcohol", + "synonymsEn": "1-Octadecanol / STEARYL ALCOHOL / Ceteareth-20 / OCTADECANOL / Octadecan-1-ol / Stenol / stearyl / STEARYLIC ALCOHOL / Stearol / n-Octadecanol / OCTADECYL ALCOHOL", + "synonymsKr": "스테아릴 알코올 / 1-히드록시옥타데칸 / N-옥타데실알코올 / N-옥타데칸올 / 옥타데실알코올 / 옥타데칸올 / 1-옥타데칸올 / 스테아릴알코올 / 스테아릴알콜 / 스테아릴알코올 / 1-하이드록시옥타에칸 / 옥사데실 알코올", + "unNumber": "1986", + "casNumber": "112-92-5", + "transportMethod": "", + "sebc": "", + "usage": "화장품 크림, 윤활제, 향수 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AFA", + "name": "Alfol alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 341, + "abbreviation": "AFAC10", + "nameKr": "세테아릴 알코올", + "nameEn": "Alfol alcohol C10", + "synonymsEn": "1-Octadecanol / STEARYL ALCOHOL / Ceteareth-20 / OCTADECANOL / Octadecan-1-ol / Stenol / stearyl / STEARYLIC ALCOHOL / Stearol / n-Octadecanol / OCTADECYL ALCOHOL", + "synonymsKr": "스테아릴 알코올 / 1-히드록시옥타데칸 / N-옥타데실알코올 / N-옥타데칸올 / 옥타데실알코올 / 옥타데칸올 / 1-옥타데칸올 / 스테아릴알코올 / 스테아릴알콜 / 스테아릴알코올 / 1-하이드록시옥타에칸 / 옥사데실 알코올", + "unNumber": "1986", + "casNumber": "112-92-5", + "transportMethod": "", + "sebc": "", + "usage": "화장품 크림, 윤활제, 향수 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AFAC10", + "name": "Alfol alcohol C10", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 342, + "abbreviation": "AFBLD610", + "nameKr": "고급알코올", + "nameEn": "Alfol Blend 610", + "synonymsEn": "1-Octadecanol / STEARYL ALCOHOL / Ceteareth-20 / OCTADECANOL / Octadecan-1-ol / Stenol / stearyl / STEARYLIC ALCOHOL / Stearol / n-Octadecanol / OCTADECYL ALCOHOL", + "synonymsKr": "스테아릴 알코올 / 1-히드록시옥타데칸 / N-옥타데실알코올 / N-옥타데칸올 / 옥타데실알코올 / 옥타데칸올 / 1-옥타데칸올 / 스테아릴알코올 / 스테아릴알콜 / 스테아릴알코올 / 1-하이드록시옥타에칸 / 옥사데실 알코올", + "unNumber": "1986", + "casNumber": "112-92-5", + "transportMethod": "", + "sebc": "", + "usage": "화장품 크림, 윤활제, 향수 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AFBLD610", + "name": "Alfol Blend 610", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 343, + "abbreviation": "AKN6/9", + "nameKr": "알케인", + "nameEn": "Alkanes (C6-C9)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "68475-57-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AKN6/9", + "name": "Alkanes (C6-C9)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 344, + "abbreviation": "AMOXPOL", + "nameKr": "", + "nameEn": "Alkeny Mod ,Oxyalkylene polymer", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AMOXPOL", + "name": "Alkeny Mod ,Oxyalkylene polymer", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 345, + "abbreviation": "APPGE", + "nameKr": "알킬페놀폴리글리콜에테르", + "nameEn": "Alkyl phenol polyglycol ether", + "synonymsEn": "Alkylphenol polyglycol ether", + "synonymsKr": "알킬페놀폴리글리콜에테르 / 알킬페놀폴리글리콜에테르", + "unNumber": "", + "casNumber": "9007-37-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "APPGE", + "name": "Alkyl phenol polyglycol ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 346, + "abbreviation": "ACL", + "nameKr": "알릴클로라이드", + "nameEn": "Allyl chloride", + "synonymsEn": "Allyl chloride / 3-CHLOROPROPENE / Chloropropene / 3-CHLORO-1-PROPENE / CH2=CHCH2Cl / Barchlor / 3-Chloroprene / Allile / NCI-C04615 / Allylchlor / Allylchloide", + "synonymsKr": "염화알릴 / 2-프로펜일염화물 / 3-클로로프로펜 / 알릴염화물 / 알릴클로라이드 / 염화알릴 / 염화알릴 / 알릴클로라이드(3-클로로프로펜) / 에스터의유리알릴알코올농도가0.1%를초과하는알릴에스터류 / 아릴 클로라이드 / 염화아릴 / 1-클로로-2-프로펜", + "unNumber": "", + "casNumber": "107-05-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ACL", + "name": "Allyl chloride", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 347, + "abbreviation": "ALMOND", + "nameKr": "아몬드오일", + "nameEn": "Almond oil", + "synonymsEn": "Sweet almond oil / stavitini / stavitine / ALMOND OIL / Oils,almond / Prunus dulcus / AMYGDALAE OLEUM / Almond Oil pure / oilofsweetalmond / SWEET ALMOND OIL / RefinedAlmondOil", + "synonymsKr": "스위트아몬드오일 / 스위트아몬드오일", + "unNumber": "", + "casNumber": "8007-69-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ALMOND", + "name": "Almond oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 348, + "abbreviation": "ALP79", + "nameKr": "", + "nameEn": "Alphanol-79", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ALP79", + "name": "Alphanol-79", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 349, + "abbreviation": "AOLE12", + "nameKr": "알파올레핀", + "nameEn": "Alpha-Oleffin C12", + "synonymsEn": "Alpha olefins CBNumberCB41104015", + "synonymsKr": "알파올레핀", + "unNumber": "", + "casNumber": "69898-00-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AOLE12", + "name": "Alpha-Oleffin C12", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 350, + "abbreviation": "AOLE1214", + "nameKr": "알파올레핀", + "nameEn": "Alpha-Oleffin C12-C14", + "synonymsEn": "Alpha olefins CBNumberCB41104015", + "synonymsKr": "알파올레핀", + "unNumber": "", + "casNumber": "69898-00-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AOLE1214", + "name": "Alpha-Oleffin C12-C14", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 351, + "abbreviation": "AOLE8", + "nameKr": "알파올레핀", + "nameEn": "Alpha-Oleffin C8", + "synonymsEn": "Alpha olefins CBNumberCB41104015", + "synonymsKr": "알파올레핀", + "unNumber": "", + "casNumber": "69898-00-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AOLE8", + "name": "Alpha-Oleffin C8", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 352, + "abbreviation": "AO8/10", + "nameKr": "알파올레핀", + "nameEn": "Alpha-Oleffin C8-C10", + "synonymsEn": "Alpha olefins CBNumberCB41104015", + "synonymsKr": "알파올레핀", + "unNumber": "", + "casNumber": "69898-00-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AO8/10", + "name": "Alpha-Oleffin C8-C10", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 353, + "abbreviation": "APCLN", + "nameKr": "알파피콜린", + "nameEn": "Alpha-Picoline", + "synonymsEn": "2-Picoline / 2-METHYLPYRIDINE / α-picoline / o-Picoline / a-Picoline / 2-Methylpyidine / pyridine,2-methyl- / ALPHAP / NSC-3409 / ai3-2409 / aPicolin", + "synonymsKr": "α-피콜린 / 2-메틸피리딘 / 2-피콜린 / α-피콜린", + "unNumber": "", + "casNumber": "109-06-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "APCLN", + "name": "Alpha-Picoline", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 354, + "abbreviation": "AEEA", + "nameKr": "아미노에틸에탄올아민", + "nameEn": "Aminoethylethanolamine", + "synonymsEn": "2-(2-Aminoethylamino)ethanol / AEEA / AMINOETHYLETHANOLAMINE / 2-((2-Aminoethyl)amino)ethan-1-ol / N-(2-HYDROXYETHYL)ETHYLENEDIAMINE / AMINOETHYLETHANOLAMIN / N-(2-AMINOETHYL)ETHANOLAMINE / aminoethyl / N-AMINOETHYL ETHANOLAMINE / (2-Hydroxyethyl)ethylenediamine / N-(2-Hydroxyethyl)ethylenediamine,97%", + "synonymsKr": "아미노에틸 에탄올아민 / N-2-하이(2-AMINOETHYL)ETHANOLAMINE / (2-아미노에틸)에탄올아민 / 2-(2-아미노에틸아미노)에탄올 / 2-(2-하이드록시에틸아미노)에틸아민 / N-(2-아미노에틸)에탄올아민 / 아미노에틸에탄올아민 / 아미노에틸에탄올아민(AEEA) / 아미노에틸 에탄올아민 / N-(2-하이드록시에틸)에틸렌다이아민 / 모노에탄올에틸렌다이아민", + "unNumber": "", + "casNumber": "111-41-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AEEA", + "name": "Aminoethylethanolamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 355, + "abbreviation": "AMIX", + "nameKr": "", + "nameEn": "Ammix", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AMIX", + "name": "Ammix", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 356, + "abbreviation": "APP", + "nameKr": "암모늄 폴리인산염", + "nameEn": "Ammonium polyphosphate", + "synonymsEn": "Ammonium polyphosphate / APP / polyphosphoric acids ammonium salts / APP-0 / APP-1 / APP-3 / APP Ⅰ / ICP55 / XAP-01 / FR-APP / NPHPL1", + "synonymsKr": "암모늄 폴리인산염 / 암모늄폴리인산염 / 암모늄폴리인산염(AMMONIUMPOLYPHOSPHATE)", + "unNumber": "", + "casNumber": "68333-79-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "APP", + "name": "Ammonium polyphosphate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 357, + "abbreviation": "AMLA", + "nameKr": "아밀알코올", + "nameEn": "Amyl alcohol", + "synonymsEn": "1-Pentanol / AMYL ALCOHOL / PENTAN-1-OL / N-PENTANOL / FUSEL OIL / N-AMYL ALCOHOL / Amylol / PENTYL ALCOHOL / N-PENTYL ALCOHOL / 1-Pentano1 / Pentanol-1", + "synonymsKr": "1-펜타놀 / 1-펜타놀 / N-아밀알코올 / 아밀알코올 / N-펜틸알코올 / N-아밀알코올 / 아밀알코올 / 아밀올 / 펜틸알코올 / 1-펜탄올 / N-부틸카빈올 / 일차아밀알 / N-아밀알코올 / N-펜틸 알코올 / 1-펜틸 알코올 / n-아밀 알코올 / n-펜탄올 / 아밀 알코올 / 펜탄-1-올 / 펜탄올 / 펜틸 알코올", + "unNumber": "1105", + "casNumber": "71-41-0", + "transportMethod": "", + "sebc": "", + "usage": "제약제조 원료, 합성 조미료, 윤활유 첨가제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AMLA", + "name": "Amyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 358, + "abbreviation": "ACVO", + "nameKr": "오메가오일", + "nameEn": "Anchovy oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ACVO", + "name": "Anchovy oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 359, + "abbreviation": "ANLN", + "nameKr": "아닐린", + "nameEn": "Aniline", + "synonymsEn": "Aniline / ANILINE OIL / BENZENAMINE / PHENYLAMINE / Anilin / arylamine / BENZENEAMINE / Aminophen / benzamine / amino-benzen / aniline aniline", + "synonymsKr": "아닐린 / 아닐린 / 벤젠아민 / 아니빔BENZAMINE / 아닐린오일 / 아미노펜 / 청색오일 / 페닐아민 / 아미노벤젠 / 아닐린,그염류및그할로겐화유도체및설폰화유도체 / 유카인 / 아닐린 오일", + "unNumber": "", + "casNumber": "62-53-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANLN", + "name": "Aniline", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 360, + "abbreviation": "ANOL", + "nameKr": "", + "nameEn": "Anol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANOL", + "name": "Anol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 361, + "abbreviation": "ANOLON", + "nameKr": "아놀론", + "nameEn": "Anolon", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANOLON", + "name": "Anolon", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 362, + "abbreviation": "ANOND", + "nameKr": "", + "nameEn": "Anon D", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANOND", + "name": "Anon D", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 363, + "abbreviation": "ANON/ANL", + "nameKr": "", + "nameEn": "Anon-Anool mixture", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ANON/ANL", + "name": "Anon-Anool mixture", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 364, + "abbreviation": "CORE100", + "nameKr": "BASE OIL", + "nameEn": "APE CORE 100", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CORE100", + "name": "APE CORE 100", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 365, + "abbreviation": "CORE150", + "nameKr": "BASE OIL", + "nameEn": "APE CORE 150", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CORE150", + "name": "APE CORE 150", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 366, + "abbreviation": "CORE2500", + "nameKr": "BASE OIL", + "nameEn": "APE CORE 2500", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CORE2500", + "name": "APE CORE 2500", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 367, + "abbreviation": "CORE600", + "nameKr": "BASE OIL", + "nameEn": "APE CORE 600", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CORE600", + "name": "APE CORE 600", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 368, + "abbreviation": "APJUC", + "nameKr": "", + "nameEn": "Apple juice concentrate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "APJUC", + "name": "Apple juice concentrate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 369, + "abbreviation": "APRKO", + "nameKr": "아프리코트커넬 오일(행인유 / 각종 비료, 의약용)", + "nameEn": "Apricot kernel oil", + "synonymsEn": "APRICOT KERNEL OIL / FEMA 2150 / PERSIC OIL / Oils,apricot / PERSICOILREFINED / APRICOT KERNEL OIL / Apricot Oil (Organic) / Persic Oil/Apricot Kernel Oil / TIANFU-CHEM APRICOT KERNEL OIL / Prunusarmeniacakerneloil,refined / APRICOT(PRUNUSARMENIACA)KERNELOIL", + "synonymsKr": "살구씨오일 / 살구씨오일", + "unNumber": "", + "casNumber": "72869-69-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "APRKO", + "name": "Apricot kernel oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 370, + "abbreviation": "ARCACID", + "nameKr": "아라키드산(윤활재, 합성 수지, 왁스용)", + "nameEn": "Arachidic acid", + "synonymsEn": "Arachidic acid / EICOSANOIC ACID / ARACHIC ACID / C20 / CAPRIC / ICOSANOIC ACID / arachidic / Icosansure / Eicosansαure / N-EICOSANOIC ACID / NSC 93983", + "synonymsKr": "에이코사노 산 / 에이코사노산 / 에이코사노산 / 아라키딕애씨드 / 아라크산 / 아라키딘산 / 1-에이코산산", + "unNumber": "", + "casNumber": "506-30-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ARCACID", + "name": "Arachidic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 371, + "abbreviation": "POLF3000", + "nameKr": "아르콜 폴리올", + "nameEn": "Arcol F3000 Polyol", + "synonymsEn": "Poly(propylene glycol) / ppg / PPG-3 / PPG-17 / PPG-7 / ppg-15 / PPG-12 / PPG-16 / PPG-20 / PPG-26 / PPG-34", + "synonymsKr": "마콜 P 1200 / 마콜P1200 / 폴리프로필렌글리콜 / 폴리프로필렌글리콜 / 피피지-12 / 피피지-13 / 피피지-15 / 피피지-16 / 피피지-17 / 피피지-51 / 피피지-20 / 피피지-26 / 피피지-3 / 피피지-30 / 피피지-33 / 피피지-34 / 피피지-52 / 피피지-69 / 피피지-7 / 피피지-9 / 폴리프로필렌 글라이콜", + "unNumber": "", + "casNumber": "25322-69-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POLF3000", + "name": "Arcol F3000 Polyol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 372, + "abbreviation": "POLHS100", + "nameKr": "아르콜 폴리올", + "nameEn": "Arcol HS-100 Polyol", + "synonymsEn": "Poly(propylene glycol) / ppg / PPG-3 / PPG-17 / PPG-7 / ppg-15 / PPG-12 / PPG-16 / PPG-20 / PPG-26 / PPG-34", + "synonymsKr": "마콜 P 1200 / 마콜P1200 / 폴리프로필렌글리콜 / 폴리프로필렌글리콜 / 피피지-12 / 피피지-13 / 피피지-15 / 피피지-16 / 피피지-17 / 피피지-51 / 피피지-20 / 피피지-26 / 피피지-3 / 피피지-30 / 피피지-33 / 피피지-34 / 피피지-52 / 피피지-69 / 피피지-7 / 피피지-9 / 폴리프로필렌 글라이콜", + "unNumber": "", + "casNumber": "25322-69-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POLHS100", + "name": "Arcol HS-100 Polyol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 373, + "abbreviation": "POL1905", + "nameKr": "아르콜 폴리올", + "nameEn": "ARCOL Polyol 1905", + "synonymsEn": "Poly(propylene glycol) / ppg / PPG-3 / PPG-17 / PPG-7 / ppg-15 / PPG-12 / PPG-16 / PPG-20 / PPG-26 / PPG-34", + "synonymsKr": "마콜 P 1200 / 마콜P1200 / 폴리프로필렌글리콜 / 폴리프로필렌글리콜 / 피피지-12 / 피피지-13 / 피피지-15 / 피피지-16 / 피피지-17 / 피피지-51 / 피피지-20 / 피피지-26 / 피피지-3 / 피피지-30 / 피피지-33 / 피피지-34 / 피피지-52 / 피피지-69 / 피피지-7 / 피피지-9 / 폴리프로필렌 글라이콜", + "unNumber": "", + "casNumber": "25322-69-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POL1905", + "name": "ARCOL Polyol 1905", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 374, + "abbreviation": "ARDPM", + "nameKr": "디프로필렌 글리콜 모노메틸 에테르(제품명)", + "nameEn": "ARCOSOLV DPM", + "synonymsEn": "Dipropylene glycol monomethyl ether / DPM / dpgme / (2-methoxymethylethoxy)propanol / DI(PROPYLENE GLYCOL) METHYL ETHER / arcosolv / GLYCOL ETHER DPM / Methoxypropoxypropanol / Dipropylene glycol monomethyl / (2-methoxymethylethoxy)-propano / 3-(3-Methoxypropoxy)-1-propanol", + "synonymsKr": "디프로필렌 글리콜 메틸 에테르 / 디프로필렌글리콜메틸에테르 / 다이프로필렌글리콜메틸에테르 / 디프로필렌글리콜메틸에테르 / 다이프로필렌 글리콜 모노메틸 에테르 / (2-메톡시메티에톡시)프로판올 / PPG-2 메틸 에테르 / 디프로필렌 글리콜 모노메틸 에테르", + "unNumber": "", + "casNumber": "34590-94-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ARDPM", + "name": "ARCOSOLV DPM", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 375, + "abbreviation": "ARPM", + "nameKr": "1-메톡시-2-프로판올", + "nameEn": "ARCOSOLV PM soluvent", + "synonymsEn": "1-Methoxy-2-propanol / PM / PGME / Methoxypropanol / 2-Propanol, 1-methoxy- / PROPYLENE GLYCOL METHYL ETHER / 1-METHOXYPROPAN-2-OL / 203-539-1 / Dowanol pm / GLYCOL ETHER PM / METHOXYISOPROPANOL", + "synonymsKr": "프로필렌글리콜 모노메틸에테르 / 프로필렌글리콜모노메틸에테르 / 프로필렌글리콜모노메틸에테르 / 프로필렌글리콜메틸에테르 / 메톡시아이소프로판올 / 프로필렌글리콜모노메틸에테르 / 1-메톡시-2-하이드록시프로페인 / 1-메톡시-2-프로판올 / 글리콜 에테르 / 메톡시프로판-1,2-디올 / 알파-프로필렌 글리콜 모노메틸 에테르 / 프로필렌 글리콜 메틸 에테르 / 프로필렌 글리콜 모노메틸 에테르 / 프로필렌 글리콜, 1 메틸 에테르 / 프로필렌 글리콜의 메톡시에테르", + "unNumber": "", + "casNumber": "107-98-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ARPM", + "name": "ARCOSOLV PM soluvent", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 376, + "abbreviation": "ASLH", + "nameKr": "", + "nameEn": "Aromasol H", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ASLH", + "name": "Aromasol H", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 377, + "abbreviation": "AROMA", + "nameKr": "천연 에센셜 오일", + "nameEn": "Aromatic oil", + "synonymsEn": "White camphor oil", + "synonymsKr": "캠포 기름", + "unNumber": "", + "casNumber": "8008-51-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AROMA", + "name": "Aromatic oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 378, + "abbreviation": "AVGAS", + "nameKr": "항공 휘발유", + "nameEn": "Avation gasoline", + "synonymsEn": "GASOLINE ADDITIVES MIXTURE NO 2 / OLEFINS / benzyna / benzinebr-1 / benzinebr-2 / herbicidees / gasolinebr-1 / nefras150/200 / whitegasoline / Gasoline No.90 / Gasoline No.70", + "synonymsKr": "가솔린 / 가솔린 / 가솔린(GASOLINE)", + "unNumber": "", + "casNumber": "86290-81-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AVGAS", + "name": "Avation gasoline", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 379, + "abbreviation": "AVKER", + "nameKr": "항공 등유", + "nameEn": "Avation kerosene", + "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", + "unNumber": "", + "casNumber": "64742-48-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AVKER", + "name": "Avation kerosene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 380, + "abbreviation": "AVO", + "nameKr": "아보카도 오일", + "nameEn": "Avocado oil", + "synonymsEn": "AVOCADO OIL / lipovala / VOCADO OIL / AVOCADO OIL / AVOCADOOILS / Oils, avocado / AVOCADO OLEUM / Oele, Avocado / AVOCADO-SEEDOIL / alligatorpearoil / REFINEDAVOCADOOIL", + "synonymsKr": "아보카도오일 / 아보카도오일 / 아보카도오일글리세레스-8에스터", + "unNumber": "", + "casNumber": "8024-32-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AVO", + "name": "Avocado oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 381, + "abbreviation": "BBS", + "nameKr": "바바수 오일", + "nameEn": "Babassu oil", + "synonymsEn": "Oils, babassu / Oils, babassu / Oele, Babassu- / ORBIGNYA OLEIFERA SEED OIL / Fats and Glyceridic oils, babassu", + "synonymsKr": "바바수씨오일 / 바바수씨오일 / 오일,바바수", + "unNumber": "", + "casNumber": "91078-92-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BBS", + "name": "Babassu oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 382, + "abbreviation": "BN", + "nameKr": "벤젠", + "nameEn": "BENZENE", + "synonymsEn": "Benzene / Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv®", + "synonymsKr": "벤젠 / 벤젠 / 벤졸렌 / 석탄나프타 / 시클로헥사트리엔 / 아눌렌 / 콜타르나프타 / 탄소오일 / 페닐수화 / 펜 / 피로벤졸 / 벤졸 / 싸이클로헥사트라이엔 / 페닐 하이드리드", + "unNumber": "", + "casNumber": "71-43-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BN", + "name": "BENZENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 383, + "abbreviation": "NP", + "nameKr": "노말 파라핀", + "nameEn": "NOMAL PARAFFINS", + "synonymsEn": "NOMAL PARAFFINS C5-20", + "synonymsKr": "노말 파라핀C-5-20", + "unNumber": "1268", + "casNumber": "64771-72-2", + "transportMethod": "", + "sebc": "", + "usage": "윤활유, 접착제, 세정제, 열에너지 저장 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NP", + "name": "NOMAL PARAFFINS", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 384, + "abbreviation": "BNL", + "nameKr": "파라핀 오일", + "nameEn": "Banole oil", + "synonymsEn": "PARAFFIN / LIQUID PARAFFIN / OIL / PARAFFIN LIQUID / NUJOL / White Oil 4060 / LIGHT WHITE OIL / LIQUID PETROLATUM / PARAFFIN OIL LIGHT / MINERAL OIL, LIGHT / WK-I", + "synonymsKr": "파라핀유 / 탈취등유 / 탈취등유(비수용성) / 탈취등유(DEODORIZEDKEROSENE) / 탄화수소 오일류", + "unNumber": "1270", + "casNumber": "8012-95-1", + "transportMethod": "", + "sebc": "", + "usage": "세제, 화장품 등 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BNL", + "name": "Banole oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 385, + "abbreviation": "BO60N", + "nameKr": "BASE OIL", + "nameEn": "Base oil 60N", + "synonymsEn": "Distillates (petroleum), hydrotreated middle / Exxsol D130 / Exxsol / Exxsol D95 / Exxsol D145 / Solvesso130 / Hydroseal G3H / C12-20 alkane / Hydroseal G400H / Hydroseal G240H / Hydroseal G232H", + "synonymsKr": "수소처리된 중간 정제유 (석유) / 수소처리된중간정제유(석유) / 히드로처리된중간증류액 / 수소처리된중간정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDMIDDLE) / C12-20아이소파라핀 / C13-14알케인 / C13-15알케인 / 석유증류물,수소화처리중질 / 석유증류물,수소화처리중질,정제과정이완전히알려지고발암물질을함유하지않음을보여줄수있으면예외 / 증류액(석유),수소처리중간", + "unNumber": "", + "casNumber": "64742-46-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BO60N", + "name": "Base oil 60N", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 386, + "abbreviation": "BNUT", + "nameKr": "", + "nameEn": "Beechnut oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BNUT", + "name": "Beechnut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 387, + "abbreviation": "BWAX", + "nameKr": "버즈왁스", + "nameEn": "Beeswax", + "synonymsEn": "bee's wax / BEESWAX / WAX / CERA ALBA / WHITE BEESWAX / WHITE WAX / YELLOW BEESWAX / YELLOW WAX / Chinese wax / BEES WAX, NF / BEESWAX, YELLOW", + "synonymsKr": "밀납(왁스) / BEES왁스 / 밀납 / 밀왁스 / 백왁스,황왁스,벌왁스 / 세라알바 / 밀납(왁스)", + "unNumber": "", + "casNumber": "8012-89-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BWAX", + "name": "Beeswax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 388, + "abbreviation": "BTMOL", + "nameKr": "비트당밀", + "nameEn": "Beet molasses", + "synonymsEn": "Molasses / tangmi / Molasses / Cane syrup / CANEMOLASSES / beet molasses / Molasses, beet / Einecs 270-698-1 / Beet sugar molasses / Molasses ISO 9001:2015 REACH", + "synonymsKr": "당밀 / 당밀 / molasses / 당밀", + "unNumber": "", + "casNumber": "68476-78-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BTMOL", + "name": "Beet molasses", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 389, + "abbreviation": "BEHACID", + "nameKr": "베헤닉산", + "nameEn": "Behenic acid", + "synonymsEn": "Docosanoic acid / BEHENIC ACID / C22 / behenic / docosanoic / B95 / EXL5 / NAA22S / NAA222S / CHacid B / B95(acid)", + "synonymsKr": "도코사노 산 / 도코사노산 / 도코사노산 / 베헤닉애씨드 / 1-도코사노 산 / n- 도코사노 산 / 도코사노 산 / 도코소 산 / 베헨 산", + "unNumber": "", + "casNumber": "112-85-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BEHACID", + "name": "Behenic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 390, + "abbreviation": "BZN", + "nameKr": "벤젠", + "nameEn": "Benzene", + "synonymsEn": "Benzene / Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv®", + "synonymsKr": "벤젠 / 벤젠 / 벤졸렌 / 석탄나프타 / 시클로헥사트리엔 / 아눌렌 / 콜타르나프타 / 탄소오일 / 페닐수화 / 펜 / 피로벤졸 / 벤졸 / 싸이클로헥사트라이엔 / 페닐 하이드리드", + "unNumber": "", + "casNumber": "71-43-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BZN", + "name": "Benzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 391, + "abbreviation": "BZLA", + "nameKr": "벤젠 알코올", + "nameEn": "Benzyl alcohol", + "synonymsEn": "Benzyl alcohol / BnOH / PHENYLMETHANOL / BENZENEMETHANOL / benjiachun / Benzylalkohol / PHENYLCARBINOL / Benzyl alcoholl / Natural benzyl alcohol / FEMA 2137 / benzalalcohol", + "synonymsKr": "벤질 알코올 / 벤질알코올 / (하이드록시메틸)벤젠 / 벤젠메탄올 / 알BENZENEMETHANOL / 알파-하이드록시톨루엔 / 페닐메틸알코올 / 페닐카빈올 / 벤젠카빈올 / 벤질알콜 / 벤질알코올 / 알파-톨루엔올 / 페닐메탄올 / 페닐메틸 알코올", + "unNumber": "", + "casNumber": "100-51-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BZLA", + "name": "Benzyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 392, + "abbreviation": "BLMLSS", + "nameKr": "블랙스트램 몰래시", + "nameEn": "Blackstrap molasses", + "synonymsEn": "Molasses, blackstrap / / SOYMOLASSES / CORNMOLASSES / WOODMOLASSES / SOYBEANMOLASSES / Einecs 232-487-2 / Blackstrap molasses / Molasses, blackstrap", + "synonymsKr": "블랙스트램 몰래시", + "unNumber": "", + "casNumber": "8052-35-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BLMLSS", + "name": "Blackstrap molasses", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 393, + "abbreviation": "BSAFF", + "nameKr": "해바라기씨 오일 혼합물", + "nameEn": "Blend safflowerseed oil", + "synonymsEn": "SUNFLOWER SEED OIL / SUNFLOWER OIL / HELIANTHUS ANNUUS (SUNFLOWER) SEED OIL / Helianthus annuus oil / Organic Sunflower Oil / SUNFLOWER (HELIANTHUS ANNUUS) OIL / Gina / Haioru 75B / Florasun 90 / Sonnenblumenoel / Gina (glyceride)", + "synonymsKr": "해바라기씨 오일 혼합물", + "unNumber": "", + "casNumber": "8001-21-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BSAFF", + "name": "Blend safflowerseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 394, + "abbreviation": "BFLD", + "nameKr": "브레이크액", + "nameEn": "Brake fluid", + "synonymsEn": "TRIETHYLENE GLYCOL MONOBUTYL ETHER / BUTYL TRIGLYCOL / ethe / Butoxytriglycol / BUTYL TRIGLYCOL ETHER / dowanoltbat / poly-solvtb / triethylene glycol butyl ester / 2-[2-(2-BUTOXYETHOXY)ETHOXY]ETHANOL / BTG / TriEGBE", + "synonymsKr": "트리에틸렌 글리콜 모노뷰틸 에테르 / 트리에틸렌글리콜모노뷰틸에테르 / 트리에틸렌글리콜모노뷰틸에테르 / 3,6,9-트라이옥사트라이데칸-1-올 / 부톡시트라이글리콜 / 부톡시트라이에틸렌 글리콜 / 뷰틸 260 / 뷰틸 트라이에톡솔 / 뷰틸트라이글리콜 / 트라이글리콜 모노뷰틸 에테르 / 트라이에틸렌 글리콜 모노뷰틸 에테르 / 트라이에틸렌 글리콜 뷰틸 에테르 / 폴리-솔브 TB / 부톡시트리에틸렌글리콜", + "unNumber": "", + "casNumber": "143-22-6 8052-32-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BFLD", + "name": "Brake fluid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 395, + "abbreviation": "BFDOT3", + "nameKr": "브레이크액", + "nameEn": "Brake fluid DOT3", + "synonymsEn": "TRIETHYLENE GLYCOL MONOBUTYL ETHER / BUTYL TRIGLYCOL / ethe / Butoxytriglycol / BUTYL TRIGLYCOL ETHER / dowanoltbat / poly-solvtb / triethylene glycol butyl ester / 2-[2-(2-BUTOXYETHOXY)ETHOXY]ETHANOL / BTG / TriEGBE", + "synonymsKr": "트리에틸렌 글리콜 모노뷰틸 에테르 / 트리에틸렌글리콜모노뷰틸에테르 / 트리에틸렌글리콜모노뷰틸에테르 / 3,6,9-트라이옥사트라이데칸-1-올 / 부톡시트라이글리콜 / 부톡시트라이에틸렌 글리콜 / 뷰틸 260 / 뷰틸 트라이에톡솔 / 뷰틸트라이글리콜 / 트라이글리콜 모노뷰틸 에테르 / 트라이에틸렌 글리콜 모노뷰틸 에테르 / 트라이에틸렌 글리콜 뷰틸 에테르 / 폴리-솔브 TB / 부톡시트리에틸렌글리콜", + "unNumber": "", + "casNumber": "143-22-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BFDOT3", + "name": "Brake fluid DOT3", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 396, + "abbreviation": "BS150N", + "nameKr": "브라이트 스톡(고점도 윤활유 조합재료)", + "nameEn": "Brightstock 150N", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", + "unNumber": "", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BS150N", + "name": "Brightstock 150N", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 397, + "abbreviation": "BS500N", + "nameKr": "브라이트 스톡(고점도 윤활유 조합재료)", + "nameEn": "Brightstock 500N", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", + "unNumber": "", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BS500N", + "name": "Brightstock 500N", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 398, + "abbreviation": "BACE", + "nameKr": "초산 부틸", + "nameEn": "Butyl acetate", + "synonymsEn": "Butyl acetate / N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate", + "synonymsKr": "아세트산부틸 / 아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트", + "unNumber": "", + "casNumber": "123-86-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BACE", + "name": "Butyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 399, + "abbreviation": "BMA", + "nameKr": "부틸 메타크릴산염", + "nameEn": "Butyl methacrylate", + "synonymsEn": "Butyl methacrylate / bma / N-BUTYL METHACRYLATE / n-BMA / 2-Propenoic acid, 2-methyl-, butyl ester / 2-Methyl-2-propenoic acid butyl ester / butilmetacrilato / Butil metacrilato / Butylmethacrylaat / BUTYL METHACRYLATE / 1-BUTYLMETHACRYLATE", + "synonymsKr": "N-뷰틸 메타크릴레이트 / N-뷰틸메타크릴레이트 / N-부틸알파-메타크릴산 / 메타크릴METHACRYLICACID,BUTYLESTER / 부틸2-메타크릴산 / 부틸-2-메틸-2-프로펜산 / N-부틸메타크릴산 / 메타아크릴산뷰틸 / 메타크릴산n-부틸 / 메트아크릴산,부틸에스테르 / 부틸메타크릴레이트 / N-뷰틸 메타크릴레이트", + "unNumber": "", + "casNumber": "97-88-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.13, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BMA", + "name": "Butyl methacrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 400, + "abbreviation": "BMRIST", + "nameKr": "부틸 미리스트산염", + "nameEn": "Butyl myristate", + "synonymsEn": "Butyl methacrylate / bma / N-BUTYL METHACRYLATE / n-BMA / 2-Propenoic acid, 2-methyl-, butyl ester / 2-Methyl-2-propenoic acid butyl ester / butilmetacrilato / Butil metacrilato / Butylmethacrylaat / BUTYL METHACRYLATE / 1-BUTYLMETHACRYLATE", + "synonymsKr": "N-뷰틸 메타크릴레이트 / N-뷰틸메타크릴레이트 / N-부틸알파-메타크릴산 / 메타크릴METHACRYLICACID,BUTYLESTER / 부틸2-메타크릴산 / 부틸-2-메틸-2-프로펜산 / N-부틸메타크릴산 / 메타아크릴산뷰틸 / 메타크릴산n-부틸 / 메트아크릴산,부틸에스테르 / 부틸메타크릴레이트 / N-뷰틸 메타크릴레이트", + "unNumber": "", + "casNumber": "97-88-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BMRIST", + "name": "Butyl myristate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 401, + "abbreviation": "BOL", + "nameKr": "2-부톡시에탄올", + "nameEn": "Butyl oxitol", + "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", + "synonymsKr": "에틸렌글리콜모노부틸에테르 / 부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르", + "unNumber": "2810", + "casNumber": "111-76-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BOL", + "name": "Butyl oxitol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 402, + "abbreviation": "BDG", + "nameKr": "부틸클리콜", + "nameEn": "Butyldiglycol", + "synonymsEn": "Diethylene glycol monobutyl ether / DIETHYLENE GLYCOL MONOBUTYL ETHER / DB / BUTYL CARBITOL / BUTYLDIGLYCOL / 2-(2-BUTOXYETHOXY)ETHANOL / Ethanol, 2-(2-butoxyethoxy)- / DIETHYLENE GLYCOL BUTYL ETHER / DGBE / Butoxyethoxyethanol / DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", + "synonymsKr": "부틸글리콜 / 다이에틸렌글라이콜모노-N-뷰틸에테르 / 2-(2-부톡시에톡시)에탄올 / 부톡시디에틸렌글리콜 / 부틸옥시BUTOXYDIGLYCOL / 부틸카르비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 디에틸렌글리콜모노부틸에테르 / 부틸글리콜 / 뷰틸캐비톨 / 부틸카비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 부톡시다이글라이콜 / 다이에틸렌 글라이콜 모노-N-뷰틸 에테르", + "unNumber": "2810", + "casNumber": "112-34-5", + "transportMethod": "", + "sebc": "", + "usage": "용매, 보습제, 유화제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BDG", + "name": "Butyldiglycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 403, + "abbreviation": "BTRACID", + "nameKr": "닉산 / 부티르산", + "nameEn": "Butyric acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "107-92-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BTRACID", + "name": "Butyric acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 404, + "abbreviation": "B.LACTN", + "nameKr": "부티로락톤", + "nameEn": "Butyrolactone", + "synonymsEn": "Gamma Butyrolactone / GBL / BUTYROLACTONE / GAMMA-BUTYROLACTONE / Dihydrofuran-2(3H)-one / γ-Butyrolactone / G-BUTYROLACTONE / Dihydro-2(3H)-furanone / 1,4-BUTYROLACTONE / 4-HYDROXYBUTANOIC ACID LACTONE / Y-BUTYROLACTONE", + "synonymsKr": "뷰티로락톤 / γ-부틸올락톤 / 뷰틸로락톤 / 뷰티로락톤 / 감마부티로락톤 / 감마-부티로락톤 / 부티로락톤", + "unNumber": "", + "casNumber": "96-48-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "B.LACTN", + "name": "Butyrolactone", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 405, + "abbreviation": "C10", + "nameKr": "", + "nameEn": "C10", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C10", + "name": "C10", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 406, + "abbreviation": "C6CUT", + "nameKr": "", + "nameEn": "C6 CUT", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C6CUT", + "name": "C6 CUT", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 407, + "abbreviation": "C6/7GAS", + "nameKr": "", + "nameEn": "C6/C7 Gasoline", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C6/7GAS", + "name": "C6/C7 Gasoline", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 408, + "abbreviation": "C7/8MIX", + "nameKr": "", + "nameEn": "C7-C8 mixture", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C7/8MIX", + "name": "C7-C8 mixture", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 409, + "abbreviation": "C9/11ACL", + "nameKr": "", + "nameEn": "C9-C11 alcohol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C9/11ACL", + "name": "C9-C11 alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 410, + "abbreviation": "CAAN", + "nameKr": "질산암모늄칼슘", + "nameEn": "Calcium ammonium nitrate", + "synonymsEn": "Calcium nitrate / CA(NO3)2 / Calcium nitrate anhydrous / synfat1006 / nitrocalcite / limesaltpeter / Calciumnitrat / norgesaltpeter / norwaysaltpeter / CALCIUM NITRATE / calciumsaltpeter", + "synonymsKr": "질산 칼슘 / 질산칼슘 / 질산석회 / 칼슘디질산염 / 노르웨이염종이 / 석회질산 / 칼슘질산(1:2) / 질산칼슘 / 칼슘 질산염", + "unNumber": "", + "casNumber": "10124-37-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CAAN", + "name": "Calcium ammonium nitrate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 411, + "abbreviation": "CBRMD", + "nameKr": "브로민화 칼슘", + "nameEn": "Calcium bromide", + "synonymsEn": "Calcium bromide / CaBr2 / Brocal / C13189 / Dibromocalcium / CALCIUM BROMIDE / calciumdibromide / CALCIUM BROMIDE 52% / Calcium bromide,98% / CALCIUM (II) BROMIDE / calciumbromide(cabr2)", + "synonymsKr": "브롬화칼슘 / 브롬화칼슘", + "unNumber": "", + "casNumber": "7789-41-5 22208-73-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CBRMD", + "name": "Calcium bromide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 412, + "abbreviation": "CCLL", + "nameKr": "칼슘 염화물", + "nameEn": "Calcium chlorine liqueur", + "synonymsEn": "Calcium chloride / CaCl2 / Anhydrous calcium chloride / CalciuM Cloride / Calcium chloride fused / Calciumchlorid / CALCIUM CHLORIDE POWDER / CALCIUM CHLORIDE FLAKES / Calcium chloride pellets / Calcium chloride,aqueous solution / CALCIUM CHLORIDE POWDER ANHYDROUS", + "synonymsKr": "염화칼슘 / 염화석회 / 우르아민MC / 칼슘이염화물CALCOSAN / 칼코산 / 염화칼슘 / 염화칼슘(건조용) / 클로로칼슘 / 클로로칼슘 / 염화석회 / 칼코산 / 우르아민MC / 칼슘이염화물 / 염화칼슘(CALCIUMCHLORIDE) / 칼슘클로라이드 / 염화 칼슘 / 이염화 칼슘", + "unNumber": "", + "casNumber": "10043-52-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CCLL", + "name": "Calcium chlorine liqueur", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 413, + "abbreviation": "CNR", + "nameKr": "질산칼슘", + "nameEn": "Calcium nitrate", + "synonymsEn": "Calcium nitrate tetrahydrate / CALCIUM NITRATE, TETRAHYDRATE BIO-REFINED / CA NITRATE / Lime nitrate / dusicnanvapenaty / ACS reagent, 99% / CalciumNitrateA.R. / CalciumNitrate,>98% / CALCIUM NITRATE XTL / CALCIUM NITRATE 4H2O / CALCIUM NITRATE, ACS", + "synonymsKr": "칼슘 질산, 테트라수화물 / 노르웨이염종이 / 석회질산 / 칼슘디질산염 / 칼슘질산(1:2)LIMENITRATE / 질산석회 / 칼슘질산,테트라수화물 / 칼슘질산,테트라수화물(CALCIUMNITRATE,TETRAHYDRATE)", + "unNumber": "", + "casNumber": "13477-34-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CNR", + "name": "Calcium nitrate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 414, + "abbreviation": "CNPACID", + "nameKr": "", + "nameEn": "Calium nitrophosphoric acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CNPACID", + "name": "Calium nitrophosphoric acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 415, + "abbreviation": "LIG", + "nameKr": "칼슘 리그노술폰산염", + "nameEn": "Calsium lignosulphonate", + "synonymsEn": "LIGNOSULFONIC ACID, CALCIUM SALT / CELLULOSE SULPHITE / alciuM lignosulfonate / calium lignosulfonate / CALCIUM LIGNOSULFONATE / LIGNOSULFONIC ACID, CA / calciumligninsulphonate / Calcium lignosulphonate / calcium lignosulohonate / Calcium Ligninsulfonate / calcium lignin salfonate", + "synonymsKr": "칼슘 리그노설포네이트 / 칼슘리그노설포네이트 / 리그닌술폰산칼슘 / 칼슘리그노설포네이트 / 리그노설폰산, 칼슘 염 / 리그닌 칼슘 설포네이트 / 리그닌설폰산, 칼슘 염 / 설폰화 리그닌 칼슘 염 / 칼슘 리그노설포네이트", + "unNumber": "", + "casNumber": "8061-52-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LIG", + "name": "Calsium lignosulphonate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 416, + "abbreviation": "CASUFF", + "nameKr": "칼슘 장쇄 알킬아릴 설포네이트", + "nameEn": "Calsium long chain alkaryl suffonate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "722503-69-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CASUFF", + "name": "Calsium long chain alkaryl suffonate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 417, + "abbreviation": "CPH", + "nameKr": "캠퍼 오일", + "nameEn": "Camphor oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8008-51-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPH", + "name": "Camphor oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 418, + "abbreviation": "DRSO", + "nameKr": "캐네디언 탈유", + "nameEn": "Canadian degummed rape seed oil", + "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", + "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", + "unNumber": "", + "casNumber": "8002-13-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DRSO", + "name": "Canadian degummed rape seed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 419, + "abbreviation": "CANWAX", + "nameKr": "칸데릴라 왁스", + "nameEn": "Candelilla wax", + "synonymsEn": "CANDELILLA WAX / E 902 / MD 21 / SP 75 / FR 100 / NC 1630 / FEMA 3479 / MK 2 (wax) / CANDELLILAWAX / Candelila Wax / Candeliila wax", + "synonymsKr": "칸데릴라 왁스 / 칸데릴라왁스 / 칸데릴라왁스", + "unNumber": "", + "casNumber": "8006-44-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CANWAX", + "name": "Candelilla wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 420, + "abbreviation": "CPRA", + "nameKr": "카프릭산", + "nameEn": "Capric acid", + "synonymsEn": "Decanoic acid / N-DECANOIC ACID / CAPRIC ACID / Decoic acid / C10:0 / acid c-10 / n-decoicacid / Caprynic acid / CAPRINIC ACID / caprate (10:0) / 1-decanoic acid", + "synonymsKr": "카프린산 / 데칸산 / 카프린산 / 카프릭산 / 카프르산 / 카프릭애씨드 / 1-노난카르복실산", + "unNumber": "", + "casNumber": "334-48-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPRA", + "name": "Capric acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 421, + "abbreviation": "CLM", + "nameKr": "카프로락탐", + "nameEn": "Caprolactam", + "synonymsEn": "Caprolactam / EPSILON-CAPROLACTAM / CPL / ε-Caprolactam / E-CAPROLACTAM / PA 6 / Akulon / Capron / Stilon / Alkamid / enimine", + "synonymsKr": "카프로락탐 / 카프로락탐 / 아미노카프로익 락탐 / 아제판-2-온 / 엡실론-카프로락탐 / 헥사하이드로-2H-아제핀-2-온 / 6-카프로락탐", + "unNumber": "", + "casNumber": "105-60-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CLM", + "name": "Caprolactam", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 422, + "abbreviation": "CPLA", + "nameKr": "카프릴산", + "nameEn": "Caprylic acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "124-07-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPLA", + "name": "Caprylic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 423, + "abbreviation": "SC5601", + "nameKr": "", + "nameEn": "Caradol SC56-01", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SC5601", + "name": "Caradol SC56-01", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 424, + "abbreviation": "SC5602", + "nameKr": "", + "nameEn": "Caradol SC56-02", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SC5602", + "name": "Caradol SC56-02", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 425, + "abbreviation": "SC5616", + "nameKr": "", + "nameEn": "Caradol SC56-16", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SC5616", + "name": "Caradol SC56-16", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 426, + "abbreviation": "SP4303", + "nameKr": "", + "nameEn": "Caradol SP43-03", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SP4303", + "name": "Caradol SP43-03", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 427, + "abbreviation": "CRDL", + "nameKr": "", + "nameEn": "Caradols", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CRDL", + "name": "Caradols", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 428, + "abbreviation": "CBLC", + "nameKr": "카르볼산 기름", + "nameEn": "Carbolic oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8002-07-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CBLC", + "name": "Carbolic oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 429, + "abbreviation": "CDS", + "nameKr": "이황화탄소", + "nameEn": "Carbon disulfide", + "synonymsEn": "Carbon disulfide / CS2 / CARBON DISULPHIDE / CARBON DISULFID / Carbon sulfide / Carbon sulfide (CS2) / CARBON DISULFIDE 100MG NEAT / CLSTN2 / Weeviltox / NCI-C04591 / 99.9% (GC)", + "synonymsKr": "이황화탄소 / 이황화탄소 / 디티오탄소무수물 / 설포탄소무수물 / 이유화탄소CARBONBISULFIDE / 탄소황화합물 / 탄소디황화합물 / 탄소비황화합물 / 탄소이황화합물 / 셀룰로오스나트륨글리콜산염 / 나트륨카르복시메틸셀룰로오스 / 카르복시메틸셀루로오스나트륨 / 카르복 / 카본다이설파이드 / 이황화 탄소", + "unNumber": "", + "casNumber": "75-15-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CDS", + "name": "Carbon disulfide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 430, + "abbreviation": "CTC", + "nameKr": "사염화탄소", + "nameEn": "Carbon tetrachloride", + "synonymsEn": "Carbon tetrachloride / CCl4 / TETRACHLOROMETHANE / PERCHLOROMETHANE / Tetrachlormethan / R-10 / CFC-10 / MAGNACIDE / r10 / CCm0 / R 10", + "synonymsKr": "사염화탄소 / 사염화탄소 / 사클로로메탄,사염화메탄,테크라클로로메탄,퍼클로로메탄 / 카본테트라클로라이드 / 카본 테트라클로라이드 / 사염화 탄소", + "unNumber": "", + "casNumber": "56-23-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CTC", + "name": "Carbon tetrachloride", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 431, + "abbreviation": "CARDURAE", + "nameKr": "", + "nameEn": "Cardura E", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CARDURAE", + "name": "Cardura E", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 432, + "abbreviation": "CRNTION", + "nameKr": "카네이션 오일", + "nameEn": "Carnation oil 12A", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8021-43-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CRNTION", + "name": "Carnation oil 12A", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 433, + "abbreviation": "CNBWAX", + "nameKr": "카르나우바 왁스", + "nameEn": "Carnauba wax", + "synonymsEn": "Carnauba wax / CARNAUBA / carnubawax / CARNAUBA WAX YELLOW / Copernicia Cerifera Cera / COPERNICIA CERIFERA (CARNAUBA) WAX / carnuba / BRAZIL WAX / Caruba Wax / Carnaba Wax / Canauba", + "synonymsKr": "카르나바 왁스 / 카나우바왁스 / 카르나바왁스 / 카르나바랍 / 카나우바왁스(CARNAUBAWAX)", + "unNumber": "", + "casNumber": "8015-86-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CNBWAX", + "name": "Carnauba wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 434, + "abbreviation": "CSTR", + "nameKr": "캐시터 오일", + "nameEn": "Castor oil", + "synonymsEn": "Castor oil / RICINUS COMMUNIS (CASTOR) SEED OIL / Castor / DEHYDRATED CASTOR OIL / Polyoxyl 35 / neoloid / tor oil / Venelex / cosmetol / crystalo / goldbond", + "synonymsKr": "피마자유 / AAUSP캐스터유 / 리시너스오일(RICINUSOIL)피마자오일(OILOFPALMACHRISTI)탕안오일(TANGANTANGANOIL)네오로이드(NEOLOID)코스메톨(COSMETOL)CRYSTALO / 파마자기름 / 피마자유 / 파마자기름(CASTOROIL) / 피마자오일 / 피마자씨오일 / 비버 오일", + "unNumber": "", + "casNumber": "8001-79-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSTR", + "name": "Castor oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 435, + "abbreviation": "CPTSH", + "nameKr": "", + "nameEn": "Caustic potash solution", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPTSH", + "name": "Caustic potash solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 436, + "abbreviation": "CELLACT", + "nameKr": "셀로솔브 아세테이트", + "nameEn": "Cellsolve acetate", + "synonymsEn": "Ethylene glycol monoethyl ether acetate / EEA / ETHYL GLYCOL ACETATE / CELLOSOLVE ACETATE / 2-ETHOXYETHYL ACETATE / Ethoxyethyl acetate / ETHYL CELLOSOLVE ACETATE / Glycol monoethyl ether acetate / CSAC / egeea / ethoxyacetate", + "synonymsKr": "에틸셀로솔브아세테이트 / 에틸렌글리콜모노에틸에테르아세테이트 / 2-에톡시에탄올아세트산 / 2-에톡시에틸아세테이트 / 아세트산2-에톡시에탄올 / 에틸글리콜아세테이트 / 에틸셀로솔브아세테이트 / 에톡시에탄올아세테이트 / 에틸렌 글리콜 모노에틸 에테르 아세테이트", + "unNumber": "", + "casNumber": "111-15-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CELLACT", + "name": "Cellsolve acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 437, + "abbreviation": "CELACOL", + "nameKr": "세틸 알코올", + "nameEn": "Celyl alcohol", + "synonymsEn": "1-Hexadecanol / CETYL ALCOHOL / HEXADECANOL / HEXADECAN-1-OL / Ethol / CETANOL / Lipocol C / n-Hexadecanol / Cetylic alcohol / Cetylol / Cetyl alcohol NF", + "synonymsKr": "세틸 알코올 / 세틸알코올 / 세틸알코올 / 1-낙사데카놀 / 1-세타놀 / 1-세탄올 / 1-헥사데카놀 / 1-헥사데칸올 / 1-헥사데킬 알코올 / n-1-헥사데칸올 / n-세틸 알코올 / n-헥사데칸올 / 세타놀 / 세탈 / 세티놀 / 세틸 알코올 / 알코올, C16-C19 / 팔미트 알코올 / 팔미틱 알코올 / 팔미틸 알코올 / 헥사데실 알코올", + "unNumber": "", + "casNumber": "36653-82-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CELACOL", + "name": "Celyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 438, + "abbreviation": "CELSTEA", + "nameKr": "세틸스테아레이트 / 스테아르산팔미틸에스테르", + "nameEn": "Celyl stearate", + "synonymsEn": "CETYL STEARATE / Wickenol 121 / Schercemol CS / CETYL STEARATE / Hexadecylstearat / n-Hexadecyl stearate / Hexadecyl octadecanoate / stearicacidpalmitylester / Stearic acid, hexadecyl ester / octadecanoicacidhexadecylester / Octadecanoicacid,hexadecylester", + "synonymsKr": "세틸스테아레이트 / 세틸스테아레이트 / 스테아르산팔미틸에스테르", + "unNumber": "", + "casNumber": "1190-63-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CELSTEA", + "name": "Celyl stearate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 439, + "abbreviation": "CLS", + "nameKr": "", + "nameEn": "Cereclors", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CLS", + "name": "Cereclors", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 440, + "abbreviation": "CSLR", + "nameKr": "", + "nameEn": "China clay slurry", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSLR", + "name": "China clay slurry", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 441, + "abbreviation": "CLBZN", + "nameKr": "", + "nameEn": "Chlorobenzene", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CLBZN", + "name": "Chlorobenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 442, + "abbreviation": "CLETE", + "nameKr": "클로로벤젠", + "nameEn": "Chloroethene", + "synonymsEn": "Chlorobenzene / MONOCHLOROBENZENE / Chlorobenzen / Chlorbenzol / Chlorbenzene / CHLOROBENZOL / PHENYL CHLORIDE / cp27 / NSC 8433 / U.N.", + "synonymsKr": "클로로벤젠 / 클로로벤젠 / 모노클로로벤졸 / 벤젠,클로로 / 테트로신SP / 모노클로로벤젠 / 벤젠염화물 / 페닐염화물 / 벤젠 염화물 / 벤젠, 클로로 / 테트로신 SP / 페닐 염화물", + "unNumber": "", + "casNumber": "108-90-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CLETE", + "name": "Chloroethene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 443, + "abbreviation": "CFM", + "nameKr": "메탄트리염화물", + "nameEn": "Chloroform", + "synonymsEn": "Chloroform / CHCl3 / TRICHLOROMETHANE / TCM / Fisher Chemical / Chloroform 5g [67-66-3] / r20 / Chloroforme / Trichlormethan / METHYLIDYNE TRICHLORIDE / Residual Solvent Class 2 - Chloroform", + "synonymsKr": "클로로포름 / 클로로포름 / R20(냉각제) / 메탄트리염화물(METHANETRICHLORIDE)메틸트리염화물 / 메테닐트리염화물 / 클로로폼 / 트리클로로메탄 / 트리클로로메탄,클로로포롬 / 트리클로로포름 / 프레온20 / 메테닐트리클로라이드 / 삼염화메탄", + "unNumber": "1888", + "casNumber": "67-66-3", + "transportMethod": "", + "sebc": "", + "usage": "살충제, 곰팡이 제거제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CFM", + "name": "Chloroform", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 444, + "abbreviation": "CPRE", + "nameKr": "클로로프렌", + "nameEn": "Chloroprene", + "synonymsEn": "2-chloro-1,3-butadiene / CHLOROPRENE / beta-Chloroprene / 2-Chlorobuta-1,3-diene / 1,3-Butadiene, 2-chloro- / CHLOROPENE / Baypren M1 / Chloropren / Cloroprene / Neoprene AH / Baypren 110", + "synonymsKr": "클로로프렌 / 클로로프렌 / 베타-클로로프렌 / 클로로프렌(2-클로로부타-1,3-다이엔) / 2-클로로-1,3-부타디엔 / 2-클로로프렌", + "unNumber": "", + "casNumber": "126-99-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPRE", + "name": "Chloroprene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 445, + "abbreviation": "CSA", + "nameKr": "클로로설폰산", + "nameEn": "Chlorosulfonic acid", + "synonymsEn": "Chlorosulfonic acid / chlorosulphonic acid / chlorosulphuric acid / chlorosulfonic / acidechlorosulfonique / Chlorsulfonsure / AKOS BBS-00004309 / CHLOROSULFONIC ACID / Sulfric chlorohydrin / Sulfurochloridicacid / Chloridosulfuric acid", + "synonymsKr": "클로로술폰산 / 클로로설폰산 / 클로로술폰산 / 모노클로로황산 / 염화설폰산 / 황산클로로히드린 / 황클로로히드린", + "unNumber": "", + "casNumber": "7790-94-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSA", + "name": "Chlorosulfonic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 446, + "abbreviation": "CWG", + "nameKr": "", + "nameEn": "Choice white grease", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CWG", + "name": "Choice white grease", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 447, + "abbreviation": "CCL", + "nameKr": "", + "nameEn": "Choline chloride", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CCL", + "name": "Choline chloride", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 448, + "abbreviation": "CDE", + "nameKr": "1,2-디클로로에틸렌", + "nameEn": "cis-Dichloroethylene", + "synonymsEn": "CIS-1,2-DICHLOROETHYLENE / CIS-1,2-DICHLOROETHENE / cis-Dichloroethene / cis-Dichloroethylene / cis-DCE / cisdichloroethylene / 1,2-cis-Dichloroethene / cis-1,2-Dichlorethylen / cis-1,2-dichlorethylene / 1,2-cis-Dichloroethylene / (Z)-1,2-Dichloroethylene", + "synonymsKr": "시스-1,2-디클로로에틸렌 / CIS-1,2-다이클로로에틸렌 / 시스-1,2-디클로로에틸렌 / cis-다이클로로에틸렌 / cis-1,2-디클로로에틸렌", + "unNumber": "", + "casNumber": "156-59-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CDE", + "name": "cis-Dichloroethylene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 449, + "abbreviation": "CTRACID", + "nameKr": "구연산", + "nameEn": "Citric acid", + "synonymsEn": "Citric acid / Citric acid anhydrous / Anhydrous citric acid / BETZ 6251 / acid citric / citric acid solution / Citric acid Anhydrate / Citro / CheMfill / Citric acid anhydrou / Citric acid (anhydrous) CRS", + "synonymsKr": "시트르산 / 시트르산 / 무수물구연산 / 베타-히드록시트리카르발릴산 / 2-히드록시-1,2,3-프로판트리카르복실산 / 시트르산,HPCEGRADE / 시트르산,무수(무수구연산) / 구연산 / 시트릭애씨드 / 무수구연산 / 시트르산(CITRICACID)", + "unNumber": "", + "casNumber": "77-92-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CTRACID", + "name": "Citric acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 450, + "abbreviation": "CK9", + "nameKr": "", + "nameEn": "CK9 acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CK9", + "name": "CK9 acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 451, + "abbreviation": "CTP", + "nameKr": "콜타르 피치", + "nameEn": "Coal Tar Pitch", + "synonymsEn": "·coal tar pitch, volatiles ·volatiles, coal tar pitch ·Pitch, coal tar, high-temp. ·Coal tar pitch volatiles (benzene soluble fraction)", + "synonymsKr": "·콜타르피치, 휘발성 ·휘발성, 콜타르피치 ·피치, 콜타르, 고온 ·휘발성 콜타르피치 (벤젠 가용성 부분)", + "unNumber": "1999", + "casNumber": "65996-93-2", + "transportMethod": "", + "sebc": "", + "usage": "방부도료, 도로 및 지붕 포장, 페인트 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CTP", + "name": "Coal Tar Pitch", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 452, + "abbreviation": "CONDENSATE", + "nameKr": "컨덴세이트", + "nameEn": "Condensate", + "synonymsEn": "·Crude naphtha, raw naphtha, naphtha, full range C4-11", + "synonymsKr": "나프타 전 범위 / 원유", + "unNumber": "1268", + "casNumber": "64741-42-0", + "transportMethod": "", + "sebc": "", + "usage": "석유화학 공업원료 및 솔벤트, 연료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CONDENSATE", + "name": "Condensate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 453, + "abbreviation": "CTN", + "nameKr": "석탄 벤젠 나프타", + "nameEn": "Coal tar naphtha", + "synonymsEn": "PETROLEUM ETHER / BENZIN / PETROL / varsol / LIGROIN / HEXANES / BENZINE / NAPHTHA / canadol / LIGROINE / amscoh-j", + "synonymsKr": "석유벤진 / 나프타 / 나프타,석유 / 나프타,m솔벤트 / 러버솔벤트 / 벤진 / 석유나프타 / 석유벤진 / 러버솔벤트", + "unNumber": "", + "casNumber": "8030-30-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CTN", + "name": "Coal tar naphtha", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 454, + "abbreviation": "CTCNO", + "nameKr": "코코넛 오일", + "nameEn": "Cochin type coconut oil", + "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", + "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", + "unNumber": "", + "casNumber": "8001-31-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CTCNO", + "name": "Cochin type coconut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 455, + "abbreviation": "CME", + "nameKr": "", + "nameEn": "Coco methyl esters", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CME", + "name": "Coco methyl esters", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 456, + "abbreviation": "COCOA", + "nameKr": "코코아 버터", + "nameEn": "Cocoa butter", + "synonymsEn": "COCOA BUTTER / Cocoaoil / COCOAFAT / COCO BUTTER / cacao butter / Cocaobeanoil / COCOA BUTTER / Cocoaabsolute / THEOBROMA OIL / Cocoa bean oil / Cocoabeanextract", + "synonymsKr": "코코아 염화물 / 코코아염화물 / 코코아염화물(COCOABUTTER) / 카카오씨버터 / 하이드롤라이즈드카카오씨버터 / 코코아버터", + "unNumber": "", + "casNumber": "8002-31-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "COCOA", + "name": "Cocoa butter", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 457, + "abbreviation": "COCOAS", + "nameKr": "코코아 버터 대체제", + "nameEn": "Cocoa butter substitute", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "85665-33-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "COCOAS", + "name": "Cocoa butter substitute", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 458, + "abbreviation": "CNFA", + "nameKr": "코코넛 지방산", + "nameEn": "Coconut fatty acid", + "synonymsEn": "COCONUT OIL FATTY ACIDS / Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", + "synonymsKr": "코코넛 지방 산 / 코코넛지방산 / 코코넛지방산(COCONUTFATTYACID)", + "unNumber": "", + "casNumber": "67701-05-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CNFA", + "name": "Coconut fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 459, + "abbreviation": "COD", + "nameKr": "대구 간유", + "nameEn": "Cod liver oil", + "synonymsEn": "COD LIVER OIL / Codoil / GADI LECUR / PISCUM LECUR / Oleummorrhuae / COD LIVER OIL / FISH LIVER OIL / LEBERTRAN 0 VP / CODLIVEROIL,USP / vitamin A and D / Oleumjecorispiscis", + "synonymsKr": "대구 간유 / 대구간유 / 대구간유(CODLIVEROIL) / 코드리버오일", + "unNumber": "", + "casNumber": "8001-69-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "COD", + "name": "Cod liver oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 460, + "abbreviation": "CODO", + "nameKr": "대구 간유", + "nameEn": "Cod oil", + "synonymsEn": "COD LIVER OIL / Codoil / GADI LECUR / PISCUM LECUR / Oleummorrhuae / COD LIVER OIL / FISH LIVER OIL / LEBERTRAN 0 VP / CODLIVEROIL,USP / vitamin A and D / Oleumjecorispiscis", + "synonymsKr": "대구 간유 / 대구간유 / 대구간유(CODLIVEROIL) / 코드리버오일", + "unNumber": "", + "casNumber": "8001-69-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CODO", + "name": "Cod oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 461, + "abbreviation": "CHNO", + "nameKr": "코훈 오일", + "nameEn": "Cohune oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "84929-33-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHNO", + "name": "Cohune oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 462, + "abbreviation": "CMS", + "nameKr": "자당", + "nameEn": "Concentrated molasses solubles", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "68476-78-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CMS", + "name": "Concentrated molasses solubles", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 463, + "abbreviation": "CORN", + "nameKr": "옥수수 오일", + "nameEn": "Corn oil", + "synonymsEn": "Corn oil", + "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일", + "unNumber": "-", + "casNumber": "8001-30-7", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 연료 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CORN", + "name": "Corn oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 464, + "abbreviation": "CORNSL", + "nameKr": "옥수수 침출액", + "nameEn": "Corn steep liquor", + "synonymsEn": "CORN STEEP LIQUOR / Corn steep / Corn steep water / Corn steep powder / CORN STEEP SOLIDS / CORN STEEP LIQUOR / Maize, steep liquor / Corn steep, atomized / Zea mays, steep liquor / Industrial liquors, corn steep liquor / corn steep powder for fermentation (high nitrogen)", + "synonymsKr": "옥수수 침지액 / 옥수수 침지액 / 옥수수가파른주류", + "unNumber": "", + "casNumber": "66071-94-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CORNSL", + "name": "Corn steep liquor", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 465, + "abbreviation": "CSRP", + "nameKr": "옥수수 시럽", + "nameEn": "Corn syrup", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "8029-43-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSRP", + "name": "Corn syrup", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 466, + "abbreviation": "CTSOFA", + "nameKr": "면실유 지방산", + "nameEn": "Cottonseed oil fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "6808-51-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CTSOFA", + "name": "Cottonseed oil fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 467, + "abbreviation": "CRSL", + "nameKr": "크레졸", + "nameEn": "Cresols", + "synonymsEn": "Cresol / CRESYLIC ACID / TRICRESOL / Cresols / HYDROXYTOLUENE / Mixed cresol / MIXED CRESOLS / CRESOL MIXTURE OF ISOMERS, CRUDE / krezol / Cresol / cresoli", + "synonymsKr": "크레졸 / 크레졸 / 혼합크레졸 / 크레솔 / 메틸페놀 / 바스실롤 / 옥시톨루엔 / 옥시톨루올 / 크레실산 / 테크레졸 / 트리크레솔 / 하이드록시메틸벤젠", + "unNumber": "2022", + "casNumber": "1319-77-3", + "transportMethod": "", + "sebc": "", + "usage": "합성수지, 폭약, 소독제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CRSL", + "name": "Cresols", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 468, + "abbreviation": "CSLC", + "nameKr": "크레실산", + "nameEn": "Cresylic acid", + "synonymsEn": "Cresol / CRESYLIC ACID / TRICRESOL / Cresols / HYDROXYTOLUENE / Mixed cresol / MIXED CRESOLS / CRESOL MIXTURE OF ISOMERS, CRUDE / krezol / Cresol / cresoli", + "synonymsKr": "크레졸 / 크레졸 / 혼합크레졸 / 크레솔 / 메틸페놀 / 바스실롤 / 옥시톨루엔 / 옥시톨루올 / 크레실산 / 테크레졸 / 트리크레솔 / 하이드록시메틸벤젠", + "unNumber": "2022", + "casNumber": "1319-77-3", + "transportMethod": "", + "sebc": "", + "usage": "합성수지, 폭약, 소독제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSLC", + "name": "Cresylic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 469, + "abbreviation": "CRNH", + "nameKr": "크로톤알데히드", + "nameEn": "Crotonaldehyde", + "synonymsEn": "Crotonaldehyde / 2-BUTENAL / (E)-but-2-enal / 2-Butenal, (E)- / BUTENAL / BDQ / (E)-2-BUTENAL / Crotenaldehyde / (E)-Crotonaldehyde / Crotonal / Crotonic aldehyde", + "synonymsKr": "크로톤알데하이드 / (E)-크로톤알데하이드 / 크로톤알데하이드 / 크로톤알데하이드,(E)- / 크로톤알데히드 / 크로톤알데하이드,(E)- / (2E)-2-뷰텐알 / (E)-2-뷰텐알 / (E)-뷰트-2-엔알 / 2-뷰텐알, (2E)- / 베타-메틸아크롤레인 / 크로텐알데하이드 / 트랜스-2-뷰텐알 / 트랜스-크로톤알데하이드", + "unNumber": "", + "casNumber": "123-73-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 1TYPE", + "ibcTankType": "1G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.18, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CRNH", + "name": "Crotonaldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 470, + "abbreviation": "CCAN", + "nameKr": "카놀라유", + "nameEn": "Crude canola oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "120962-03-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CCAN", + "name": "Crude canola oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 471, + "abbreviation": "CCNO", + "nameKr": "코코넛 오일", + "nameEn": "Crude coconut oil", + "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", + "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", + "unNumber": "", + "casNumber": "8001-31-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CCNO", + "name": "Crude coconut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 472, + "abbreviation": "CCORN", + "nameKr": "옥수수유", + "nameEn": "Crude corn oil", + "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", + "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일", + "unNumber": "-", + "casNumber": "8001-30-7", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 연료 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CCORN", + "name": "Crude corn oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 473, + "abbreviation": "CDRSO", + "nameKr": "", + "nameEn": "Crude degummed rapeseed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CDRSO", + "name": "Crude degummed rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 474, + "abbreviation": "CDSBO", + "nameKr": "", + "nameEn": "Crude degummed soya bean oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CDSBO", + "name": "Crude degummed soya bean oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 475, + "abbreviation": "CEG", + "nameKr": "에틸렌 클리콜", + "nameEn": "Crude ethlene glycol", + "synonymsEn": "Ethylene glycol / Monoethylene glycol / dowtherm / 1,2-Ethanediol / HOCH2CH2OH / 2-Hydroxyethanol / Antifrogen N / Dihydroxyethane / Zerex / Glygen / Glykol", + "synonymsKr": "모노에틸렌글리콜 / 에틸렌글리콜 / 에틸렌알코올 / 1,2-디히드록시에탄 / 모노에틸렌글리콜 / 에틸렌글리콜(MEG) / 글라이콜 / 에칠렌글라이콜 / 에틸렌글리콜 / 에틸렌 글리콜", + "unNumber": "3082", + "casNumber": "107-21-1", + "transportMethod": "", + "sebc": "", + "usage": "플라에스터, 폴리에스터, 폴리에스터수지, 흡습제, 가소제, 계면활설제, 합성섬유, 화장품, 화약류의 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CEG", + "name": "Crude ethlene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 476, + "abbreviation": "CFISH", + "nameKr": "크래프트 피쉬 오일", + "nameEn": "Crude fish oil", + "synonymsEn": "FISH OIL / z3(oil) / pogyoil / menhaden / FISH OILS / NatureMade / mossbunkeroil / oils,menhaden / Brevoortia oil / Oele, Menhaden- / Boiled oil Y00-1", + "synonymsKr": "멘헤이든오일 / 멘헤이든오일", + "unNumber": "", + "casNumber": "8002-50-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CFISH", + "name": "Crude fish oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 477, + "abbreviation": "CGLN", + "nameKr": "원유 글리세린", + "nameEn": "Crude glycerine", + "synonymsEn": "Glycerol / Glycerine / Glyceol / ifp / Glycerin USP / GLYCEROL ANHYDROUS / Propanetriol / propan-1,2,3-triol / 1,2,3-Propanetriol / Clycerol / Glycyl alcohol", + "synonymsKr": "글리세린 / 글리세롤 / 글리세린 / 글리세린미스트 / 1,2,3-프로페인트라이올 / 글리롤 / 글리사닌 / 글리세리톨 / 글리세린 무수물 / 글리실 알코올 / 오스모글린 / 트라이하이드록시프로페인 / 프로페인트라이올 / 글리세라믹스-에올", + "unNumber": "", + "casNumber": "56-81-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CGLN", + "name": "Crude glycerine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 478, + "abbreviation": "CGLCOL", + "nameKr": "", + "nameEn": "Crude glycol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CGLCOL", + "name": "Crude glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 479, + "abbreviation": "CHERSO", + "nameKr": "고 애루신산 채종유", + "nameEn": "Crude high erucic rapeseed oil", + "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", + "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", + "unNumber": "", + "casNumber": "8002-13-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHERSO", + "name": "Crude high erucic rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 480, + "abbreviation": "CHORSO", + "nameKr": "", + "nameEn": "Crude high oleic rapeseed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHORSO", + "name": "Crude high oleic rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 481, + "abbreviation": "CLSO", + "nameKr": "아마인유", + "nameEn": "Crude linseed oil", + "synonymsEn": "Linseed oil / FLAXSEED OIL / groco / l-310 / P 1037 / PU 104 / leinol / Flaxoil / Purolin / d= 0.93 / Scan-Oil", + "synonymsKr": "아마인유 / 아마인기름,RAW / 플렉스시드기름 / RAW아마인기름 / 아마씨기름 / 아마인기름,표백한 / 아마인유 / 올레움리니 / 아마인오일 / 아마씨오일 / 아마씨기름(LINSEEDOIL) / 기름, 아마인 / 아마씨 기름 / 아마씨 기름, 표백 / 아마인 기름", + "unNumber": "", + "casNumber": "8001-26-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CLSO", + "name": "Crude linseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 482, + "abbreviation": "COSAFF", + "nameKr": "사플라워 씨 오일", + "nameEn": "Crude oleic safflowerseed oil", + "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", + "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", + "unNumber": "", + "casNumber": "8001-23-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "COSAFF", + "name": "Crude oleic safflowerseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 483, + "abbreviation": "CPKO", + "nameKr": "", + "nameEn": "Crude palm kernel oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPKO", + "name": "Crude palm kernel oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 484, + "abbreviation": "CPKL", + "nameKr": "야자핵 올레인", + "nameEn": "Crude palm kernel olein", + "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", + "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", + "unNumber": "", + "casNumber": "8023-79-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPKL", + "name": "Crude palm kernel olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 485, + "abbreviation": "CPO", + "nameKr": "식용유", + "nameEn": "Crude palm oil", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPO", + "name": "Crude palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 486, + "abbreviation": "CPL", + "nameKr": "팜오일", + "nameEn": "Crude palm olein", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPL", + "name": "Crude palm olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 487, + "abbreviation": "CPS", + "nameKr": "팜유 스테아린", + "nameEn": "Crude palm stearin", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CPS", + "name": "Crude palm stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 488, + "abbreviation": "CRSO", + "nameKr": "래페씨드 오일", + "nameEn": "Crude rapeseed oil", + "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", + "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", + "unNumber": "", + "casNumber": "8002-13-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CRSO", + "name": "Crude rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 489, + "abbreviation": "CRSAFF", + "nameKr": "사플라워 씨 오일", + "nameEn": "Crude regular safflowerseed oil", + "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", + "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", + "unNumber": "", + "casNumber": "8001-23-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CRSAFF", + "name": "Crude regular safflowerseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 490, + "abbreviation": "CSAFF", + "nameKr": "해바라기 씨 오일", + "nameEn": "Crude safflowerseed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8001-21-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSAFF", + "name": "Crude safflowerseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 491, + "abbreviation": "CSUN", + "nameKr": "해바라기 씨 오일", + "nameEn": "Crude sunflowerseed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8001-21-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CSUN", + "name": "Crude sunflowerseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 492, + "abbreviation": "CTO", + "nameKr": "톨 오일", + "nameEn": "Crude tall oil", + "synonymsEn": "TALL OIL / Talll / tallol / Aconon / talleol / acintolc / TALL OIL / unitolcx / yatallma / VersaWet / Tall oils", + "synonymsKr": "증류된 T모든 기름 / 증류된T모든기름 / 톨유 / 톨오일", + "unNumber": "", + "casNumber": "8002-26-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CTO", + "name": "Crude tall oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 493, + "abbreviation": "CMN", + "nameKr": "큐멘", + "nameEn": "Cumene", + "synonymsEn": "Cumene / ISOPROPYLBENZENE / 2-PHENYLPROPANE / Cumeen / Isopropylbenzen / Isopropilbenzene / (1-METHYLETHYL)BENZENE / CUMOL / CUMENE / NSC 8776 / Cumene,99%", + "synonymsKr": "/ 쿠멘 / 큐멘 / (1-메틸에틸)벤젠 / 메틸 에틸 벤젠 / 아이소프로필벤젠 / 큐몰 / 프로판-2-일벤젠 / 쿠메네", + "unNumber": "", + "casNumber": "98-82-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CMN", + "name": "Cumene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 494, + "abbreviation": "CHPT", + "nameKr": "시클로헵탄", + "nameEn": "Cycloheptane", + "synonymsEn": "CYCLOHEPTANE / NSC 5164 / suberane / Cycloheptan / CYCLOHEPTANE / HEPTAMETHYLENE / Cycloheptane,99% / Cycloheptane >Selinexor Impurity 17 / Cycloheptanecarboxylic / CYCLOHEPTANE 97% (GC)", + "synonymsKr": "시클로헵탄 / 사이클로헵테인 / 헵타메틸렌 / 사이클로헵탄 / 수베란 / 시클로헵탄", + "unNumber": "", + "casNumber": "291-64-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHPT", + "name": "Cycloheptane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 495, + "abbreviation": "CHXN", + "nameKr": "시클로헥산", + "nameEn": "Cyclohexane", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "110-82-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHXN", + "name": "Cyclohexane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 496, + "abbreviation": "CHXNL", + "nameKr": "시클로헥산올", + "nameEn": "Cyclohexanol", + "synonymsEn": "Cyclohexanol / Cyclohexano / CYCLOHEXYL ALCOHOL / Anol / HEXALIN / 1-Cyclohexanol / HEXAHYDROPHENOL / Naxol / Adronal / Adronol / hexaline", + "synonymsKr": "사이클로헥산올 / 사이클로헥산올 / 시클로헥사놀 / 시클로헥산올 / 히드랄린 / 헥사하이드로페놀 / 시클로헥실알코올 / 아드로날 / 헥살린 / 낙솔 / 하 / 사이클로헥실 알코올 / 아놀 / 헥사히드로페놀 / 히드로페놀 / 히드록시사이클로헥산", + "unNumber": "", + "casNumber": "108-93-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHXNL", + "name": "Cyclohexanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 497, + "abbreviation": "CHXN/NL", + "nameKr": "사이클로헥사논", + "nameEn": "Cyclohexanone/Cyclohexanol mixture", + "synonymsEn": "Cyclohexanone / HEXANONE / Anon / ANONE / Hexanon / Sextone / Cykloheksanon / CYCLOHEXANONE REAGENT (ACS) / CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS) / Nadone / hytrolo", + "synonymsKr": "사이클로헥사논 / 섹톤(SEXTONE)케토헥사메틸렌(KETOHEXAMETHYLENE)시클로헥실케톤(CYCLOHEXYLKETONE)NCI-C55005 / 아논(ANONE)헥사논 / 케토시클로헥산(KETOCYCLOHEXANE)옥소시클로헥산 / 피멜린케톤 / 히트롤O(HYTROLO)나돈(NADONE)피메르케톤 / 사이클로헥사논 / 사이클로헥세인온 / 시클로헥사논 / 아논 / 시클로헥산온 / 아농 / 사이클로헥산온 / 나돈 / 섹스톤 / 시클로헥실 케톤 / 케토헥사메틸렌 / 피멜릭 케톤 / 피멜린 케톤 / 헥사논 / 히트롤 O", + "unNumber": "", + "casNumber": "108-94-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHXN/NL", + "name": "Cyclohexanone/Cyclohexanol mixture", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 498, + "abbreviation": "CHA", + "nameKr": "사이클로헥실아민", + "nameEn": "Cyclohexylamine", + "synonymsEn": "Cyclohexylamine / CHA / Cyclohexylamin / AMINOCYCLOHEXANE / HEXAHYDROANILINE / cyclohexaneamine / CHA-60 / cha[qr] / AURORA KA-7609 / CYCLOHEXYLAMINE / hexahydro-anilin", + "synonymsKr": "시클로헥실아민 / 시클로헥실아민 / 사이클로헥실아민(시클로헥실아민) / 시클로헥산아민 / 아미노시클로헥산 / 헥사하이드로벤젠아민 / 1-시클로헥실아민 / 사이클로헥실아민 / 아미노사이클로헥세인 / 헥사하이드로아닐린 / 사이클로헥산아민", + "unNumber": "", + "casNumber": "108-91-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CHA", + "name": "Cyclohexylamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 499, + "abbreviation": "DHN", + "nameKr": "테카히드로나프탈린", + "nameEn": "Decahydronaphthalene", + "synonymsEn": "Decahydronaphthalene / DECALIN / DECALINE / NAPHTHANE / NAPHTHALANE / Decahydronaphthalin / Bicyclo[4.4.0]decane / DEKALIN / decalene / Dekalina / Naphthan", + "synonymsKr": "데카하이드로나프탈렌 / 나프탈란 / 데칼린(DECALIN)데칼린(DEKALIN)나프탄(NAPHTHAN)과히드로나프탈렌(PERHYDRONAPHTHALENE)나프탄 / 나프탈렌,데카히드로-(NAPHTHALENE,DECAHYDRO-)이시클로(4.4.0)데칸 / 데카인 / 데카하이드로나프탈렌 / 시스-데칼린 / 데칼린 / 나프탄 / 데카히드로나프탈렌", + "unNumber": "", + "casNumber": "91-17-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DHN", + "name": "Decahydronaphthalene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 500, + "abbreviation": "DER331", + "nameKr": "에폭시 수지", + "nameEn": "DER 331 epoxy resins", + "synonymsEn": "·(C7-H10-N2.C3-H6-O.C2-H4-O)x Pluracol 824, benzenediamine, ar-methyl-, polymer with methyloxirane and oxirane, polyether polyol, polyurethane, toluenediamine, ethylene oxide, propylene oxide polymer", + "synonymsKr": "도우 D.E.R.(R) 331 에폭시 수지 / 도우D.E.R.(R)331에폭시수지 / 비스페놀A디글리시딜에테르수지 / 비스페놀A디글리시딜에테르수지", + "unNumber": "", + "casNumber": "25085-99-8", + "transportMethod": "", + "sebc": "", + "usage": "접착제, 자동차 및 코일 코팅용 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DER331", + "name": "DER 331 epoxy resins", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 501, + "abbreviation": "DER383", + "nameKr": "에폭시 수지", + "nameEn": "DER 383 epoxy resins", + "synonymsEn": "BISPHENOL A DIGLYCIDYL ETHER RESIN / Der331 / CYD-128 / e1001 / epon1001 / EPON RESIN 828 / (Chloromethyl)oxirane,4,4’-(1-methylethylidene)bisphenolcopolymer / 4,4’-(1-methylethylidene)bis-phenopolymerwith(chloromethyl)oxirane / 4,4’-(1-methylethylidene)bisphenol,-,polymerwith2,2’-[(1-methylethylidene) / e828 / e1004", + "synonymsKr": "에피클로로하이드린-비스페놀 A 수지 / 에피클로로하이드린-비스페놀A수지 / (클로로메틸)옥시레인과의4,4-(1-메틸에틸리덴)비스페놀중합체 / 4,4'-아이소프로필리덴다이페놀/에피클로로하이드린코폴리머 / 에피클로로하이드린-비스페놀A수지 / 셔윈-윌리암스 타르 가드 콜 타르 에폭시 (Pt B) 경화제 / (클로로메틸)옥시레인과의 4,4-(1-메틸에틸리덴) 비스페놀 중합체 / 1-클로로-2,3-에폭시프로페인과의 4,4-아이소프로필리덴다이페놀 중합체 / 다이안-에피클로로하이드린 공중합체 / 다이안-에피클로로하이드린 중합체 / 비스페놀 A-에피클로로하이드린 수지 / 페놀, 4,4-아이소프로필리덴다이-, 1-클로로-2,3-에폭시프로페인과의 중합체 / 비스페놀올디글리시딜수지", + "unNumber": "-", + "casNumber": "25068-38-6", + "transportMethod": "", + "sebc": "", + "usage": "접착제, 자동차 및 코일 코팅용 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DER383", + "name": "DER 383 epoxy resins", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 502, + "abbreviation": "DAA", + "nameKr": "디아세톤 알코올", + "nameEn": "Diacetone alcohol", + "synonymsEn": "Diacetone Alcohol / 2-Pentanone, 4-hydroxy-4-methyl- / DAA / 4-HYDROXY-4-METHYL-2-PENTANONE / Diacetone / 4-HYDROXY-4-METHYLPENTAN-2-ONE / Tyranton / Diketone alcohol / Acetonyldimethylcarbinol / Pyranton a / Diacetone alcoho", + "synonymsKr": "디아세톤알코올 / 4-하이드록시-4-메틸-2-펜타논 / 2-메틸-2-펜탄올-4-온 / 4-히드록시-2-케토-4-메틸펜탄 / 4-히드록시-4-메틸-2-펜탄온 / 디아세톤알코올 / 디아세톤알콜 / 아세토닐디메틸카빈올 / 디아세톤알콜 / 아세토닐디메틸카빈올 / 2-메틸-2-펜탄올-4-온 / 4-하이드록시-4-메틸- / 다이아세톤알코올 / 다이아세톤알코올 / 2-메틸-2-하이드록시-2-펜타논 / 2-하이드록시-2-메틸-4-펜타논 / 4-하이드록시-2-케토-4-메틸펜탄 / 4-하이드록시-4-메틸펜탄-2-온 / 다이아세톤 / 다이아세톤 알코올 / 타이란톤", + "unNumber": "", + "casNumber": "123-42-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DAA", + "name": "Diacetone alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 503, + "abbreviation": "DIALAA", + "nameKr": "", + "nameEn": "Diala A", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIALAA", + "name": "Diala A", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 504, + "abbreviation": "DAP", + "nameKr": "디알킬 프탈레이트", + "nameEn": "Dialkyl (C7-C13) phthalates", + "synonymsEn": "1,2-Benzenedicarboxylic acid, di-C7-11-branched and linear alkyl esters / CL241 / DI(C7-C11)LINEARALKYL / di-C7-11-alkyl phthalate / DIALKYL(C7-C11)PHTHALATE / C7,C9,C11-DIALKYLPHTHALATE / C7-C11DIALKYLPHTHALATEESTERS / DI(C7-C11)LINEARALKYLPHTHALATE / PHTHALICACID,DIALKYL(C7-C11)ESTERS / Dialkyl(C7-branched and linear) phthalate / Di-C7-11-branched And Linear Alkyl Esters", + "synonymsKr": "1,2-벤젠디카복실산, 디-C7-11-가지상과 직선상의 알킬 에스테르 / 1,2-벤젠다이카복실산,다이-C7-11-가지상과직선상의알킬에스터 / 1,2-벤젠디카복실산,디-C7-11-가지상과직선상의알킬에스테르 / 1,2-벤젠다이카복실산,다이-C7-11-가지상과직선상의알킬에스터 / 1,2-벤젠다이카복실릭애씨드,다이-C7-11-측쇄형및직선형알킬에스터류 / 1,2-벤젠디카르복실산,디-C7-11-분지형및선형알킬에스테르", + "unNumber": "", + "casNumber": "68515-42-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DAP", + "name": "Dialkyl (C7-C13) phthalates", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 505, + "abbreviation": "DBP", + "nameKr": "디부틸 프탈레이트", + "nameEn": "Dibutyl phthalate", + "synonymsEn": "Dibutyl phthalate / DBP / DI-N-BUTYL PHTHALATE / Bis-n-butyl Phthalate / Bufa / dibutyl-o-phthalate / PHTHALIC ACID DIBUTYL ESTER / PHTHALIC ACID, BIS-BUTYL ESTER / Palatinol C / ARALDITE RESIN / Dibutylphthalat", + "synonymsKr": "다이부틸푸탈레이트 / 부틸프탈산(BUTYLPHTHALATE)O-벤젠디카르복실산,디부틸에스테르(O-BENZENEDICARBOXYLICACID,DIBUTYLESTER)1,2-벤젠디카르복실산,디부틸에스테르(1,2-BENZENEDICARBOXYLICACID,DIBUTYLESTER)디부틸-1,2-벤젠디카르복실산(DIBUTYL-1,2-BENZENEDICARBOXYLATE)디부틸프탈산에스테르(DIBUTYLPHTHALATEESTER)벤젠-O-디카르복실산,디-N-부틸에스테르(BENZENE-O-DICARBOXYLICACID,DI-N-BUTYLESTER)DBP / 비스-N-부틸프탈산 / N-부틸프탈산 / 다이부틸푸탈레이트 / 디부틸프탈레이트 / 프탈산,디부틸에스테르(PHTHALICACID,DIBUTYLESTER)디-N-부틸프탈산 / 디부틸프탈산 / 다이부틸프탈레이트 / 디부틸프탈레이트 / 다이뷰틸 프탈산 / 디부틸 프탈레이트 / 디-n-부틸프탈레이트", + "unNumber": "", + "casNumber": "84-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DBP", + "name": "Dibutyl phthalate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 506, + "abbreviation": "DBA", + "nameKr": "디부틸아민", + "nameEn": "Dibutylamine", + "synonymsEn": "Dibutylamine / DI-N-BUTYLAMINE / DNBA / Dibutylamin / Dibuthylamine / N-DIBUTYLAMINE / N-BUTYL-1-BUTANAMINE / ai3-52649 / ai3-15329 / (n-C4H9)2NH / Dibutilamina", + "synonymsKr": "다이-n-뷰틸아민 / 다이-n-뷰틸아민 / 다이-n-뷰틸아민(디-n-뷰틸아민) / 디-n-부틸아민 / 디부틸아민 / 다이뷰틸아민 / 디부틸아민 / N-부틸-1-부탄아민 / 디-N-부틸아민 / N,N-디부틸아민 / N-디부틸아민 / N-부틸부탄-1-아민 / 다이-n-부틸아민 / 다이부틸아민", + "unNumber": "", + "casNumber": "111-92-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DBA", + "name": "Dibutylamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 507, + "abbreviation": "DCBZN", + "nameKr": "1,2-디클로로벤젠", + "nameEn": "Dichlorobenzene", + "synonymsEn": "1,2-Dichlorobenzene / O-DICHLOROBENZENE / ODCB / ORTHODICHLOROBENZENE / Chloroben / o-Dichlorbenzene / 2-dichlorobenzene / 1,2-Dichlorbenzene / Dichlorobenzene, o- / Dizene / Cloroben", + "synonymsKr": "1,2-디클로로벤젠 / 도우테름E / 벤젠,O-디클로로- / 0-다이클로로벤젠 / 1,2-디클로로벤젠 / 1벤젠,1,2-디클로로- / o-다이클로로벤젠 / o-디클로로벤젠 / O-디클로로벤젠,액체 / 클로로벤 / 디클로로벤젠 / O-다이클로로벤젠(1,2-다이클로로벤젠) / 1,2-다이클로로벤젠 / o-이염화벤젠", + "unNumber": "", + "casNumber": "95-50-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCBZN", + "name": "Dichlorobenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 508, + "abbreviation": "DCEE", + "nameKr": "디클로로에틸 에테르", + "nameEn": "Dichloroethyl ether", + "synonymsEn": "2,2'-Dichlorodiethyl ether / 1-Chloro-2-(2-chloroethoxy)ethane / BIS(2-CHLOROETHYL) ETHER / DICHLOROETHYL ETHER / DCEE / Chloroethyl ether / 2-CHLOROETHYL ETHER / DICHLORO DIETHYL ETHER / Di(2-chloroethyl) ether / 2,2-DICHLORODIETHYL ETHER / bcee", + "synonymsKr": "비스(2-클로로에틸) 에테르 / 2,2'-디클로로에틸에테르 / 2-클로로에틸에테르 / 디클로로에틸에테르 / 비스(2-클로로에틸)에테르 / 비스(2-클로로에틸)에터 / 비스(2-클로로에틸) 에테르 / 디클로로에틸산화물 / 베타,베타-디클로로에틸에테르", + "unNumber": "", + "casNumber": "111-44-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.18, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCEE", + "name": "Dichloroethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 509, + "abbreviation": "DPN", + "nameKr": "디시클로펜타디엔", + "nameEn": "Dicyclopentadiene", + "synonymsEn": "Dicyclopentadiene / DCPD / C10H12 / Dicyclopentadien / CYCLOPENTADIENE DIMER / 3A,4,7,7A-TETRAHYDRO-4,7-METHANOINDENE / Dicyclpentadiene / Bicyclopentadiene / 1,3-cyclopentadiene dimer / DicycL / DCPD90%", + "synonymsKr": "디사이클로펜타디엔 / 디사이클로펜타디엔 / 디시클로펜타디엔 / 다이사이클로펜타디엔 / 1,3-다이사이클로펜타디엔 이합체 / 1,3-사이클로펜타디엔 이합체 / 1,3-사이클로펜타디엔, 이합체 / 3a,4,7,7a-테트라하이드로-4,7-메타노인덴 / 4,7-메타노-1H-인덴, 3a,4,7,7,7a-테트라하이드로- / 4,7-메타노-3A,4,7,7A-테트라하이드로인덴 / 바이사이클로펜타디엔 / 사이클로펜타디엔 이합체 / 트라이사이클로(5.2.1.02,6)데카-3,8-디렌", + "unNumber": "", + "casNumber": "77-73-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPN", + "name": "Dicyclopentadiene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 510, + "abbreviation": "DIDPE", + "nameKr": "디이소도데실 프탈레이트", + "nameEn": "DIDP-E", + "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISODECYL ESTER ·BIS(ISODECYL) PHTHALATE ·DIDP ·DIDP (PLASTICIZER) ·PHTHALIC ACID, BIS(8-METHYLNONYL) ESTER ·PHTHALIC ACID, DIISODECYL ESTER ·PLASTICIZED DDP ·PX 120 ·SICOL 184 ·Phthalic acid, diisodecyl ester ·bis(isodecyl phthalate) ·DIDP ·DisoDP ·1, 2 benzenedicarboxylic acid, diisodecyl ester ·1, 2-benzenedicarboxylic acid, di-(C9-C11) branched chain alkyl ester", + "synonymsKr": "·벤젠다이카복실산, 다이아이소데실 에스터 ·비스(아이소데실) 프탈레이트 ·프탈익산, 비스(8-메틸노닐) 에스터 ·프탈익 산, 다이아이소데실 에스터 ·프탈익산, 다이아이소데실 에스터 ·비스(아이소데실 프탈레이트) ·1, 2 벤젠다이카복실산, 다이아이소데실 에스터 ·1, 2-벤젠다이카복실산, 다이-(C9-C11) 알킬 에스터 체인", + "unNumber": "3082", + "casNumber": "26761-40-0", + "transportMethod": "", + "sebc": "", + "usage": "케이블, 자동차 내장재, 컨베이어 벨트, 플라스티졸, 코팅 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIDPE", + "name": "DIDP-E", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 511, + "abbreviation": "DLA", + "nameKr": "디에탄올아민", + "nameEn": "Diethanolamine", + "synonymsEn": "Diethanolamine / DEA / Aliphatic amine / Diolamine / Diethanolamin / dela / Iminodiethanol / 2,2'-Azanediyldiethanol / 2-(2-hydroxyethylamino)ethanol / 2,2-IMINODIETHANOL / 2,2'-DIHYDROXYDIETHYLAMINE", + "synonymsKr": "다이에탄올아민 / 2,2-이미노디에탄올(2,2-IMINODIETHANOL)디올아민 / 2,2-이미노비스(에탄올)(2,2-IMINOBIS(ETHANOL))이미노디에탄올 / 다이에탄올아민 / 다이에탄올아민(디에탄올아민) / 디에탄올아민 / 비스(2-히드록시에틸)아민(BIS(2-HYDROXYETHYL)AMINE)2,2-디히드록시디에틸아민(2,2-DIHYDROXYDIETHYLAMINE)디(2-히드록시에틸)아민(DI(2-HYDROXYETHYL)AMINE)2-((2-히드록시에틸)아미노)에탄올(2-((2-HYDROXYETHYL)AMINO)ETHANOL)비스(히드록시에틸)아민(BIS(HYDROXYETHYL)AMINE)N,N-디에탄올아민(N,N-DIETHANOLAMINE)B,B-디히드록시-디에틸아민(B,B-DIHYDROXY-DIETHYLAMINE)DI(BETA-HYDROXYETHYL)AMINE / 2,2'-이미노비스-에탄올 / 2,2’악사네딜-b-에탄올 / 2,2'-다이하이드록시다이에틸아민 / 2,2'-이미노다이에탄올 / 다이(2-하이드록시에틸)아민 / 비스(2-하이드록시에틸)아민 / N,N-디에탄올아민", + "unNumber": "1719", + "casNumber": "111-42-2", + "transportMethod": "", + "sebc": "", + "usage": "액체 세탁 및 식기 세척, 세제, 화장품, 샴푸 및 헤어 컨디셔너 등 사용 (계면활성제 성분)", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DLA", + "name": "Diethanolamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 512, + "abbreviation": "DEBZN", + "nameKr": "디에틸벤젠", + "nameEn": "Diethyl benzene", + "synonymsEn": "1,2-DIETHYLBENZENE / O-DIETHYLBENZENE / 1,2-DiethyL / 1.2-Diethylben / o-diethylenzene / o-diethyl-benzen / 1,2-Diethylbenzol / 1,2-diethyl-benzen / Diethylbenzene, o- / Diethylbenzene,95% / 1,2-DIETHYLBENZENE", + "synonymsKr": "1,2-디에틸벤젠 / 1,2-다이에틸벤젠 / 1,2-디에틸벤젠 / o-디에틸벤젠", + "unNumber": "", + "casNumber": "135-01-3 141-93-5 105-05-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DEBZN", + "name": "Diethyl benzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 513, + "abbreviation": "DET", + "nameKr": "디에틸 에테르", + "nameEn": "Diethyl ether", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "60-29-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DET", + "name": "Diethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 514, + "abbreviation": "DSP", + "nameKr": "디엘틸 황산염", + "nameEn": "Diethyl sulphate", + "synonymsEn": "Diethyl sulfate / DIETHYL SULPHATE / DS / ETHYL SULFATE / SULFURIC ACID DIETHYL ESTER / DHYS / MIG13 / Ethylsulpate / Diethylsulfat / Diaethylsulfat / DIETHYL SULFATE", + "synonymsKr": "다이에틸설페이트 / 다이에틸설페이트 / 디에틸설페이트 / 디에틸황산염 / 디에틸황산 / 황산디에틸 / 황산디에틸,디에틸황산 / 디에틸황산염 / 황산,디에틸에스테르 / 에틸황산 / 디에틸테트라옥소황산염 / 황산디에틸 / 다이에틸 황산염 / 디에틸 모노황산염 / 디에틸 테트라옥소황산염 / 보통 에틸 황산염 / 에틸 황산염 / 황산 디에틸 / 황산, 디에틸 에스터", + "unNumber": "", + "casNumber": "64-67-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DSP", + "name": "Diethyl sulphate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 515, + "abbreviation": "DEGBE", + "nameKr": "디에틸렌 글리콜 부틸 에테르", + "nameEn": "Diethylene glycol butyl ether", + "synonymsEn": "Diethylene glycol monobutyl ether / DIETHYLENE GLYCOL MONOBUTYL ETHER / DB / BUTYL CARBITOL / BUTYLDIGLYCOL / 2-(2-BUTOXYETHOXY)ETHANOL / Ethanol, 2-(2-butoxyethoxy)- / DIETHYLENE GLYCOL BUTYL ETHER / DGBE / Butoxyethoxyethanol / DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", + "synonymsKr": "부틸글리콜 / 다이에틸렌글라이콜모노-N-뷰틸에테르 / 2-(2-부톡시에톡시)에탄올 / 부톡시디에틸렌글리콜 / 부틸옥시BUTOXYDIGLYCOL / 부틸카르비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 디에틸렌글리콜모노부틸에테르 / 부틸글리콜 / 뷰틸캐비톨 / 부틸카비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 부톡시다이글라이콜 / 다이에틸렌 글라이콜 모노-N-뷰틸 에테르", + "unNumber": "2810", + "casNumber": "112-34-5", + "transportMethod": "", + "sebc": "", + "usage": "용매, 보습제, 유화제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DEGBE", + "name": "Diethylene glycol butyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 516, + "abbreviation": "DEGEE", + "nameKr": "디에틸렌 글리콜 에틸 에테르", + "nameEn": "Diethylene glycol ethyl ether", + "synonymsEn": "Diethylene Glycol Monoethyl Ether / Transcutol / CARBITOL / 2-(2-ETHOXYETHOXY)ETHANOL / Dowanol / ETHYL CARBITOL / ETHYL DIGLYCOL / Dowanol DE / ETHYL DIGOL / ETHOXYETHOXYETHANOL / ethyldiethyleneglycol", + "synonymsKr": "에틸디글리콜 / 다이에틸렌글라이콜모노에틸에테르 / 디에틸렌글리콜모노에틸에테르 / 에톡시디글리콜 / 에틸디글리콜 / 에틸카비톨 / 2-(2-에톡시에톡시에탄올) / 에톡시다이글라이콜 / 에톡시다이글리콜 / 디에틸렌글리콜모노에틸에테르 / 다이에틸렌 글라이콜 모노에틸 에테르 / 솔보솔 / 에틸 디골 / 트랜스큐톨", + "unNumber": "", + "casNumber": "111-90-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DEGEE", + "name": "Diethylene glycol ethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 517, + "abbreviation": "DEGMM", + "nameKr": "디에틸렌 글리콜 모노메틸 에테르", + "nameEn": "Diethylene glycol monomethyl ether", + "synonymsEn": "Diethylene glycol monomethyl ether / DM / 2-(2-METHOXYETHOXY)ETHANOL / degme / METHYL CARBITOL / METHYLDIGLYCOL / METHOXYETHOXYETHANOL / Ethanol,2-(2-methoxyethoxy)- / DIETHYLENE GLYCOL METHYL ETHER / 2-(2- / DIEGME", + "synonymsKr": "디에틸렌 글리콜 모노메틸 에테르 / 2-(메톡시에톡시)에탄올DI / 다이에틸렌글리콜모노메틸에테르 / 디에틸렌글리콜모노메틸에테르 / 메틸디글리콜 / 2-(2-메톡시에톡시)에탄올 / 2-(2-메톡시에톡시)에탄올(메톡시디글라이콜) / 다이에틸렌글라이콜모노메틸에터 / 메톡시다이글리콜 / 다이에틸렌글리콜모노메틸에테르 / 다이에틸렌 글리콜 메틸 에테르 / 2-(2-메톡시에톡시에탄올) / 메틸 다이옥시톨 / 메틸 카비톨", + "unNumber": "", + "casNumber": "111-77-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DEGMM", + "name": "Diethylene glycol monomethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 518, + "abbreviation": "DETA", + "nameKr": "디에틸렌트리아민", + "nameEn": "Diethylene triamine", + "synonymsEn": "Diethylenetriamine / DETA / N1-(2-aMinoethyl)ethane-1,2-diaMine / DIEN / DETA Diethylenetriamine / DIETHYLENTRIAMINE / BIS(2-AMINOETHYL)AMINE / diethylenetriamine(deta) / 1,2-Ethanediamine,N-(2-aminoethyl)- / Diethylenetriamin / 3-Azapentane-1,5-diamine", + "synonymsKr": "다이에틸렌트라이아민 / 1,4,7-트리아자헵탄 / 2,2-디아미노디에틸아민 / 2,2-이미노비스(에탄아민) / N-(2-아미노에틸)-1,2-에탄디아민 / N-(2-아미노에틸)에틸렌디아민 / 비스(2-아미노에틸)아민 / 비스(베타-아미노에틸)아민 / 1,2-에탄디아민,N-(2-아미노에틸)- / 다이에틸렌트라이아민 / 디에틸렌트리아민 / 디에틸렌트리아민(DETA) / 디에틸렌트리아민 / 1,4,7-트라이아자헵탄 / 2,2'-다이아미노다이에틸아민 / 2,2'-다이아미노에틸아민 / 2,2'-이미노다이에틸아민 / 2,2'-이미노비스(에탄아민) / 3-아자-1,5-펜탄다이아민 / ChS-P 1 DETA / N-(2-아미노에틸)에틸렌다이아민", + "unNumber": "", + "casNumber": "111-40-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DETA", + "name": "Diethylene triamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 519, + "abbreviation": "DGCE", + "nameKr": "디글리시딜 에테르", + "nameEn": "Diglycidyl ether", + "synonymsEn": "Neopentyl glycol diglycidyl ether / neopentyl / heloxywc68 / DIGLYCIDYLOXYNEOPENTANE / neopentyl glycol diglycidyl / diglycidyletherofneopentylgylcol / 2,2-Bis(glycidyloxymethyl)propane / NEOPENTYL GLYCOL DIGLYCIDYL ETHER / NeopentylGlycolDiglycidylEther>Neopentane glycol Diglycidyl ether / DIGLYCIDYL ETHER OF NEO-PENTYL GLYCOL", + "synonymsKr": "네오펜틸 글리콜 디글리시딜 에테르 / 네오펜틸글리콜디글리시딜에테르 / 네오펜틸글리콜디글리시딜에테르", + "unNumber": "", + "casNumber": "26403-72-5 17557-23-2 2425-79-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DGCE", + "name": "Diglycidyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 520, + "abbreviation": "DIBP", + "nameKr": "프탈산 디이소부틸", + "nameEn": "Diisobutyl phthalate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "84-69-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIBP", + "name": "Diisobutyl phthalate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 521, + "abbreviation": "DIOP", + "nameKr": "프탈산 디이소옥틸", + "nameEn": "Diisooctyl phthalate", + "synonymsEn": "Diisooctyl phthalate / Isooctyl phthalate / alkylphthalates / Bis(6-methylheptyl) phthalate / Corflex 880 / Morflex 100 / Hexaplas M/O / Witcizer 313 / BISOFLEXDIOP / Palatinol D10 / isooctylphthalate", + "synonymsKr": "글명:디 이소옥틸 프탈레이트 / 다이아이소옥틸프탈레이트 / 디이소옥틸프탈레이트 / 디아이소옥틸프탈산 / 디이소옥틸프탈산 / 디아이소옥틸프탈산 / 다이아이소옥틸 프탈레이트", + "unNumber": "", + "casNumber": "27554-26-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIOP", + "name": "Diisooctyl phthalate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 522, + "abbreviation": "DIPA", + "nameKr": "디이소프로필아민", + "nameEn": "Diisopropylamine", + "synonymsEn": "Diisopropylamine / DIPA / N,N-Diisopropylamine / Diisopropylamin / Diisoproplamine / Pyridine, 2-methoxy- / (iso-C3H7)2NH / AURORA KA-7634 / DIISOPROPYLAMINE / Isodipropylamine / Torsemide SM3-Z2", + "synonymsKr": "다이아이소프로필아민 / 다이아이소프로필아민 / 디이소프로필아민", + "unNumber": "", + "casNumber": "108-18-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DIPA", + "name": "Diisopropylamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 523, + "abbreviation": "DMCYCL", + "nameKr": "다이메틸 사이클릭 실록산", + "nameEn": "Dimethyl cyclics", + "synonymsEn": "Octamethylcyclotetrasiloxane / / D4 / OMCTS / Cyclotetrasiloxane,octamethyl- / Cyclic tetramer / unioncarbide7207 / OCTAMETHYLTETRASILOXANE / Oktamethylcyklotetrasiloxan / Octamethylcyclotetrasiloxane,98% / 2-Benzimidazolecarbamic Acid Methyl Ester-d4 / 2,2,4,4,6,6,8,8-Octamethyl-1,3,5,7,2,4,6,8-tetraoxatetrasilocane", + "synonymsKr": "옥타메틸시클로테트라실록산 / 옥타메틸사이클로테트라실록세인 / 옥타메틸사이클로테트라실록산 / 옥타메틸시클로테트라실록산", + "unNumber": "", + "casNumber": "556-67-2 541-02-6 541-05-09", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMCYCL", + "name": "Dimethyl cyclics", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 524, + "abbreviation": "DMPSOX", + "nameKr": "다이메틸 폴리실록산", + "nameEn": "Dimethyl polysioxane", + "synonymsEn": "Silicone oil / pdms / Silicone / Poly(dimethylsiloxane) / siloxane / HMDO / SILICONE FLUID / Silicone emulsion / DIETHYL ETHER RECTIFIED / dimethylsilicone fluid / polydimethylsiloxanes", + "synonymsKr": "폴리다이메틸실록산 / 폴리다이메틸실록산 / 폴리다이메틸실록산(Polydimethylsiloxane) / 폴리다이메틸실록세인류 / 실리콘 유", + "unNumber": "", + "casNumber": "63148-62-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMPSOX", + "name": "Dimethyl polysioxane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 525, + "abbreviation": "DMA45", + "nameKr": "디메틸아민 용액", + "nameEn": "Dimethylamine solution (45% or less)", + "synonymsEn": "Dimethylamine / (CH3)2NH / Dimethylamin / Metformin EP Impurity F / DiMethylaMine (~2.0 M in THF) / Dimethylamine methanol solution / DiMethylaMine, 2.0 M solution in THF, SpcSeal / Dimethylamine (ca. 10% in Tetrahydrofuran, ca. 2mol/L) / DMA-40 / DMA-60 / DMA-65", + "synonymsKr": "디메틸아민 / 디메틸아민 / 다이메틸아민,무수(다이메틸아민,무수) / 디메틸아민(50%수용액) / 디메틸아민(기체) / N-메틸메탄아민 / N,N-디메틸아민 / 디메칠아민 / 다이메틸아민 / 7-(아세틸옥시)-4-메틸-2-벤조파이론", + "unNumber": "", + "casNumber": "124-40-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMA45", + "name": "Dimethylamine solution (45% or less)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 526, + "abbreviation": "DMA50", + "nameKr": "디메틸아민 용액", + "nameEn": "Dimethylamine solution (50%)", + "synonymsEn": "Dimethylamine / (CH3)2NH / Dimethylamin / Metformin EP Impurity F / DiMethylaMine (~2.0 M in THF) / Dimethylamine methanol solution / DiMethylaMine, 2.0 M solution in THF, SpcSeal / Dimethylamine (ca. 10% in Tetrahydrofuran, ca. 2mol/L) / DMA-40 / DMA-60 / DMA-65", + "synonymsKr": "디메틸아민 / 디메틸아민 / 다이메틸아민,무수(다이메틸아민,무수) / 디메틸아민(50%수용액) / 디메틸아민(기체) / N-메틸메탄아민 / N,N-디메틸아민 / 디메칠아민 / 다이메틸아민 / 7-(아세틸옥시)-4-메틸-2-벤조파이론", + "unNumber": "", + "casNumber": "124-40-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMA50", + "name": "Dimethylamine solution (50%)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 527, + "abbreviation": "DMEA", + "nameKr": "디메틸에탄올아민", + "nameEn": "Dimethylethanolamine", + "synonymsEn": "2-Dimethylaminoethanol / DMAE / DIMETHYLETHANOLAMINE / N,N-DIMETHYLETHANOLAMINE / DIMETHYLAMINOETHANOL / 2-(N,N-DIMETHYLAMINO)ETHANOL / DEANOL / N,N-DIMETHYLAMINOETHANOL / (CH3)2NCH2CH2OH / DMEOA / amietolm21", + "synonymsKr": "2-디메틸아미노에탄올 / 2-다이메틸아미노에탄올 / 2-디메틸아미노에탄올 / N,N-다이메틸에탄올아민 / N,N-디메틸아미노에탄올 / N,N-디메틸에탄올아민 / N,N-다이메틸아미노-2-에탄올 / 다이메틸엠이에이 / 2-(다이메틸아미노)에탄올 / N,N-다이메틸-2-하이드록시에틸아민 / Norcholine / 다이메틸에탄올아민 / 데아놀 / 디메틸에탄올아민", + "unNumber": "", + "casNumber": "108-01-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMEA", + "name": "Dimethylethanolamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 528, + "abbreviation": "DMP", + "nameKr": "디메틸포름아마이드", + "nameEn": "Dimethylphenol", + "synonymsEn": "N,N-Dimethylformamide / DMF / DIMETHYLFORMAMIDE / DMFA / amide,n,n-dimethyl-formicaci / Dimethylformamid / HCON(CH3)2 / Dimethylforamide / DIMETHYL FORMIDE / N,N-Dimethylmethanamide / EMF", + "synonymsKr": "N,N-다이메틸폼아마이드 / 다이메틸폼아마이드 / N,N-다이메틸폼아마이드 / N,N-디메틸포름아미드 / N-포밀다이메틸아민 / 디메틸포름아미드 / 디엠에프 / N,N-다이메틸포름아마이드 / 다이메틸포름아마이드 / Dimethylformamide", + "unNumber": "2265", + "casNumber": "68-12-2", + "transportMethod": "", + "sebc": "", + "usage": "합성피혁, 섬유, 화학제품 생산 공정에서 용매나 첨가제로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DMP", + "name": "Dimethylphenol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 529, + "abbreviation": "DINPE", + "nameKr": "디이소노닐프탈산", + "nameEn": "DINP-E", + "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISONONYL ESTER ·DINP ·ENJ 2065 ·Palatinol CE 5250 ·PALATINOL DN ·PHTHALIC ACID, DIISONONYL ESTER ·Sansocizer DINP ·Vestinol NN ·WITAMOL 150 ·bis(3,5,5-trimethylhexyl) phthalate ·dinonyl phthalate", + "synonymsKr": "·1,2-벤젠다이카복실산, 다이아이소노닐 에스터 ·DINP ·ENJ 2065 ·플라티놀 CE 5250 ·플라티놀 DN ·프탈산, 다이아이소노닐 에스터 ·Sansocizer DINP ·Vestinol NN ·WITAMOL 150 ·비스(3,5,5-트라이메틸헥실) 프탈산 ·다이노닐 프탈산", + "unNumber": "3082", + "casNumber": "28553-12-0", + "transportMethod": "", + "sebc": "", + "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도 조정제 등으로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DINPE", + "name": "DINP-E", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 530, + "abbreviation": "DINPU", + "nameKr": "디이소노닐프탈산", + "nameEn": "DINP-U", + "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISONONYL ESTER ·DINP ·ENJ 2065 ·Palatinol CE 5250 ·PALATINOL DN ·PHTHALIC ACID, DIISONONYL ESTER ·Sansocizer DINP ·Vestinol NN ·WITAMOL 150 ·bis(3,5,5-trimethylhexyl) phthalate ·dinonyl phthalate", + "synonymsKr": "·1,2-벤젠다이카복실산, 다이아이소노닐 에스터 ·DINP ·ENJ 2065 ·플라티놀 CE 5250 ·플라티놀 DN ·프탈산, 다이아이소노닐 에스터 ·Sansocizer DINP ·Vestinol NN ·WITAMOL 150 ·비스(3,5,5-트라이메틸헥실) 프탈산 ·다이노닐 프탈산", + "unNumber": "3082", + "casNumber": "28553-12-0", + "transportMethod": "", + "sebc": "", + "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도 조정제 등으로 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DINPU", + "name": "DINP-U", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 531, + "abbreviation": "DOP", + "nameKr": "디옥틸프탈산", + "nameEn": "Dioctyl phthalate", + "synonymsEn": "DI-N-OCTYL PHTHALATE / DOP / Dioctyl phthalate / Dnop / Octyl phthalate / di-n-octyl / DICAPRYL PHTHALATE / di-1-octylphthalate / DI OCTYLE PHTHALATE / Di-n-octyl phthalate (DNOP) / 1,2-Benzenedicarboxylic acid, dioctyl ester", + "synonymsKr": "디옥틸 프탈레이트 / 디옥틸프탈레이트 / 다이옥틸프탈레이트 / 디옥틸프탈레이트 / 다이-N-옥틸 프탈레이트 / 1,2-벤젠디카르복시산, 디옥틸 에스터 / N-옥틸 프탈레이트 / o-벤젠디카르복시산, 디옥틸 에스터 / 다이옥틸 프탈레이트 / 디-N-옥틸 프탈레이트 / 디노폴 / 디옥틸 o-프탈레이트 / 비니시저 85 / 옥틸 프탈산 / 프탈산, 디옥틸 에스터 / 디-n-옥틸프탈레이트", + "unNumber": "", + "casNumber": "117-84-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOP", + "name": "Dioctyl phthalate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 532, + "abbreviation": "DPT", + "nameKr": "디펜텐", + "nameEn": "Dipentene", + "synonymsEn": "DL-Limonene / D-LIMONENE / Dipentene / L-LIMONENE / Cinene / (-)-LIMONENE / 1-methyl-4-(prop-1-en-2-yl)cyclohex-1-ene / LIMONENE(P) / CITRUS TERPENE / DL-LIMONENE (MIXTURE OF D- AND L-FORM CA / FEMA 2633", + "synonymsKr": "리모넨 / d-리모넨 / 리모넨 / 디-리모넨 / p-멘타-1,8-다이엔 / DL-리모넨 / (±)-1-메틸-4-(1-메틸바이닐)사이클로헥센 / 1,8-p-멘타다이엔 / 1-메틸-4-(1-메틸바이닐)사이클로헥센 / 1-메틸-4-(1-메틸에텐일)사이클로헥센 / 1-메틸-4-아이소프로펜일-1-사이클로헥센 / 1-메틸-4-프로프-1-엔-2-일-사이클로헥센 / 사이클로헥센, 1-메틸-4-(1-메틸바이닐)-, (+)- (PICCS) / 사이클로헥센, 1-메틸-4-(1-메틸에텐일)-", + "unNumber": "", + "casNumber": "138-86-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPT", + "name": "Dipentene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 533, + "abbreviation": "DPMD", + "nameKr": "디페닐메탄 디이소시아네이트", + "nameEn": "Diphenylmethane diisocyanate", + "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", + "synonymsKr": "4,4′-메틸렌 비스(페닐 이소시아네이트)(고체) / 4,4'-디페닐메탄디이소시아네이트 / 4,4′-메틸렌비스(페닐이소시아네 / 4,4′-메틸렌비스(페닐이소시아네이트)(고체) / 메틸렌디(비스)페닐4,4‘-디이소시아네이트 / 메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산) / 4,4'-메틸렌디(비스)페닐디이소시아네이트 / 메틸렌비스(4-페닐아이소사이아네이트) / 4,4'-디이소시안산 디페닐메탄 / 4,4-디이소시안산디페닐메탄 / 메틸렌비스페닐이소시아네이트", + "unNumber": "2206", + "casNumber": "101-68-8", + "transportMethod": "", + "sebc": "", + "usage": "단열재, 건축재, 접착제, 스판덱스. 합성피혁 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPMD", + "name": "Diphenylmethane diisocyanate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 534, + "abbreviation": "DPLST", + "nameKr": "메틸렌비스페닐이소시아네이트", + "nameEn": "DIPLAST TM", + "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", + "synonymsKr": "4,4′-메틸렌 비스(페닐 이소시아네이트)(고체) / 4,4'-디페닐메탄디이소시아네이트 / 4,4′-메틸렌비스(페닐이소시아네 / 4,4′-메틸렌비스(페닐이소시아네이트)(고체) / 메틸렌디(비스)페닐4,4‘-디이소시아네이트 / 메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산) / 4,4'-메틸렌디(비스)페닐디이소시아네이트 / 메틸렌비스(4-페닐아이소사이아네이트) / 4,4'-디이소시안산 디페닐메탄 / 4,4-디이소시안산디페닐메탄 /", + "unNumber": "2206", + "casNumber": "101-68-8", + "transportMethod": "", + "sebc": "", + "usage": "단열재, 건축재, 접착제, 스판덱스. 합성피혁 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPLST", + "name": "DIPLAST TM", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 535, + "abbreviation": "DPRPA", + "nameKr": "디프로필아민", + "nameEn": "Dipropylamine", + "synonymsEn": "Dipropylamine / DPA / DI-N-PROPYLAMINE / DNPA / n,n-dipropylamine / ai3-24037 / (n-C3H7)2NH / Di-n-propyL / DIPROPYLAMINE / Dipropanamine / AURORA KA-7671", + "synonymsKr": "디프로필아민 / 다이프로필아민 / 디프로필아민 / N-프로필-1-프로판아민 / 다이-N-프로필아민 / n-디프로필아민", + "unNumber": "", + "casNumber": "142-84-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPRPA", + "name": "Dipropylamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 536, + "abbreviation": "DPGME", + "nameKr": "디프로필렌 글리콜 메틸 에테르", + "nameEn": "Dipropyrene glycol monomethyl ether", + "synonymsEn": "Dipropylene glycol monomethyl ether / DPM / dpgme / (2-methoxymethylethoxy)propanol / DI(PROPYLENE GLYCOL) METHYL ETHER / arcosolv / GLYCOL ETHER DPM / Methoxypropoxypropanol / Dipropylene glycol monomethyl / (2-methoxymethylethoxy)-propano / 3-(3-Methoxypropoxy)-1-propanol", + "synonymsKr": "디프로필렌 글리콜 메틸 에테르 / 디프로필렌글리콜메틸에테르 / 다이프로필렌글리콜메틸에테르 / 디프로필렌글리콜메틸에테르 / 다이프로필렌 글리콜 모노메틸 에테르 / (2-메톡시메티에톡시)프로판올 / PPG-2 메틸 에테르 / 디프로필렌 글리콜 모노메틸 에테르", + "unNumber": "", + "casNumber": "34590-94-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPGME", + "name": "Dipropyrene glycol monomethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 537, + "abbreviation": "DCNFA", + "nameKr": "코코넛 지방산", + "nameEn": "Distilled coconut fatty acid", + "synonymsEn": "COCONUT OIL FATTY ACIDS / Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", + "synonymsKr": "코코넛 지방 산 / 코코넛지방산 / 코코넛지방산(COCONUTFATTYACID)", + "unNumber": "", + "casNumber": "67701-05-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCNFA", + "name": "Distilled coconut fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 538, + "abbreviation": "DHPKFA", + "nameKr": "지방산", + "nameEn": "Distilled hydrogenated palm kernel fatty acid", + "synonymsEn": "Fatty acids, C12-18 / Fatty acids, C12-18 CBNumber:CB6923237", + "synonymsKr": "지방산, / 지방산, / 지방산,(C=12-18)", + "unNumber": "", + "casNumber": "67701-01-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DHPKFA", + "name": "Distilled hydrogenated palm kernel fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 539, + "abbreviation": "DLFA", + "nameKr": "정재된 라우르산", + "nameEn": "Distilled lauric fatty acid", + "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", + "synonymsKr": "라우르산 / 라우르산 / 도데카노익산 / 라우릭산 / 라우릭애씨드 / 도데칸산 / 1-운데케인카복실산 / n-도데칸산 / 데다콘산 / 도데실산 / 도데칸 산 / 도데코 산 / 도데크산 / 듀오-디시클릭 산 / 라우로스테아르 산 / 로로스테아르산 / 로르산 / 하이드로폴 산 1255", + "unNumber": "", + "casNumber": "143-07-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DLFA", + "name": "Distilled lauric fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 540, + "abbreviation": "DPFA", + "nameKr": "정재된 라우르산", + "nameEn": "Distilled palm fatty acid", + "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", + "synonymsKr": "라우르산 / 라우르산 / 도데카노익산 / 라우릭산 / 라우릭애씨드 / 도데칸산 / 1-운데케인카복실산 / n-도데칸산 / 데다콘산 / 도데실산 / 도데칸 산 / 도데코 산 / 도데크산 / 듀오-디시클릭 산 / 라우로스테아르 산 / 로로스테아르산 / 로르산 / 하이드로폴 산 1255", + "unNumber": "", + "casNumber": "143-07-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPFA", + "name": "Distilled palm fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 541, + "abbreviation": "DPFAD", + "nameKr": "정재된 팜유", + "nameEn": "Distilled palm fatty acid distillate", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPFAD", + "name": "Distilled palm fatty acid distillate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 542, + "abbreviation": "DPKFA", + "nameKr": "정재된 야자유", + "nameEn": "Distilled palm kernel fatty acid", + "synonymsEn": "/ Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", + "synonymsKr": "/ 코코넛지방산 / 코코넛지방산(COCONUTFATTYACID) COCONUT OIL FATTY ACIDS", + "unNumber": "", + "casNumber": "67701-05-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DPKFA", + "name": "Distilled palm kernel fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 543, + "abbreviation": "DTPKFA", + "nameKr": "정재된 코코넛유 지방산", + "nameEn": "Distilled topped palm kernel fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "90990-15-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DTPKFA", + "name": "Distilled topped palm kernel fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 544, + "abbreviation": "DLIM", + "nameKr": "D-리모넨", + "nameEn": "D-Limonene", + "synonymsEn": "(+)-Dipentene / (R)-1-Methyl-4-(prop-1-en-2-yl)cyclohex-1-ene / D-Dipentene / citrene / imonene / d-limoneno / kautschiin / (gamma)-Carvene / (R)-1-methyl-4-(1-methylethenyl)cyclohexene / LEMOSOL / llmonene", + "synonymsKr": "D-리모넨 / D-리모넨 / 리모넨 / 과산화물가가20mmol/L을초과하는d-리모넨 / D-리모넨(D-LIMONENE)", + "unNumber": "", + "casNumber": "5989-27-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DLIM", + "name": "D-Limonene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 545, + "abbreviation": "DOBA", + "nameKr": "", + "nameEn": "Dobanic", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOBA", + "name": "Dobanic", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 546, + "abbreviation": "DBNL23", + "nameKr": "엑톡시화 알코올", + "nameEn": "Dobanol 23 (C12-C13)", + "synonymsEn": "C12-15 PARETH-2 / AEC-9NA / Primary Alcobol Ethoxylate / C12-15 PARETH-9 / Alcohols, C12-15, ethoxylated / C12-15 PARETH-3 / C12-15 PARETH-12 / C12-15 PARETH-10 / Neodol-12 / Tomadol 25-9 / AEO-3,Mw ~315", + "synonymsKr": "직선상의 에톡시산 알코올 (C12-C15) / 직선상의에톡시산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / C12-15파레스-10 / C12-15파레스-11 / C12-15파레스-12 / C12-15파레스-2 / C12-15파레스-3 / C12-15파레스-4 / C12-15파레스-5 / C12-15파레스-7 / C12-15파레스-9 / C12-15파레트-2", + "unNumber": "", + "casNumber": "68131-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DBNL23", + "name": "Dobanol 23 (C12-C13)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 547, + "abbreviation": "DBNL25", + "nameKr": "에톡실산화 알코올", + "nameEn": "Dobanol 25 (C12-C15)", + "synonymsEn": "Alcohols, C12-16, ethoxylated / Alcohol Ethoxylated AEO / C12-16 Alcohol ethoxylate / Alcohols, C12-16, ethoxylated / Alcohol-(C12-C16), ethoxylated / ETHOXYLATED ALCOHOLS (C12-C15)", + "synonymsKr": "에톡실산화 알코올 (C12-C15) / 에톡실산화알코올(C12-C15) / 에톡실산화알코올(C12-C15)(ETHOXYLATEDALCOHOLS(C12-C15)) / C12-16파레스-5 / C12-16파레스-7 / C12-16파레스-9 / C12-16 알코올, 에톡실레이티드 / 알코올 C12-16, 에톡실레이티드 / 알코올, C12-16, 에톡실레이티드 / 에톡실레이티드 C12-16 알코올 / 에톡실레이티드 알코올 (C = 12-16) / 에톡실레이티드 알코올, C12-16 / 폴리에틸렌 글라이콜 모노-C12-16-알킬 에터 / 폴리에틸렌 글라이콜, 도데실, 테트라데실, 헥사데실 에터 / 알코올,C12-16,에톡시화", + "unNumber": "", + "casNumber": "68551-12-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DBNL25", + "name": "Dobanol 25 (C12-C15)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 548, + "abbreviation": "DBNL253", + "nameKr": "알코올 에톡실레이트", + "nameEn": "Dobanol 25-3", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "58391-12-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DBNL253", + "name": "Dobanol 25-3", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 549, + "abbreviation": "DBNL45", + "nameKr": "", + "nameEn": "Dobanol 45 (C14-C15)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DBNL45", + "name": "Dobanol 45 (C14-C15)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 550, + "abbreviation": "DDECA", + "nameKr": "", + "nameEn": "Dodecanol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DDECA", + "name": "Dodecanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 551, + "abbreviation": "DFPO", + "nameKr": "팜유", + "nameEn": "Double fractionated palm oil", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined CBNumber", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DFPO", + "name": "Double fractionated palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 552, + "abbreviation": "DFPL", + "nameKr": "팜 올레인", + "nameEn": "Double fractionated palm olein", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "93334-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DFPL", + "name": "Double fractionated palm olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 553, + "abbreviation": "DFPL62", + "nameKr": "팜 올레인", + "nameEn": "Double fractionated palm olein I.V.62", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "93334-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DFPL62", + "name": "Double fractionated palm olein I.V.62", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 554, + "abbreviation": "DFPL64", + "nameKr": "팜 올레인", + "nameEn": "Double fractionated palm olein I.V.64", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "93334-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DFPL64", + "name": "Double fractionated palm olein I.V.64", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 555, + "abbreviation": "DFPL65", + "nameKr": "팜 올레인", + "nameEn": "Double fractionated palm olein I.V.65", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "93334-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DFPL65", + "name": "Double fractionated palm olein I.V.65", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 556, + "abbreviation": "DOWNLPMA", + "nameKr": "플로필렌 글리콜 메틸 에테르 아세테이트(상표명)", + "nameEn": "Dowanol PMA glycol ether acetate", + "synonymsEn": "1-Methoxy-2-propyl acetate / PGMEA / MPA / PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE / PROPYLENE GLYCOL METHYL ETHER ACETATE / 1-METHOXY-2-PROPANOL ACETATE / 2-METHOXY-1-METHYLETHYL ACETATE / PMA-EL / Dowanol PMA / Propylene glyc / METHOXYISOPROPYL ACETATE", + "synonymsKr": "프로필렌 글리콜 모노메틸 에테르 아세트산 / 1-메톡시-2-프로판올아세트산 / 1-메톡시-2프로판올아세트산,프로필렌글리콜메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산(P.M.A) / 프로필렌글리콜메틸에테르아세테이트 / 메톡시아이소프로필아세테이트 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌 글리콜 모노메틸 에테르 아세테이트, 알파-이성질체 / 1-메톡시-2-프로판올 아세트산 / 아세트 산, 2-메톡시-1-메틸에틸 에스테르 / 프로필렌 글리콜 메틸 에테르 아세테이트 / 프로필렌 글리콜 모노메틸 에테르 아세트산", + "unNumber": "3272", + "casNumber": "108-65-6", + "transportMethod": "", + "sebc": "", + "usage": "잉크, 코팅제, 세척제, 반도체 공정 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOWNLPMA", + "name": "Dowanol PMA glycol ether acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 557, + "abbreviation": "DOWNLPME", + "nameKr": "플로필렌 글리콜 메틸 에테르(상표명)", + "nameEn": "Dowanol PM-E", + "synonymsEn": "1-Methoxy-2-propanol / PM / PGME / Methoxypropanol / 2-Propanol, 1-methoxy- / PROPYLENE GLYCOL METHYL ETHER / 1-METHOXYPROPAN-2-OL / 203-539-1 / Dowanol pm / GLYCOL ETHER PM / METHOXYISOPROPANOL", + "synonymsKr": "프로필렌글리콜 모노메틸에테르 / 프로필렌글리콜모노메틸에테르 / 프로필렌글리콜모노메틸에테르 / 프로필렌글리콜메틸에테르 / 메톡시아이소프로판올 / 프로필렌글리콜모노메틸에테르 / 1-메톡시-2-하이드록시프로페인 / 1-메톡시-2-프로판올 / 글리콜 에테르 / 메톡시프로판-1,2-디올 / 알파-프로필렌 글리콜 모노메틸 에테르 / 프로필렌 글리콜 메틸 에테르 / 프로필렌 글리콜 모노메틸 에테르 / 프로필렌 글리콜, 1 메틸 에테르 / 프로필렌 글리콜의 메톡시에테르", + "unNumber": "", + "casNumber": "107-98-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOWNLPME", + "name": "Dowanol PM-E", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 558, + "abbreviation": "DOWFAX", + "nameKr": "다우팩스 2A1", + "nameEn": "Dowfax 2A1", + "synonymsEn": "Dowfax 2A1 / DOWFAX 2A1 Solution Surfactant / DOWFAX(R) 2A1 SOLUTION SURFACTANT / Dodecyl diphenyl ether sulfonic acid / DOW FAX 2A1,DOWFAX(R) 2A1 SOLUTION SURFACTANT / Dow 2A1/3B2 8390 emulsifier Sodium dodecyl diphenyl ether disulfonate Ionic surfactants", + "synonymsKr": "다우팩스2A1 / 다우팩스2A1", + "unNumber": "", + "casNumber": "12626-49-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOWFAX", + "name": "Dowfax 2A1", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 559, + "abbreviation": "DOWFR", + "nameKr": "", + "nameEn": "Dowfroth", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOWFR", + "name": "Dowfroth", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 560, + "abbreviation": "DRLF", + "nameKr": "드릴링 플루이드", + "nameEn": "Drilling Fluid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "64742-46-7 9003-05-8 590-29-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DRLF", + "name": "Drilling Fluid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 561, + "abbreviation": "DSP80/100", + "nameKr": "하이드로처리된 경 나프타(휘발유)", + "nameEn": "DSP 80/100", + "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", + "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", + "unNumber": "", + "casNumber": "64742-49-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DSP80/100", + "name": "DSP 80/100", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 562, + "abbreviation": "DUTREX", + "nameKr": "", + "nameEn": "Dutrex", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DUTREX", + "name": "Dutrex", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 563, + "abbreviation": "EDFT", + "nameKr": "식용 팜유", + "nameEn": "Edible fancy tallow", + "synonymsEn": "LARD OIL / Larex Ex / LARD OIL / oils,lard / Larex prime / Larex No. 1 / Larex extra / lardoilporcine / LARD OIL, PRIME / REFINED-LARDOIL / Larex extra No. 1", + "synonymsKr": "LARD 기름 / LARD기름 / 라드기름 / 라드기름", + "unNumber": "", + "casNumber": "8016-28-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EDFT", + "name": "Edible fancy tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 564, + "abbreviation": "ELARD", + "nameKr": "에피클로로히드린", + "nameEn": "Edible lard", + "synonymsEn": "Epichlorohydrin / ECH / 2-(Chloromethyl)oxirane / EPICHLOROHYDRINE / EPICHLORHYDRIN / 1-CHLORO-2,3-EPOXYPROPANE / Epichlorhydrine / ALPHA-EPICHLOROHYDRIN / New product 99.9% purity CAS 106-89-8 Epichlorohydrin CAS NO.106-89-8 Manufacturers wholesale / Epicloridrina / J006", + "synonymsKr": "에피클로로하이드린 / (클로로메틸)에틸렌산화물 / 에피클로로하이드린 / 에피클로로히드린 / 에피클로로히드린(ECH) / 1-클로로-2,3-에폭시프로판 / 3-클로로프로필렌산화물 / 감마-클로로프로필렌산화물 / 글리세롤에피클로로히드린 / 클로로메틸옥시란", + "unNumber": "2033", + "casNumber": "106-89-8", + "transportMethod": "", + "sebc": "", + "usage": "주로 에폭시 수지 제조 시 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ELARD", + "name": "Edible lard", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 565, + "abbreviation": "EPRSIN", + "nameKr": "에폭시 수지", + "nameEn": "Epoxy resins", + "synonymsEn": "BISPHENOL A DIGLYCIDYL ETHER RESIN / Der331 / CYD-128 / e1001 / epon1001 / EPON RESIN 828 / (Chloromethyl)oxirane,4,4’-(1-methylethylidene)bisphenolcopolymer / 4,4’-(1-methylethylidene)bis-phenopolymerwith(chloromethyl)oxirane / 4,4’-(1-methylethylidene)bisphenol,-,polymerwith2,2’-[(1-methylethylidene) / e828 / e1004", + "synonymsKr": "에피클로로하이드린-비스페놀 A 수지 / 에피클로로하이드린-비스페놀A수지 / (클로로메틸)옥시레인과의4,4-(1-메틸에틸리덴)비스페놀중합체 / 4,4'-아이소프로필리덴다이페놀/에피클로로하이드린코폴리머 / 에피클로로하이드린-비스페놀A수지 / 셔윈-윌리암스 타르 가드 콜 타르 에폭시 (Pt B) 경화제 / (클로로메틸)옥시레인과의 4,4-(1-메틸에틸리덴) 비스페놀 중합체 / 1-클로로-2,3-에폭시프로페인과의 4,4-아이소프로필리덴다이페놀 중합체 / 다이안-에피클로로하이드린 공중합체 / 다이안-에피클로로하이드린 중합체 / 비스페놀 A-에피클로로하이드린 수지 / 페놀, 4,4-아이소프로필리덴다이-, 1-클로로-2,3-에폭시프로페인과의 중합체 / 비스페놀올디글리시딜수지", + "unNumber": "-", + "casNumber": "25068-38-6", + "transportMethod": "", + "sebc": "", + "usage": "접착제, 자동차 및 코일 코팅용 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EPRSIN", + "name": "Epoxy resins", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 566, + "abbreviation": "ERUCACID", + "nameKr": "에루신산", + "nameEn": "Erucic acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "112-86-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ERUCACID", + "name": "Erucic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 567, + "abbreviation": "EAMN", + "nameKr": "에탄올아민", + "nameEn": "Ethanol amine", + "synonymsEn": "Monoethanolamine / MONOETHANOLAMINE / 2-Aminoethan-1-ol / 2-AMINOETHANOL / Olamine / Aminoethanol / GLYCINOL / 2-Ethanolamine / 2-HYDROXYETHYLAMINE / Ethanolamine, 99%, H2O 0.5% max / MEA 90", + "synonymsKr": "글명:에탄올아민 / 2-아미노에탄올 / 2-아미노에타놀 / 2-에타놀아민 / 글리시놀 / 아미노에타놀 / 콜올아민 / 2-히드록시에탄아민 / 2-히드록시에틸아민 / 모노에타놀아민 / 베타-아미노에타놀 / 베타-아미노에틸알코올 / 베타-에타놀아민 / 베타-히드록시에틸아민 / 에타놀,2-아미노- / 에탄올아민 / 에틸올아민 / 모노에탄올아민 / 2-하이드록시에틸아민 / 콜라민", + "unNumber": "2491", + "casNumber": "141-43-5", + "transportMethod": "", + "sebc": "", + "usage": "가스 세정, 세제, 계면활성제, 유화제, 광택제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EAMN", + "name": "Ethanol amine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 568, + "abbreviation": "EACE", + "nameKr": "초산에틸", + "nameEn": "Ethyl acetate", + "synonymsEn": "Ethyl acetate / EtOAc / ETOH / ALCOHOL / yisuanyizhi / ETHYL ETHANOATE / ACETIC ACID ETHYL ESTER / ETHANOL ABSOLUTE / METHYLATED SPIRIT / CH3COOC2H5 / ACETIC ETHER", + "synonymsKr": "초산에틸 / 아세트산에틸 / 메틸아세틸에스테르 / 비네가나프타 / 아세톡시에탄 / 아세트에테르 / 아세트에스테르 / 아세트산에틸에스테르 / 아세티딘 / 에틸에탄오에이트 / 에틸아세트산 / 초산에틸 / 초산에틸,무수물 / 초산에틸에스테르 / 무수에탄올 / 초산에틸 / 에틸아세테이트 / 아세테이트 에틸 / 아세트산 에틸", + "unNumber": "1231", + "casNumber": "141-78-6", + "transportMethod": "", + "sebc": "", + "usage": "휘발성 용매 사용 접착제, 페인트, 매니큐어 리무버 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EACE", + "name": "Ethyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 569, + "abbreviation": "EACR", + "nameKr": "아크릴산에틸", + "nameEn": "Ethyl acrylate", + "synonymsEn": "Ethyl acrylate / Ethy Acrylate / FEMA 2418 / Ethyl propenoate / ETHYL 2-PROPENOATE / ACRYLIC ACID ETHYL ESTER / Ethyl acrylate, stabilized / 2-988 / NCI-C50384 / carboset511 / Carboset 511", + "synonymsKr": "아크릴산에틸 / 아크릴산에틸 / 2-프로펜오익산,에틸에스테르 / 아크릴산,에틸에스테르 / 아크릴에스테르E / 아클릴릭애시드에틸에스테르 / 에톡시카르보닐에틸렌 / 에틸2-프로펜오에이트 / 에틸아크릴릭에스테르 / 에틸아크릴레이트 / 이틸아크릴레이트 / 아크릴산에틸에스테르 / 에틸아크릴산 / 에틸프로펜오에이트 / 에틸프로렌오에이트 / 에틸아크릴레이트 / 에틸 아크릴레이트 / 2-프로페노익산, 에틸 에스터 / 아크릴산 에틸 에스터 / 에틸 프로-2-에노에이트 / 에틸 프로페노에이트", + "unNumber": "1173", + "casNumber": "140-88-5", + "transportMethod": "", + "sebc": "", + "usage": "용매, 착향제, 디카페인 용매 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.13, 15.17 , 15.19, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EACR", + "name": "Ethyl acrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 570, + "abbreviation": "ETHA", + "nameKr": "에탈올", + "nameEn": "Ethyl alcohol", + "synonymsEn": "Ethanol / Ethyl alcohol / C2H5OH / Absolute ethanol / Etanol / ALCOHOL DENAT. / Dehydrated Alcohol / Ethanol min. 99,9 % / 75% Ethanol / ETHANOL CONTROL-H / Denatured ethanol", + "synonymsKr": "에틸알코올 / 에틸알코올 / 그래인알코올 / 알그래인 / 알코올 / 에틸수산화물 / 에틸알코올,100% / 재이솔 / 95%합성(변성)에탄올 / EthylAlcohol95%변성 / 메틸카르비놀 / 무수에탄올AbsoluteEthanol / 브롬페놀블루용액 / 안히드롤 / 알코올무수물 / 에타놀 / 에탄올 / 에탄올70%소독 / 에탄올70~75% / 에탄올Ethanol / 에탄올무수", + "unNumber": "", + "casNumber": "64-17-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ETHA", + "name": "Ethyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 571, + "abbreviation": "ELAMN", + "nameKr": "에탈아민", + "nameEn": "Ethyl amine", + "synonymsEn": "Ethylamine / EA / MONOETHYLAMINE / AMINOETHANE / C2H5NH2 / An aMine / Ethylamin / Aethylamine / 1-Aminoethane / Ethylamine solution / EthylaMine solution 2.0 M in THF", + "synonymsKr": "에틸아민 / 에틸아민 / 모노에틸아민 / 아미노에테인 / 에틸아민, 무수", + "unNumber": "", + "casNumber": "75-04-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ELAMN", + "name": "Ethyl amine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 572, + "abbreviation": "EAK", + "nameKr": "", + "nameEn": "Ethyl amyl ketone", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EAK", + "name": "Ethyl amyl ketone", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 573, + "abbreviation": "EBZN", + "nameKr": "에틸벤젠", + "nameEn": "Ethyl benzene", + "synonymsEn": "Ethylbenzene / ET2O / EB / ETHOXYETHANE / Benzene, ethyl- / PHENYLETHANE / DIETHYL OXIDE / ethylenzene / Ethylbenzol / ETHYL OXIDE / Etilbenzene", + "synonymsKr": "에틸벤젠 / 에틸벤젠 / 에틸번젠", + "unNumber": "1175", + "casNumber": "100-41-4", + "transportMethod": "", + "sebc": "", + "usage": "스티렌 생산의 중간물질로 사용 가솔린의 안티 노킹제, 고무 접착제, 페인트, 잉크 용제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EBZN", + "name": "Ethyl benzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 574, + "abbreviation": "ECHXN", + "nameKr": "에틸시클로헥산", + "nameEn": "Ethyl cyclohexane", + "synonymsEn": "Ethylcyclohexane / Ethylcyclohexa / Athylcyclohexan / ETHYLCYCLOHEXAN / CYCLOHEXYLETHANE / ETHYLCYCLOHEXANE / cyclohexane,ethyl- / 1-Ethylcyclohexane / Ethylcyclohexane>Afobazole Impurity 22 / ETHYLCYCLOHEXANE, 99+%", + "synonymsKr": "에틸사이클로헥산 / 시클로헥산,에틸- / 에틸사이클로헥산 / 에틸시클로헥산 / 에틸사이클로헥세인 / 에틸사이클로헥산", + "unNumber": "", + "casNumber": "1678-91-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ECHXN", + "name": "Ethyl cyclohexane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 575, + "abbreviation": "EMA", + "nameKr": "메타크릴산에틸", + "nameEn": "Ethyl methacrylate", + "synonymsEn": "Ethyl methacrylate / EMA / Ethyl Methacrylate (stabilized with HQ) / PEMT / MAM6 / MCKD / CD227 / PEMPT / H23AG / MCKD1 / ADMCKD", + "synonymsKr": "메타크릴산 에틸 / 메타크릴산에틸 / 에틸메타크릴레이트 / 에틸메타크릴레이트 / 에틸 메타크릴레이트 / 2-메틸-2-프로페노산, 에틸 에스터 / 에틸 2-메틸-2-프로펜오에이트", + "unNumber": "", + "casNumber": "97-63-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.13, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EMA", + "name": "Ethyl methacrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 576, + "abbreviation": "E3EPROP", + "nameKr": "에틸-3-에톡시 프로피오네이트", + "nameEn": "Ethyl-3-ethoxy propionate", + "synonymsEn": "Ethyl 3-ethoxypropionate / EEP / ETHYL 3-ETHOXYPROPANOATE / Propanoic acid, 3-ethoxy-, ethyl ester / 3-ETHOXYPROPIONIC ACID ETHYL ESTER / EEP-3 / eep solvent / Ektapro EEP / cas no 763-69-9 / ethoxypropionate / 3-ethoxypropionate", + "synonymsKr": "에폭시프로피온산에틸에스테르 / 에틸-3-에톡시프로피오네이트 / 에틸베타-에톡시프로피온산 / 에폭시프로피온산에틸에스테르 / 에틸베타-에톡시프로피온산(ETHYLBETA-ETHOXYPROPIONATE) / 3-에톡시-프로피온산, 에틸 에스터 / 에톡시프로피온산, 에틸 에스터 / 에틸 3-에톡시프로피온산 / 에틸 베타-에톡시프로피온산 / 에틸-3-에톡시프로파노에이트", + "unNumber": "", + "casNumber": "763-69-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "E3EPROP", + "name": "Ethyl-3-ethoxy propionate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 577, + "abbreviation": "ECHN", + "nameKr": "에틸렌 클로로하이드린", + "nameEn": "Ethylene chlorohydrin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "107-07-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 1TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.18, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ECHN", + "name": "Ethylene chlorohydrin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 578, + "abbreviation": "ECYH", + "nameKr": "", + "nameEn": "Ethylene cyanohydrin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ECYH", + "name": "Ethylene cyanohydrin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 579, + "abbreviation": "EDM", + "nameKr": "에틸렌디아민", + "nameEn": "Ethylene diamine", + "synonymsEn": "Ethylenediamine / EDA / ETHANE-1,2-DIAMINE / 1,2-DIAMINOETHANE / YEA / 1,2-ETHANEDIAMINE / Ethylendiamine / 1,2-Ethylenediamine / Diaminoethane / H2NCH2CH2NH2 / Ethyleendiamine", + "synonymsKr": "에틸렌디아민 / 1,2-디아미노에탄 / 에틸렌다이아민 / 에틸렌디아민", + "unNumber": "1604", + "casNumber": "107-15-3", + "transportMethod": "", + "sebc": "", + "usage": "유기합성 원료, 섬유 처리제, EDTA 수지 등 제조원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EDM", + "name": "Ethylene diamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 580, + "abbreviation": "EDB", + "nameKr": "에틸렌 디브로마이드", + "nameEn": "Ethylene dibromide", + "synonymsEn": "1,2-Dibromoethane / EDB / DIBROMOETHANE / ETHYLENE DIBROMIDE / 1,2-dibromethane / 1,2-EDB / 1,2-Dibromethan / ETHYLENE BROMIDE / 1,2-DIBROMOETANE / Soilbrom / CH2BrCH2Br", + "synonymsKr": "에틸렌 디브롬 / 에틸렌다이브로마이드 / 1,2-디브로모에탄 / 에틸렌디브롬 / 1,2-다이브로모에테인 / 에틸렌 다이브로마이드 / 에틸렌디브롬화물", + "unNumber": "", + "casNumber": "106-93-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EDB", + "name": "Ethylene dibromide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 581, + "abbreviation": "EGMBE", + "nameKr": "부틸옥시톨", + "nameEn": "Ethylene glycol monobutyl ether", + "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", + "synonymsKr": "에틸렌글리콜모노부틸에테르 / 부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르", + "unNumber": "2810", + "casNumber": "111-76-2", + "transportMethod": "", + "sebc": "", + "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EGMBE", + "name": "Ethylene glycol monobutyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 582, + "abbreviation": "EGMBEA", + "nameKr": "에틸렌글리콜 모노부틸 에테르 아세테이트", + "nameEn": "Ethylene glycol monobutyl ether acetate", + "synonymsEn": "2-Butoxyethyl acetate / BUTYL GLYCOL ACETATE / BUTYL CELLOSOLVE ACETATE / ETHYLENE GLYCOL MONOBUTYL ETHER ACETATE / 2-butoxy-ethanoacetate / BUTOXYETHYL ACETATE / 2-butoxyethylesterkyselinyoctove / EGBEA / EB ACETATE / ektasolveebacetate / Butylcelosolvacetat", + "synonymsKr": "에틸렌 글리콜 모노뷰틸 에테르 아세트산 / 에틸렌글리콜모노뷰틸에테르아세테이트 / 에틸렌글리콜모노뷰틸에테르아세트산 / 에틸렌글리콜모노부틸에테르아세테이트 / 2-뷰톡시에탄올아세테이트 / 부톡시에틸아세테이트 / 에틸렌 글리콜 모노뷰틸 에테르 아세테이트 / 2-뷰톡시에탄올 아세테이트 / 부틸글리콜 아세트산 / 부틸셀로솔브아세트산 / 에틸렌글리콜모노부틸에테르 아세트산 / 폴리 캐트리타르더", + "unNumber": "", + "casNumber": "112-07-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EGMBEA", + "name": "Ethylene glycol monobutyl ether acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 583, + "abbreviation": "EGMEE", + "nameKr": "에틸렌글리콜 모노에틸에테르", + "nameEn": "Ethylene glycol monoethyl ether", + "synonymsEn": "2-Ethoxyethanol / Ethoxyethanol / ETHYL GLYCOL / ETHYLENE GLYCOL MONOETHYL ETHER / CELLOSOLVE / ETHYL CELLOSOLVE / EGEE / Ethanol, 2-ethoxy- / Glycol monoethyl ether / ETHYLENE GLYCOL ETHYL ETHER / ethoxyethano", + "synonymsKr": "에틸렌글리콜 모노에틸 에테르 / 에틸렌글리콜모노에틸에테르 / 2-에톡시에탄올 / 에틸글르콜 / 에틸렌글리콜에틸에테르 / 에틸셀로솔브 / 에톡시에탄올 / 2-에톡시에탄올(에틸렌글리콜모노에틸에터,이지엠이이) / 에틸렌글리콜모노에틸에터 / 에틸렌 글리콜 모노에틸 에테르 / 글리콜 에틸 에테르 / 셀로솔브", + "unNumber": "", + "casNumber": "110-80-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EGMEE", + "name": "Ethylene glycol monoethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 584, + "abbreviation": "EGMEEA", + "nameKr": "에틸렌 글리콜 모노에틸 에테르 아세테이트", + "nameEn": "Ethylene glycol monoethyl ether acetate", + "synonymsEn": "Ethylene glycol monoethyl ether acetate / EEA / ETHYL GLYCOL ACETATE / CELLOSOLVE ACETATE / 2-ETHOXYETHYL ACETATE / Ethoxyethyl acetate / ETHYL CELLOSOLVE ACETATE / Glycol monoethyl ether acetate / CSAC / egeea / ethoxyacetate", + "synonymsKr": "에틸셀로솔브아세테이트 / 에틸렌글리콜모노에틸에테르아세테이트 / 2-에톡시에탄올아세트산 / 2-에톡시에틸아세테이트 / 아세트산2-에톡시에탄올 / 에틸글리콜아세테이트 / 에틸셀로솔브아세테이트 / 에톡시에탄올아세테이트 / 에틸렌 글리콜 모노에틸 에테르 아세테이트", + "unNumber": "", + "casNumber": "111-15-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EGMEEA", + "name": "Ethylene glycol monoethyl ether acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 585, + "abbreviation": "EGMME", + "nameKr": "에틸렌글리콜 모노메틸에테르", + "nameEn": "Ethylene glycol monomethyl ether", + "synonymsEn": "2-Methoxyethanol / H2O / AMYL ALCOHOL / ETHYLENE GLYCOL MONOMETHYL ETHER / METHOXYETHANOL / DISTILLED WATER / Egme / METHYL CELLOSOLVE / GLYCOL MONOMETHYL ETHER / Methyl glycol / EGM", + "synonymsKr": "2-메톡시 에탄올 / 2-메톡시에탄올 / Monomethyletherofethyleneglycol,에탄올,2-메톡시2-메톡시에탄올 / 메틸셀로솔브 / 순수 / 증류수 / 에틸렌글라이콜모노메틸에터 / 메틸 셀로솔브 / 에틸렌 글리콜 모노메틸 에테르", + "unNumber": "", + "casNumber": "109-86-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EGMME", + "name": "Ethylene glycol monomethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 586, + "abbreviation": "EGMPE", + "nameKr": "에틸렌글리콜 모노페널 에테르", + "nameEn": "Ethylene glycol monophenyl ether", + "synonymsEn": "2-Phenoxyethanol / PHENOXYETHANOL / Ethanol, 2-phenoxy- / PhG / Phenoxyethyl alcohol / ETHYLENE GLYCOL PHENYL ETHER / Arosol / PHENOXETOL / phenoxyethanol[qr] / ROSE ETHER / Phenoxethol", + "synonymsKr": "2-페녹시에탄올 / 2-페녹시에탄올 / 에틸렌글리콜페닐에테르 / 페녹시에탄올 / 에틸렌글리콜페닐에테르 / (2-하이드록시에톡시)벤젠 / 2-하이드록시에틸 페닐 에테르 / 베타-페녹시에탄올 / 베타-하이드록시에틸 페닐 에테르 / 에틸렌 글리콜 페닐 에테르 / 에틸렌글리콜 모노페닐 에테르", + "unNumber": "", + "casNumber": "122-99-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EGMPE", + "name": "Ethylene glycol monophenyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 587, + "abbreviation": "EO", + "nameKr": "산화에틸렌", + "nameEn": "Ethylene oxide", + "synonymsEn": "ETHYLENE OXIDE / Oxane / eo / OXIRANE / C2H4O / ETO / Oxiran / Epoxyethane / Ethylene oxid / Oxacyclopropane / ethylene oxide solution", + "synonymsKr": "에틸렌옥사이드 / 산화에틸렌 / 산화에틸렌(가스) / 옥시란,디히드로옥시렌,에폭시메탄 / 에틸렌옥사이드 / 에틸렌 옥사이드 / 1,2-에폭시에탄", + "unNumber": "", + "casNumber": "75-21-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EO", + "name": "Ethylene oxide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 588, + "abbreviation": "EIM", + "nameKr": "에틸렌", + "nameEn": "Ethyleneimine", + "synonymsEn": "Ethylene / C2H4 / Ethen / R1150 / Ethylen / etileno / Elayl / R-1150 / Athylen / Acetene / ETHYLENE", + "synonymsKr": "에틸렌 / 폴리에틸렌 / 에틸렌 / 아세텐 / 에텐 / 엘라일 / 올레피안 가스", + "unNumber": "", + "casNumber": "74-85-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EIM", + "name": "Ethyleneimine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 589, + "abbreviation": "ECP", + "nameKr": "유칼립투스 오일", + "nameEn": "Eucalyptus oil", + "synonymsEn": "Eucalyptus oil / eucalyptus / Eucalyptus Oil 80% / Eucalyptus essential oil / OIL OF EUCALYPTUS / Eucalyprus Globulus Oil / OIL OF EUCALYPTUS CITRIODORA / EUCALYPTUS GLOBULUS LEAF OIL / anyou / D05327 / ingalipt", + "synonymsKr": "유칼립투스의 기름 / 유칼립투스의기름 / 유칼립투스의기름(OILOFEUCALYPTUS) / 유칼립투스잎오일", + "unNumber": "", + "casNumber": "8000-48-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ECP", + "name": "Eucalyptus oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 590, + "abbreviation": "EFT", + "nameKr": "우지 계통", + "nameEn": "Extra fancy tallow", + "synonymsEn": "·Fatty glyceride ·Edible tallow ·Animal tallow ·Horse fat tallow ·Beef tallow ·Stearin tallow ·Oleo tallow ·Mutton tallow ·Sheep fat tallow ·Tallow A1 grade ·Soap grade", + "synonymsKr": "Fatty 글리세라이드 ·Edible 탈로우 ·Animal 탈로우 ·Horse fat 탈로우 ·Beef 탈로우 ·Stearin 탈로우 ·Oleo 탈로우 ·Mutton 탈로우 ·Sheep fat 탈로우", + "unNumber": "", + "casNumber": "61789-97-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EFT", + "name": "Extra fancy tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 591, + "abbreviation": "EXA10", + "nameKr": "알코올 혼합물", + "nameEn": "EXXAL10", + "synonymsEn": "Isodecanol / Isodecanol / Einecs 271-234-0 / isocapric alcohol / Alcohol (Isodecanol) / c9-11-iso-alcoholc10-rich / Alcohols,C9-11-iso,C10-rich / Alcohols,C9-11-iso-,C10-rich / Alcohols, C9-11-iso-, C1o-rich / Low foam isomeric alcohol ether / 8-Methylnonan-1-ol,98%(mixtures)", + "synonymsKr": "알코올, C9-11-이소-, C10-RICH / 알코올,C9-11-아이소-,C10-리치 / 알코올,C9-11-이소-,C10-RICH / 알코올,C9-11-아이소-,C10-리치", + "unNumber": "", + "casNumber": "68526-85-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXA10", + "name": "EXXAL10", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 592, + "abbreviation": "EXA9", + "nameKr": "알코올 혼합물", + "nameEn": "EXXAL9", + "synonymsEn": "·Isononanol containing ·Exxal 9 ·Alphanol 900 ·Alphanol 910 ·INA ·INA(CFB) ·Isonanol ·Isonanol CFB ·Isononanol ·Isononyl alcohol", + "synonymsKr": "·아이소노난올을 포함함 ·알판올 900 ·알판올 910 ·아이소난올 ·아이소난올 CFB ·아이소노난올 ·아이소노닐 알코올", + "unNumber": "1993", + "casNumber": "68526-84-1", + "transportMethod": "", + "sebc": "", + "usage": "화장품, 의료, 전자 제품 세정 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXA9", + "name": "EXXAL9", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 593, + "abbreviation": "EXO100", + "nameKr": "하드로처리된 경 나프나", + "nameEn": "EXXOL DSP 100/140", + "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", + "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", + "unNumber": "", + "casNumber": "64742-49-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXO100", + "name": "EXXOL DSP 100/140", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 594, + "abbreviation": "EXO80", + "nameKr": "하드로처리된 경 나프나", + "nameEn": "EXXOL DSP 80/110", + "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", + "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", + "unNumber": "", + "casNumber": "64742-49-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXO80", + "name": "EXXOL DSP 80/110", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 595, + "abbreviation": "EPT76A", + "nameKr": "", + "nameEn": "EXX-PRINT T76A", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EPT76A", + "name": "EXX-PRINT T76A", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 596, + "abbreviation": "EXSD100", + "nameKr": "하드로처리된 경 증류(용제)", + "nameEn": "EXXSOL D 100", + "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", + "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", + "unNumber": "", + "casNumber": "64742-47-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXSD100", + "name": "EXXSOL D 100", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 597, + "abbreviation": "EXSD220", + "nameKr": "하드로처리된 경 증류(용제)", + "nameEn": "EXXSOL D220/230", + "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", + "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", + "unNumber": "", + "casNumber": "64742-47-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXSD220", + "name": "EXXSOL D220/230", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 598, + "abbreviation": "EXSD30", + "nameKr": "히드로처리된 중 나프타(용제)", + "nameEn": "EXXSOL D30", + "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", + "unNumber": "", + "casNumber": "64742-48-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXSD30", + "name": "EXXSOL D30", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 599, + "abbreviation": "EXSD40", + "nameKr": "히드로처리된 중 나프타(용제)", + "nameEn": "EXXSOL D40", + "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", + "unNumber": "", + "casNumber": "64742-48-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXSD40", + "name": "EXXSOL D40", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 600, + "abbreviation": "EXSD80", + "nameKr": "하드로처리된 경 증류(용제)", + "nameEn": "EXXSOL D80", + "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", + "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", + "unNumber": "", + "casNumber": "64742-47-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXSD80", + "name": "EXXSOL D80", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 601, + "abbreviation": "EXHPT", + "nameKr": "히드로처리된 중 나프타(석유)", + "nameEn": "EXXSOL Heptane", + "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", + "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", + "unNumber": "", + "casNumber": "64742-49-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXHPT", + "name": "EXXSOL Heptane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 602, + "abbreviation": "EXIHX", + "nameKr": "히드로처리된 중 나프타(석유)", + "nameEn": "EXXSOL Isohexane", + "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", + "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", + "unNumber": "", + "casNumber": "64742-49-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXIHX", + "name": "EXXSOL Isohexane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 603, + "abbreviation": "FA12", + "nameKr": "라우르산", + "nameEn": "FA C12", + "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", + "synonymsKr": "라우르산 / 라우르산 / 도데카노익산 / 라우릭산 / 라우릭애씨드 / 도데칸산 / 1-운데케인카복실산 / n-도데칸산 / 데다콘산 / 도데실산 / 도데칸 산 / 도데코 산 / 도데크산 / 듀오-디시클릭 산 / 라우로스테아르 산 / 로로스테아르산 / 로르산 / 하이드로폴 산 1255", + "unNumber": "", + "casNumber": "143-07-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FA12", + "name": "FA C12", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 604, + "abbreviation": "FA12/14", + "nameKr": "알코올, C12-14 에톡실산화", + "nameEn": "FA C12-14", + "synonymsEn": "LAURETH-4 / LAURETH-4 / Alcohols, C12-14, ethoxylated / LA EO/PO / AEO-7-9-10 / Dehydol LS 2 / Syntanol ES 3 / Penetrant JFC / Synperonic L 7 / Syntanol ALM 8 / Tergitol 24L50", + "synonymsKr": "알코올, C12-14, 에톡실산화 / 알코올,C12-14,에톡실산화 / 알코올,C12-14,에톡실산화 / C12-14파레스-12 / C12-14파레스-3 / C12-14파레스-5 / C12-14파레스-7 / C12-14파레스-9 / 라우레스-21 / C12-14, 알코올 (2EO) 에톡실레이티드 / 알코올 C12-14,에톡실레이티드 / 알코올, C12-14, 에톡실레이트 / 에톡실레이티드 알코올 (C = 12-14)", + "unNumber": "", + "casNumber": "68439-50-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FA12/14", + "name": "FA C12-14", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 605, + "abbreviation": "FA12/16", + "nameKr": "알코올, C12-16", + "nameEn": "FA C12-16", + "synonymsEn": "Alcohols, C12-16 / C12-16 ALCOHOLS / Alcohols, C12-16 / Alkohole, C12-16 / Cetyl/dodecyl alcohol", + "synonymsKr": "알코올, C12-16 / 알코올,C12-16 / 알코올,C12-16 / C12-16알코올", + "unNumber": "", + "casNumber": "68855-56-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FA12/16", + "name": "FA C12-16", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 606, + "abbreviation": "FA12/18", + "nameKr": "", + "nameEn": "FA C12-18", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FA12/18", + "name": "FA C12-18", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 607, + "abbreviation": "FA14", + "nameKr": "", + "nameEn": "FA C14", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FA14", + "name": "FA C14", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 608, + "abbreviation": "FA16", + "nameKr": "", + "nameEn": "FA C16", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FA16", + "name": "FA C16", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 609, + "abbreviation": "FA18", + "nameKr": "", + "nameEn": "FA C18", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FA18", + "name": "FA C18", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 610, + "abbreviation": "FA6/12", + "nameKr": "", + "nameEn": "FA C6-12", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FA6/12", + "name": "FA C6-12", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 611, + "abbreviation": "FLO", + "nameKr": "대구 간유", + "nameEn": "Fish liver oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8009-00-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FLO", + "name": "Fish liver oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 612, + "abbreviation": "FISH", + "nameKr": "생선 기름", + "nameEn": "Fish oil", + "synonymsEn": "Fish oil / Krill oil / Promega / Omega-3 Oil / Oils, fish / Fish oil DHA/EPA / Fish oil USP/EP/BP / Fsh oil / Fish oil / Oele, Fisch- / Fish Oil (1 g)", + "synonymsKr": "어류오일 / 어류오일 / 어유", + "unNumber": "", + "casNumber": "8016-13-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FISH", + "name": "Fish oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 613, + "abbreviation": "FDH", + "nameKr": "포름알데히드", + "nameEn": "Formaldehyde", + "synonymsEn": "Formaldehyde / FORMALIN / HCHO / CH2O / Formaldehyd / METHANAL / METHANONE / FORMALDEHYDE SOLUTION / Methylene glycol / Formaline / H2CO", + "synonymsKr": "포르말린 / 폼알데하이드 / 포르말린 / 포름알데히드 / 포름알데히드수용액 / 포름알데히드수용액(37%) / 폼알데하이드용액 / 포름알데하이드 / 메탄알 / 포르말리트 / 포름알데히드용액 / 포름올", + "unNumber": "", + "casNumber": "50-00-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FDH", + "name": "Formaldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 614, + "abbreviation": "FMM", + "nameKr": "포름아미드", + "nameEn": "Formamide", + "synonymsEn": "Formamide / HCONH2 / METHANAMIDE / Formamid / formimidicacid / Formaride / Formylamide / FORMIC AMIDE / CARBAMALDEHYDE / Formimidic acid / Residual Solvent Class 2 - Formamide", + "synonymsKr": "포름아미드 / 포름아미드 / 메탄아미드 / 포르미미딕산 / 카르밤알데히드 / 카르밤알데히드 / 메탄아미드 / 포르미미딕산 / 폼아마이드 / 메탄아마이드 / 카밤알데하이드 / 폼이미드산", + "unNumber": "", + "casNumber": "75-12-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FMM", + "name": "Formamide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 615, + "abbreviation": "FMA", + "nameKr": "개미산", + "nameEn": "Formic acid", + "synonymsEn": "Formic acid / HCOOH / jiasuan / formic / METHANONE / FORMALDEHYDE SOLUTION / Methanoic acid / Acide formique / Formic acid 90% / FORMOL / Acido formico", + "synonymsKr": "개미산 / 포름산 / 개미산 / 메타노산 / 포름산(86%이상) / 포믹애씨드 / 폼산", + "unNumber": "", + "casNumber": "64-18-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FMA", + "name": "Formic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 616, + "abbreviation": "FRBDPO", + "nameKr": "팜유", + "nameEn": "Fractinated R.B.D. palm oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "93334-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FRBDPO", + "name": "Fractinated R.B.D. palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 617, + "abbreviation": "FRUCIOSE", + "nameKr": "과당", + "nameEn": "Fruciose", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "57-48-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FRUCIOSE", + "name": "Fruciose", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 618, + "abbreviation": "FO", + "nameKr": "연료유", + "nameEn": "Fuel oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "68476-33-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FO", + "name": "Fuel oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 619, + "abbreviation": "FHPS", + "nameKr": "하이드록시 오일(팜)", + "nameEn": "Fully hydrogeterated palm stearine", + "synonymsEn": "Oils, palm, hydrogenated / GV 60 / PW 50 / IHP 58 / Dub HPH / F 3 Oil / Nutresca / DUB-PPE 3 / Akofine P / UmFeed 131 / Nomcort PHS", + "synonymsKr": "하이드록시 오일(팜) / 하이드록시오일(팜) / 하이드록시오일(팜) / 하이드로제네이티드팜오일", + "unNumber": "", + "casNumber": "68514-74-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FHPS", + "name": "Fully hydrogeterated palm stearine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 620, + "abbreviation": "FRPO", + "nameKr": "완전 정제된 팜유", + "nameEn": "Fully refined palm oil", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FRPO", + "name": "Fully refined palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 621, + "abbreviation": "FRPL", + "nameKr": "완전 정제된 팜 올레인", + "nameEn": "Fully refined palm olein", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FRPL", + "name": "Fully refined palm olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 622, + "abbreviation": "FRPS", + "nameKr": "완전 정제된 파인 스테아린", + "nameEn": "Fully refined palm stearin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "91079-14-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FRPS", + "name": "Fully refined palm stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 623, + "abbreviation": "FRRSO", + "nameKr": "완전 정제된 채종유", + "nameEn": "Fully refined rapeseed oil", + "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", + "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", + "unNumber": "", + "casNumber": "8002-13-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FRRSO", + "name": "Fully refined rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 624, + "abbreviation": "FRSBO", + "nameKr": "완전 정제된 대두유", + "nameEn": "Fully refined soya bean oil", + "synonymsEn": "Soybean oil / soybean / SOYASAPONIN / Soy oil / SOYA OIL / CAP 18 (oil) / SOYBEAN POLAR LIPID EXTRACT / A6OIL / CAP 18 / D04962 / HY 3050", + "synonymsKr": "대두 기름 / 대두기름 / 대두기름(SOYBEANOIL) / 돌콩오일 / 대두유", + "unNumber": "", + "casNumber": "8001-22-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FRSBO", + "name": "Fully refined soya bean oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 625, + "abbreviation": "FFL", + "nameKr": "푸르푸랄", + "nameEn": "Furfural", + "synonymsEn": "Furfural / Furan-2-carbaldehyde / 2-FURANCARBOXALDEHYDE / 2-FURALDEHYDE / 2-Furfural / Furol / FURALDEHYDE / FURFURALDEHYDE / furfurol / 2-FURANCARBOXYALDEHYDE / FCHO", + "synonymsKr": "푸르푸랄 / 푸르푸랄 / 2-푸란알데히드 / 2-푸릴-메탄알 / 2-푸릴알데히드 / 아티피샬안트오일 / 푸랄 / 푸르푸르롤 / 푸르푸르알데히드 / 푸르푸르올 / 피로뮤식알데히드 / 2-포르밀푸란 / 2-푸란카르보날 / 2-푸란카르복알데히드 / 2-푸르알데히드 / 2-푸르푸랄 / 알파-푸르올 / 퍼퓨랄", + "unNumber": "", + "casNumber": "98-01-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FFL", + "name": "Furfural", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 626, + "abbreviation": "FUSEL", + "nameKr": "퓨젤 오일", + "nameEn": "Fusel oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8013-75-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FUSEL", + "name": "Fusel oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 627, + "abbreviation": "GSLN", + "nameKr": "휘발유", + "nameEn": "Gasoline", + "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH", + "synonymsKr": "휘발유 / 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", + "unNumber": "", + "casNumber": "8006-61-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GSLN", + "name": "Gasoline", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 628, + "abbreviation": "1TCN", + "nameKr": "휘발유", + "nameEn": "Genklene", + "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH", + "synonymsKr": "휘발유 / 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", + "unNumber": "", + "casNumber": "8006-61-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "1TCN", + "name": "Genklene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 629, + "abbreviation": "GCSSRP", + "nameKr": "글루코스 시럽", + "nameEn": "Glucose syrup", + "synonymsEn": "CORN SYRUP / MAIZESYRUP / CORN SYRUP / GLUCOSE SYRUP / Corn sugar syrup / Glucose Syrup, FCC / CORN SYRUP (GLUCOSE) / Corn Syrup DE 42 (2 g) / Syrups,hydrolyzedstarch / FruitglucosesyrupmodelF42 / Corn Syrup:Glucose liquid", + "synonymsKr": "옥수수시럽 / 옥수수시럽", + "unNumber": "", + "casNumber": "8029-43-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GCSSRP", + "name": "Glucose syrup", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 630, + "abbreviation": "GTA", + "nameKr": "글루타르알데하드", + "nameEn": "Glutaraldehyde", + "synonymsEn": "Glutaraldehyde / Gluteraldehyde / glutaral / GLUTARIC DIALDEHYDE / 1,5-PENTANEDIAL / Pentanedial / GDA / GLUTARDIALDEHYDE / Aqucar / PENTANDIAL / GLUTARADEHYDE", + "synonymsKr": "글루탈알데히드 / 글루타르알데하이드 / 글루타르알데히드 / 글루탈알데히드 / 1,5-펜탄디온 / 1,5-펜탄디알 / 글루타르디알데히드 / 글루타랄 / 포텐티 / 글루타랄 / 글루탈알 / 1,3-디포르밀프로판 / 글루타디알데하이드 / 글루타릭 디알데하이드 / 글루타알데하이드 / 글루타알데히드 / 1,5-펜테네디알", + "unNumber": "", + "casNumber": "111-30-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GTA", + "name": "Glutaraldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 631, + "abbreviation": "GOX", + "nameKr": "글리옥살(40%)", + "nameEn": "Glyoxal solution (40%)", + "synonymsEn": "Glyoxal / Oxalaldehyde / Oxaldehyde / GLYOXA / ETHANEDIAL / GLYOXAL SOLUTION / (CHO)2 / Ethandial / DIFORMYL / Ethanedione / Glyoxal aqueous solution", + "synonymsKr": "글리옥살 / 글리옥살 / 디포밀,질산디알데히드 / 글리옥살알데히드 / 옥살알데히드 / 1,2-에탄디온 / 에탄디온 / 비포르말 / 디포르밀 / 글라이옥살", + "unNumber": "", + "casNumber": "107-22-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GOX", + "name": "Glyoxal solution (40%)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 632, + "abbreviation": "GRJUC", + "nameKr": "농축포도주스", + "nameEn": "Grape juice concentrate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "-", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GRJUC", + "name": "Grape juice concentrate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 633, + "abbreviation": "GRSO", + "nameKr": "포도씨오일", + "nameEn": "Grapeseed oil", + "synonymsEn": "Grape seed oil / Oils,grape / Traubenkernoel / Grape seed oil / Grape seed oil / Raw Grapeseed Oil / Grape stem extract / 98% Raw Grapeseed Oil / VITIS VINIFERA (GRAPE) SEED OIL / Wholesale price cold pressed Grape seed oil _8024-22-4", + "synonymsKr": "포도씨오일 / 포도씨오일", + "unNumber": "", + "casNumber": "8024-22-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GRSO", + "name": "Grapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 634, + "abbreviation": "GNO", + "nameKr": "땅콩 기름", + "nameEn": "Ground nut oil", + "synonymsEn": "PEANUT OIL / PEANUT OIL / ARACHIS OIL / katchungoil / earthnutoil / ARACHIDICOIL / OIL OF PEANUT / GROUND NUT OIL / REFINEDPEANUTOIL / Peanut Oil (AS) / Peanut Oil (1 g)", + "synonymsKr": "땅콩 기름 / 땅콩기름 / 땅콩기름(PEANUTOIL) / 땅콩오일 / 땅콩 기름", + "unNumber": "", + "casNumber": "8002-03-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GNO", + "name": "Ground nut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 635, + "abbreviation": "GTPT", + "nameKr": "고무 테레빈유", + "nameEn": "Gum turpentine", + "synonymsEn": "Turpentine / Galipot / Pine gum / Petropine / Turpentine / Pine resin / TURPENTINEGUM / Fema no. 3088 / Einecs 232-688-5 / Turpentine (Gum based) / TAINFUCHEM: Turpentine", + "synonymsKr": "고무 테레빈유 / 고무테레빈유 / 고무테레빈유(GUMSPIRITSOFTURPENTINE) / 과산화물가가10mmol/L을초과하는터펜틴검(소나무(Pinus)속) / 터펜틴검", + "unNumber": "", + "casNumber": "9005-90-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GTPT", + "name": "Gum turpentine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 636, + "abbreviation": "HZLNUT", + "nameKr": "헤이즐넛 오일", + "nameEn": "Hazelnut oil", + "synonymsEn": "Hazel, Corylus avellana, ext. / Hazel extract / Hazelnutextract / HAZELNUT BUTTER / Unii-iw0om96F6o / Einecs 281-667-7 / Extract of hazel / European hazel extract / CORYLUSAVELLANASEEDEXTRACT / CORYLUSAVELLANALEAFEXTRACT / european hazelnut absolute", + "synonymsKr": "유럽개암씨추출물 / 유럽개암씨추출물 / 유럽개암잎추출물 / 개암씨추출물 / 개암잎추출물 / 유럽개암껍질가루 / 개암잎수", + "unNumber": "", + "casNumber": "84012-21-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HZLNUT", + "name": "Hazelnut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 637, + "abbreviation": "HBR", + "nameKr": "브롬화수소산", + "nameEn": "HBR", + "synonymsEn": "Hydrogen bromide / HBR / HBR/ACOH / bromane / Hydrobromic / hydrobroMic acid in acetic acid / Bromwasserstoff / hydrobromic acid 48% / Hydrogen bromide solution / Hydrogen bromide in acetic acid / Hydrog", + "synonymsKr": "브롬화수소 / 브롬화수소산 / 브로민화수소(브롬화수소) / 브롬화수소 / 브롬화수소산수용액 / 브롬산 / 하이드로브롬산 / 무수하이드로브롬산 / 하이드로브로믹애씨드 / 브롬화 수소", + "unNumber": "", + "casNumber": "10035-10-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HBR", + "name": "HBR", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 638, + "abbreviation": "HCAO", + "nameKr": "HEA 카놀라 오일", + "nameEn": "HEA Canola oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "120962-03-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HCAO", + "name": "HEA Canola oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 639, + "abbreviation": "HEARSO", + "nameKr": "HEA 채종유", + "nameEn": "HEA Rapeseed oil", + "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", + "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", + "unNumber": "", + "casNumber": "8002-13-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HEARSO", + "name": "HEA Rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 640, + "abbreviation": "HEATOIL", + "nameKr": "보일러 등유", + "nameEn": "Heating oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "68410-29-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HEATOIL", + "name": "Heating oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 641, + "abbreviation": "BAB", + "nameKr": "도데실벤젠", + "nameEn": "Heavy detergent feedstock", + "synonymsEn": "DODECYLBENZENE / ALKYLBENZENE / LAURYLBENZENE / PHENYLDODECANE / N-LAURYLBENZENE / N-DODECYLBENZENE / 1-PHENYLDODECANE / Tetrapropylenbenzol / tetrapropylene-benzen / tetrapropylene-Benzene / Benzene, tetrapropylene-", + "synonymsKr": "도데실벤젠 / 테트라프로필렌벤젠", + "unNumber": "3077", + "casNumber": "25265-78-5", + "transportMethod": "", + "sebc": "", + "usage": "합성 세제, 유지화학물질, 윤활유, 방수제 등 플라스틱 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BAB", + "name": "Heavy detergent feedstock", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 642, + "abbreviation": "HDF", + "nameKr": "도데실벤젠", + "nameEn": "Heavy detergent feedstock", + "synonymsEn": "DODECYLBENZENE / ALKYLBENZENE / LAURYLBENZENE / PHENYLDODECANE / N-LAURYLBENZENE / N-DODECYLBENZENE / 1-PHENYLDODECANE / Tetrapropylenbenzol / tetrapropylene-benzen / tetrapropylene-Benzene / Benzene, tetrapropylene-", + "synonymsKr": "도데실벤젠 / 테트라프로필렌벤젠", + "unNumber": "3077", + "casNumber": "25265-78-5", + "transportMethod": "", + "sebc": "", + "usage": "합성 세제, 유지화학물질, 윤활유, 방수제 등 플라스틱 가소제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HDF", + "name": "Heavy detergent feedstock", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 643, + "abbreviation": "HEND", + "nameKr": "", + "nameEn": "Heavy end", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HEND", + "name": "Heavy end", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 644, + "abbreviation": "HEPTANE", + "nameKr": "헵테인", + "nameEn": "Heptane", + "synonymsEn": "Heptane / N-HEPTANE / heptanes / Heptan / 1-HEPTANE / NORMAL HEPTANE / Aliphatic hydrocarbon / Gettysolve-C / Dipropylmethane / heptane(n-heptane) / Eptani", + "synonymsKr": "헵테인 / 노르말헵탄 / 노르말헵탄(NORMALHEPTANE) / 헵탄 / 헵테인 / 헵테인(헵탄) / n-헵탄", + "unNumber": "1206", + "casNumber": "142-82-5", + "transportMethod": "", + "sebc": "", + "usage": "고무 생산 및 가고처리 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HEPTANE", + "name": "Heptane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 645, + "abbreviation": "HEPACID", + "nameKr": "헵틸릭 산", + "nameEn": "Heptanoic acid", + "synonymsEn": "Heptanoic acid / N-HEPTANOIC ACID / C7 / ENANTHIC ACID / heptanoic / HEPTYLIC ACID / OENANTHIC ACID / Enanthoic Acid / FEMA 3348 / hexacidc-7 / Amylacetat", + "synonymsKr": "헵틸릭 산 / 헵탄산 / 헵틸릭산 / 헵틸릭산", + "unNumber": "", + "casNumber": "111-14-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HEPACID", + "name": "Heptanoic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 646, + "abbreviation": "HPTNL", + "nameKr": "n-햅탄올", + "nameEn": "Heptanol", + "synonymsEn": "1-Heptanol / HEPTANOL / N-HEPTANOL / HEPTAN-1-OL / HEPTYL ALCOHOL / Enanthol / ALCOHOL C7 / 1-HeptanoI / n-Heptan-1-ol / Gentanol / n-C7H15OH", + "synonymsKr": "n-헵탄올 / 1-헵탄올 / n-헵탄올 / n-헵틸알코올", + "unNumber": "", + "casNumber": "111-70-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPTNL", + "name": "Heptanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 647, + "abbreviation": "HERO", + "nameKr": "", + "nameEn": "Herring oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HERO", + "name": "Herring oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 648, + "abbreviation": "HMDADI", + "nameKr": "헥사메틸렌디아민아디페이트", + "nameEn": "Hexamethylenediamine adipate solution", + "synonymsEn": "hexamethylenediamine adipate / Hexane-1,6-diamine xadipate / hexamethylenediamine adipate / Hexanedioic acid/1,6-hexanediamine / 1,6-Hexanediamine/adipic acid,(1:x)", + "synonymsKr": "헥사메틸렌디아민아디페이트 / 헥사메틸렌디아민아디페이트", + "unNumber": "", + "casNumber": "15511-81-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HMDADI", + "name": "Hexamethylenediamine adipate solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 649, + "abbreviation": "HMI", + "nameKr": "헥사메틸렌이민", + "nameEn": "Hexamethyleneimine", + "synonymsEn": "Hexamethyleneimine / Azepan / HMI / AZACYCLOHEPTANE / g0 / 0402 / PERHYDROAZEPINE / HEXAHYDROAZEPINE / HEXAMETHYLENIMINE / 1-Azacycloheptane / G 0", + "synonymsKr": "헥사메틸렌이민 / 헥사메틸렌이민", + "unNumber": "", + "casNumber": "111-49-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HMI", + "name": "Hexamethyleneimine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 650, + "abbreviation": "HXN1", + "nameKr": "1-헥센", + "nameEn": "Hexane-1", + "synonymsEn": "1-Hexene / Hexene / Hexen / Hexene-1 / HEX-1-ENE / Hexylene / Hexedrone / N-HEXENE / 1-Hexen / 1-C6H12 / 1-HEXENE", + "synonymsKr": "1-헥센 / 1-헥센 / 헥실렌", + "unNumber": "2370", + "casNumber": "592-41-6", + "transportMethod": "", + "sebc": "", + "usage": "고밀도 플리에틸렌 등 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HXN1", + "name": "Hexane-1", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 651, + "abbreviation": "HEXACID", + "nameKr": "헥산산", + "nameEn": "Hexanoic acid", + "synonymsEn": "Hexanoic acid / CAPROIC ACID / C6 / N-CAPROIC ACID / N-HEXANOIC ACID / 1-Hexanoic acid / N-CAPROATE / Natural Caproic Acid / CAPROIC ACID, NATURAL / Hexanoic Acid 〔n-Caproic Acid〕 / NA-1706", + "synonymsKr": "핵산산 / n-카프론산 / 카프로인산 / 핵산산 / 카프로산 / 카프론산 / 헥산오익산 / 부틸아세틱산 / N-헥산오익산 / 펜티포름산 / 부틸아세트산 / 카프로익애씨드", + "unNumber": "", + "casNumber": "142-62-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HEXACID", + "name": "Hexanoic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 652, + "abbreviation": "HEXENE", + "nameKr": "헥실렌", + "nameEn": "Hexene", + "synonymsEn": "1-Hexene / Hexene / Hexen / Hexene-1 / HEX-1-ENE / Hexylene / Hexedrone / N-HEXENE / 1-Hexen / 1-C6H12 / 1-HEXENE", + "synonymsKr": "1-헥센 / 1-헥센 / 헥실렌", + "unNumber": "2370", + "casNumber": "592-41-6", + "transportMethod": "", + "sebc": "", + "usage": "고밀도 플리에틸렌 등 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HEXENE", + "name": "Hexene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 653, + "abbreviation": "HXG", + "nameKr": "헥실렌 글리콜", + "nameEn": "Hexylene glycol", + "synonymsEn": "2-Methyl-2,4-pentanediol / HEXYLENE GLYCOL / MPD / 2-METHYLPENTANE-2,4-DIOL / 3-METHYL-2,4-PENTANEDIOL / 4-MPD / Hexalene glycol / Isol / HEXASOL / Diolane / Pinadon", + "synonymsKr": "헥실렌글리콜 / 헥실렌글리콜 / 헥실렌글라이콜 / 2-메틸-2,4-펜탄디올 / 2,4-디하이드록시-2-메틸펜탄 / 1,2-헥산디올 / 2-메틸-2,4-펜탄다이올 / 2-메틸-2,4-펜타네다이올", + "unNumber": "", + "casNumber": "107-41-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HXG", + "name": "Hexylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 654, + "abbreviation": "HOCAN", + "nameKr": "고올레산 캔OLA유", + "nameEn": "High oleic canola oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "120962-03-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HOCAN", + "name": "High oleic canola oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 655, + "abbreviation": "HOSAFF", + "nameKr": "잇꽃씨오일", + "nameEn": "High oleic safflowerseed oil", + "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", + "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", + "unNumber": "", + "casNumber": "8001-23-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HOSAFF", + "name": "High oleic safflowerseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 656, + "abbreviation": "HTC9300", + "nameKr": "", + "nameEn": "HiTEC 9300", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HTC9300", + "name": "HiTEC 9300", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 657, + "abbreviation": "HONEY", + "nameKr": "꿀", + "nameEn": "Honey", + "synonymsEn": "Honey / mel / HONEY / SOYHONEY / MANUKAHONEY / FORESTHONEY / CLOVERHONEY / Honey [JAN] / TUPELOHONEY / ACACIAHONEY / CANADIANHONEY", + "synonymsKr": "꿀 / 꿀 / 벌꿀", + "unNumber": "", + "casNumber": "8028-66-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HONEY", + "name": "Honey", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 658, + "abbreviation": "HVI160B", + "nameKr": "파라핀계 베이스 오일", + "nameEn": "HVI 160B", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HVI160B", + "name": "HVI 160B", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 659, + "abbreviation": "HVI60", + "nameKr": "파라핀계 베이스 오일", + "nameEn": "HVI 60", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HVI60", + "name": "HVI 60", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 660, + "abbreviation": "HVI65", + "nameKr": "파라핀계 베이스 오일", + "nameEn": "HVI 65", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HVI65", + "name": "HVI 65", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 661, + "abbreviation": "HVI650", + "nameKr": "파라핀계 베이스 오일", + "nameEn": "HVI 650", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HVI650", + "name": "HVI 650", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 662, + "abbreviation": "HPHNL", + "nameKr": "이온 페놀", + "nameEn": "Hydrated phenol", + "synonymsEn": "Phenol / PhOH / CARBOLIC ACID / Fenol / PHENOL CRYSTALS / Phenol, water saturated, stabilized / Benzophenol / HYDROXYBENZENE / LIQUEFIEDPHENOL,LIQUEFIED,USP / PHENIC ACID / LIQUIFIED PHENOL", + "synonymsKr": "페놀 / 페놀 / 모노페놀 / 모노히드록시벤젠 / 벤젠올 / 페닌산 / 페닐수산화물 / 페닐알코올 / 히드록시벤젠 / 모노하이드록시벤젠 / 석탄산 / 옥시벤젠 / 카르볼산 / 페닐산 / 펜산 / 하이드록시벤젠", + "unNumber": "", + "casNumber": "108-95-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPHNL", + "name": "Hydrated phenol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 663, + "abbreviation": "HF", + "nameKr": "불산 용액", + "nameEn": "Hydrofluoric acid solution", + "synonymsEn": "Hydrogen fluoride / HF / HYDROFLUORIC ACID / Anhydrous hydrofluoric acid / hydrofluoric / Urea Hydrofluoride / HydrofL / Fluoric acid / Hydrofluoride / Hydrofluoric acid(HF) / Hydrofluoric Acid, TraceGrade", + "synonymsKr": "불산 / 플루오르화수소산 / OHS여301 / 히드로플루오릭산(HYDROFLUORICACID) / 불산 / 불화수소 / 불화수소산 / 수소플루오르화 / 하이드로플루오릭산 / 무수불화수소산 / 하이드로플루오릭애씨드 / 하이드로플루오릭애씨드,그노르말염,그착화합물및하이드로플루오라이드 / 플루오르화 수소 / 플루오르화수소", + "unNumber": "", + "casNumber": "7664-39-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HF", + "name": "Hydrofluoric acid solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 664, + "abbreviation": "HPEROXD", + "nameKr": "과산화수소", + "nameEn": "Hydrogen peroxide", + "synonymsEn": "·Hydrogen peroxide solution 60-90 % ·Albone ·Albone DS ·Hioxyl ·Hydrogen dioxide ·Hydrogen dioxide solution ·Hydrogen peroxide solution ·Hydroperoxide ·Inhibine ·Perhydrol ·Perossido di idrogeno(ITALIAN) ·Peroxaan ·Peroxan ·Peroxide ·Peroxyde d'hydrogene(FRENCH) ·Superoxol ·Wasserstoffperoxid(GERMAN) ·Waterstofperoxyde(DUTCH) ·Dihydrogen dioxide ·Hydrogen peroxide, solution(over 52 % peroxide) ·Hydrogen peroxide, stabilised(over 60 % peroxide) ·Oxydol ·Perone ·T-stuff", + "synonymsKr": "·과산화수소 용액 60-90 % ·알본 ·알본 DS ·하이옥실 ·이산화수소 ·이산화수소 용액 ·과산화수소 용액 ·하이드로퍼옥사이드 ·인히빈 ·농축 과산화수소 ·퍼로사안 ·퍼옥산 ·과산화물 ·수퍼옥살 ·이산화 이수소 ·과산화수소 용액 (약 52 %의 과산화수소) ·안정된 과산화수소 (약 60 %의 과산화수소) ·옥시돌 ·페론 ·T-스터프", + "unNumber": "1", + "casNumber": "7722-84-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPEROXD", + "name": "Hydrogen peroxide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 665, + "abbreviation": "HCNO", + "nameKr": "수소화 코코넛 오일", + "nameEn": "Hydrogenated coconut oil", + "synonymsEn": "Coconut oil, hydrogenated / Einecs 284-283-8 / Kokosnuoel, hydriert / Coconut oil, hardened / Copra oil, hydrogenated / HYDROGENATED COCONUT OIL / FULLYHYDROGENATEDCOCONUTOIL / Coconut oil, hydrogenated ISO 9001:2015 REACH / Hydrogenated vegetable oils, hydrogenated coconut oil", + "synonymsKr": "수소화된 코코넛오일 / 수소화된코코넛오일 / 수소화된코코넛오일 / 하이드로제네이티드코코넛오일", + "unNumber": "", + "casNumber": "84836-98-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HCNO", + "name": "Hydrogenated coconut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 666, + "abbreviation": "HCORN", + "nameKr": "수소화 옥수수 오일", + "nameEn": "Hydrogenated corn oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "68525-87-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HCORN", + "name": "Hydrogenated corn oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 667, + "abbreviation": "HPFA", + "nameKr": "수소화 아메리카오일팜열매오일", + "nameEn": "Hydrogenated palm fatty acid distillate", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPFA", + "name": "Hydrogenated palm fatty acid distillate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 668, + "abbreviation": "HPKFA", + "nameKr": "수소화된 참나무 지방산", + "nameEn": "Hydrogenated palm kernel fatty acid", + "synonymsEn": "Fatty acids, C12-18 / Fatty acids, C12-18", + "synonymsKr": "지방산, / 지방산, / 지방산,(C=12-18)", + "unNumber": "", + "casNumber": "67701-01-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPKFA", + "name": "Hydrogenated palm kernel fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 669, + "abbreviation": "HPKS", + "nameKr": "수소화 팜커널 스테아린 오일", + "nameEn": "Hydrogenated palm kernel stearin", + "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", + "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", + "unNumber": "", + "casNumber": "8023-79-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPKS", + "name": "Hydrogenated palm kernel stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 670, + "abbreviation": "HPL", + "nameKr": "수소화 팜오일", + "nameEn": "Hydrogenated palm olein", + "synonymsEn": "Oils, palm, hydrogenated / GV 60 / PW 50 / IHP 58 / Dub HPH / F 3 Oil / Nutresca / DUB-PPE 3 / Akofine P / UmFeed 131 / Nomcort PHS", + "synonymsKr": "하이드록시 오일(팜) / 하이드록시오일(팜) / 하이드록시오일(팜) / 하이드로제네이티드팜오일", + "unNumber": "", + "casNumber": "68514-74-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPL", + "name": "Hydrogenated palm olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 671, + "abbreviation": "HRSO", + "nameKr": "수소화 유채유 오일", + "nameEn": "Hydrogenated rapeseed oil", + "synonymsEn": "Rape oil, hydrogenated / Rapsoel, hydriert / Rape oil, hydrogenated", + "synonymsKr": "하이드로제네이티드채종유 / 하이드로제네이티드채종유 / 유채기름,수소화", + "unNumber": "", + "casNumber": "84681-71-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HRSO", + "name": "Hydrogenated rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 672, + "abbreviation": "HN40HT", + "nameKr": "변압기유(제품명)", + "nameEn": "Hynap N40HT", + "synonymsEn": "·8, distillates (petroleum), hydrotreated (severe) light naphthenic, hydrotreated (severe) light naphthenic distillate, mineral oil, petroleum distillates, hydrotreated, severe, light naphthenic", + "synonymsKr": "히드로처리된 경 나프텐 증류액 / 수소처리된경질나프텐정제유(석유) / 히드로처리된경나프텐증류액 / 수소처리된경질나프텐정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHTNAPHTHENIC) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedlightnaphthenic) / 석유유래물질(Distillates(petroleum),hydrotreatedlightnaphthenic) / 미네랄 오일, 석유 증류액, (심하게) 수소처리된 경질 나프텐 / 수소처리된 경질 나프텐 (석유) / 수소처리된 경질 나프텐 증류액 / 유압 석유 오일 / 증류액 (석유), 수소처리, 경질 나프텐 / 증류액 (석유), 수소처리된 경질 나프텐 / 증류액, 석유, 수소처리된 경질 나프텐", + "unNumber": "", + "casNumber": "64742-53-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HN40HT", + "name": "Hynap N40HT", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 673, + "abbreviation": "ILPBUT", + "nameKr": "일립 버터", + "nameEn": "Illipe butter", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "91770-65-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ILPBUT", + "name": "Illipe butter", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 674, + "abbreviation": "IFM1284", + "nameKr": "", + "nameEn": "Infineum D1284", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IFM1284", + "name": "Infineum D1284", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 675, + "abbreviation": "IFM1688", + "nameKr": "", + "nameEn": "Infineum D1688", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IFM1688", + "name": "Infineum D1688", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 676, + "abbreviation": "IFM2281", + "nameKr": "", + "nameEn": "Infineum D2281", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IFM2281", + "name": "Infineum D2281", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 677, + "abbreviation": "INK", + "nameKr": "잉크 용매", + "nameEn": "INK solvent", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "-", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "INK", + "name": "INK solvent", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 678, + "abbreviation": "IESUN", + "nameKr": "식물성 기름", + "nameEn": "Inter-esterfied sunflower oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "97593-59-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IESUN", + "name": "Inter-esterfied sunflower oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 679, + "abbreviation": "IAACE", + "nameKr": "이소아밀 아세테이트", + "nameEn": "Isoamyl acetate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "123-92-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IAACE", + "name": "Isoamyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 680, + "abbreviation": "IAA", + "nameKr": "이소아밀 알코올", + "nameEn": "Isoamyl alcohol", + "synonymsEn": "3-Methyl-1-butanol / ISOAMYL ALCOHOL / 3-METHYLBUTAN-1-OL / ISOPENTYL ALCOHOL / ISOPENTANOL / FUSEL OIL / 3-METHYL BUTANOL / i-Amyl Alcohol / Isoamylol / 3-methyl-1-butano / 3-methylbutanoI", + "synonymsKr": "아이소아밀 알코올 / 이소아밀알코올 / 3-메틸뷰타놀 / 3-메틸부탄-1-올 / 아이소부틸카르비놀 / 아이소펜타놀 / 이소펜틸알코올 / 페르멘테이션아밀알코올 / 2-메틸-4-뷰타놀 / 3-메틸-1-부탄올,이소펜틸알코올 / 3-메틸-1-뷰타놀 / 아이소아밀알코올 / 아이소아밀알콜 / 아이소아밀올 / 이소아밀알콜 / 이소아밀알코올 / 아이소아밀 알코올 / 3-메틸-1-부탄올", + "unNumber": "", + "casNumber": "123-51-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IAA", + "name": "Isoamyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 681, + "abbreviation": "IBACE", + "nameKr": "이소부틸 아세트산", + "nameEn": "Isobutyl acetate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "110-19-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IBACE", + "name": "Isobutyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 682, + "abbreviation": "IBACR", + "nameKr": "이소부틸아크릴레이트", + "nameEn": "Isobutyl acrylate", + "synonymsEn": "Isobutyl acrylate / IBA / isobutylpropenoate / 2-methylpropylacrylate / 2-methylpropyl prop-2-enoate / Isobutylacrylat / ISOBUTYL ACRYLATE / acrylated’isobutyle / Isobutyl propenoate / isobutyl2-propenoate / Acrylic acid isobutyl", + "synonymsKr": "이소부틸아크릴레이트 / 아이소뷰틸아크릴레이트 / 아크릴산,이소부틸에스테르 / 이소부틸아크릴레이트 / 이소뷰틸아크릴레이트 / 아이소뷰틸아크릴레이트 / 이소뷰틸아크릴레이트 / 아이소뷰틸 아크릴레이트 / 2-페틸프로필 아크리에이트 / 2-프로펜오익 산, 2-메틸프로필 에스테르 / 2-프로펜오익 산-2-메틸 프로필 에스테르 / 아크릴 산, 이소뷰틸 에스테르 / 이소-뷰틸 아크릴레이트 / 이소뷰틸 프로펜오에이트 / 이소뷰틸-2-프로펜오에이트", + "unNumber": "", + "casNumber": "106-63-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IBACR", + "name": "Isobutyl acrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 683, + "abbreviation": "IBAL", + "nameKr": "이소부틸 아데히드", + "nameEn": "Isobutyl aldehyde", + "synonymsEn": "Isobutyraldehyde / 2-METHYLPROPANAL / methylpropanal / ISOBUTYLALDEHYDE / Isobutanal / isobutyral / sobutyraldehyde / Isobutyraldehyd / 2-methyl-propana / Propanal,2-methyl- / ISOBUTYRIC ALDEHYDE", + "synonymsKr": "이소부틸알데히드 / 아이소뷰티르알데하이드 / 아이소뷰틸알데하이드 / 이소부틸알데히드 / 이소부탄알 / 2-메틸프로판알 / 2-메틸-1-프로판알 / 2-메틸프로피안알데하이드 / LC-메틸프로피안알데하이드 / 발린 알데하이드 / 이소부티랄데히드 / 이소-부티랄데히드 / 이소부티르산 알데하이드 / 이소뷰틸알데하이드 / 이소프로필포름알데하이드", + "unNumber": "", + "casNumber": "78-84-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IBAL", + "name": "Isobutyl aldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 684, + "abbreviation": "IBAMN", + "nameKr": "이소부틸아민", + "nameEn": "Isobutyl amine", + "synonymsEn": "Isobutylamine / IBA / MIBA / 2-Methylpropanamine / sobutylaMine / 2-METHYL-1-PROPANAMINE / 2-Methyl-1-propylamine / C02787 / nsc8028 / Valamine / iso-C4H9NH2", + "synonymsKr": "이소부틸아민 / 아이소뷰틸아민 / 이소부틸아민 / 1-아미노-2-메틸프로판 / 1-아미노-2-메틸프로페인 / 2-메틸-1-아미노프로페인 / 2-메틸-1-프로판아민 / 2-메틸프로판-1-아민 / 2-메틸프로판아민 / 2-메틸프로필아민 / 3-메틸-2-프로필아민", + "unNumber": "", + "casNumber": "78-81-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IBAMN", + "name": "Isobutyl amine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 685, + "abbreviation": "IDAL", + "nameKr": "", + "nameEn": "Isodecaldehyde", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IDAL", + "name": "Isodecaldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 686, + "abbreviation": "IDA", + "nameKr": "이소데칸올", + "nameEn": "Isodecanol", + "synonymsEn": "Isodecanol / Isodecanol / Einecs 271-234-0 / isocapric alcohol / Alcohol (Isodecanol) / c9-11-iso-alcoholc10-rich / Alcohols,C9-11-iso,C10-rich / Alcohols,C9-11-iso-,C10-rich / Alcohols, C9-11-iso-, C1o-rich / Low foam isomeric alcohol ether / 8-Methylnonan-1-ol,98%(mixtures)", + "synonymsKr": "알코올, C9-11-이소-, C10-RICH / 알코올,C9-11-아이소-,C10-리치 / 알코올,C9-11-이소-,C10-RICH / 알코올,C9-11-아이소-,C10-리치", + "unNumber": "3082", + "casNumber": "68526-85-2", + "transportMethod": "", + "sebc": "", + "usage": "가소제, 세제, 향수, 조미료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IDA", + "name": "Isodecanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 687, + "abbreviation": "IDM", + "nameKr": "아이소데실 메타크릴레이트", + "nameEn": "Isodecyl methacrylate", + "synonymsEn": "ISO-DECYL METHACRYLATE / IDMA / ageflexfm-10 / Isodecylmethacrylat / ISO-DECYL METHACRYLATE / Sodium 2 minosulphanilate / Isodecyl2-methylpropenoate / 8-Methylnonyl methacrylate / lsodecyl methacrylate IDMA / ISODECYL METHACRYLATE, 97.5+% / Isodecyl2-methyl-2-propenoate", + "synonymsKr": "아이소데실 메타크릴레이트 / 아이소데실메타크릴레이트 / 아이소데실 메타크릴레이트 / ISO-데실메타크릴레이트", + "unNumber": "", + "casNumber": "29964-84-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IDM", + "name": "Isodecyl methacrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 688, + "abbreviation": "IDACR", + "nameKr": "이소데실 아크릴산염", + "nameEn": "Isodecylacrylate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "1330-61-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IDACR", + "name": "Isodecylacrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 689, + "abbreviation": "IDDCN", + "nameKr": "이소도데케인", + "nameEn": "Isododecene", + "synonymsEn": "Isododecane / Isodoecane / ISODODECANE / isododecane, mixture of isomers / Isododecane ISO 9001:2015 REACH / Isododecane, mixture of isomers, tech. 80% / Isododecane mixture of isomers, technical, >=80% (GC)", + "synonymsKr": "이소도데칸 / 2,2,4,6,6-펜타메틸헵탄 / 이소도데칸 / 아이소도데케인 (이성질체 혼합물)", + "unNumber": "", + "casNumber": "31807-55-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IDDCN", + "name": "Isododecene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 690, + "abbreviation": "IHXN", + "nameKr": "이소헥산", + "nameEn": "Isohexane", + "synonymsEn": "2-methylpentane / METHYLPENTANE / pentane,2-methyl- / NSC 66496 / Kyowazol C 600 / 2-METHYLPENTANE / Kyowasol C 600M / Methylpentane,99% / (CH3)2CH(CH2)2CH3 / 1,1-dimethylbutane / 2-Methylpentane>", + "synonymsKr": "2-메틸펜탄 / 2-메틸펜탄 / 이소핵산 / 이소헥산 / 2-메틸펜테인", + "unNumber": "", + "casNumber": "107-83-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IHXN", + "name": "Isohexane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 691, + "abbreviation": "IOA", + "nameKr": "이소옥틸 알코올", + "nameEn": "Isooctyl alcohol", + "synonymsEn": "2-Ethylhexanol / 2-ETHYL-1-HEXANOL / OCTANOL / 2-Ethylhexan-1-ol / OCTYL ALCOHOL / ISOOCTYL ALCOHOL / 2EH / ISOOCTANOL / 1-hexanol,2-ethyl- / ALCOHOL C8 / 2-ETHYLHEXYL ALCOHOL", + "synonymsKr": "2-에틸-1-핵산올 / 2-에틸헥산올 / 2-에틸-1-핵산올 / 2-에틸-1-헥산올 / 이소옥타놀 / 옥탄올 / 옥탄올(OCOH) / 2-에틸헥산올", + "unNumber": "", + "casNumber": "104-76-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IOA", + "name": "Isooctyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 692, + "abbreviation": "ISOPARG", + "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", + "nameEn": "Isopar G", + "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", + "unNumber": "3295", + "casNumber": "64742-48-9", + "transportMethod": "", + "sebc": "", + "usage": "산업용 용제, 페인트, 방향제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ISOPARG", + "name": "Isopar G", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 693, + "abbreviation": "ISOPARH", + "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", + "nameEn": "Isopar H", + "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", + "unNumber": "3295", + "casNumber": "64742-48-9", + "transportMethod": "", + "sebc": "", + "usage": "산업용 용제, 페인트, 방향제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ISOPARH", + "name": "Isopar H", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 694, + "abbreviation": "ISOPARL", + "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", + "nameEn": "Isopar L", + "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", + "unNumber": "3295", + "casNumber": "64742-48-9", + "transportMethod": "", + "sebc": "", + "usage": "산업용 용제, 페인트, 방향제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ISOPARL", + "name": "Isopar L", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 695, + "abbreviation": "ISOPARM", + "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", + "nameEn": "Isopar M", + "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", + "unNumber": "", + "casNumber": "64742-48-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ISOPARM", + "name": "Isopar M", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 696, + "abbreviation": "IPTN", + "nameKr": "이소펜탄", + "nameEn": "Isopentane", + "synonymsEn": "2-Methylbutane / ISOPENTANE / Isopentan / methylbutane / 3-Methylbutane / JJDW / R 601A / iso-C5H12 / iso-Pentan / NSC 119476 / 2Methylbutan", + "synonymsKr": "이소펜탄 / 이소펜탄 / 2-메틸부탄 / 이소펜탄(2-메틸부탄) / 에틸디메틸메탄 / 이소아밀수소화물 / 2-메틸부탄 / 펜탄 / 1,1,2-트리메틸에탄 / 아이소펜탄 / 아이소펜테인", + "unNumber": "", + "casNumber": "78-78-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPTN", + "name": "Isopentane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 697, + "abbreviation": "IPRN", + "nameKr": "이소포론", + "nameEn": "Isophorone", + "synonymsEn": "Isophorone / Izoforon / 3,5,5-TRIMETHYL-2-CYCLOHEXEN-1-ONE / Isophoron / 3,5,5-trimethylcyclohex-2-en-1-one / IPHO / Isoforon / FEMA 3553 / Isoforone / isooctopherone / 3,5,5-TRIMETHYL-2-CYCLOHEXENONE", + "synonymsKr": "아이소포론 / 아이소포론 / 이소포론 / 이소포론(I.P.R) / 3,5,5-트라이메틸사이클로헥스-2-엔온 / 3,5,5-트리메틸사이클로헥스-2-에논", + "unNumber": "", + "casNumber": "78-59-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPRN", + "name": "Isophorone", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 698, + "abbreviation": "IPACE", + "nameKr": "이소프로필 아세테이트", + "nameEn": "Isopropyl acetate", + "synonymsEn": "Isopropyl acetate / IPAC / IPrOAc / propan-2-yl acetate / CH3COOCH(CH3)2 / Ispropyl acetate / 2-propylacetate / Isopropylacetat / 2-acetoxypropane / 2-Propyl acetate / ACETIC ACID ISOPROPYL ESTER", + "synonymsKr": "이소 프로필 아세테이트 / 아이소프로필아세테이트 / 2-프로필아세트산 / 1-메틸에틸아세트산 / 2-아세톡시프로판 / ㅡ아세트산,이소프로필에스테르 / 아세트산,1-에티에틸에스테르 / 아세트산아이소프로필 / 이소프로필에탄오에이트 / 초산이소프로필 / 이소프로필아세트산 / 초산이소프로필 / 이소 프로필 아세테이트 / 아이소프로필 아세테이트", + "unNumber": "", + "casNumber": "108-21-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPACE", + "name": "Isopropyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 699, + "abbreviation": "IPAMN", + "nameKr": "이소프로필아민", + "nameEn": "Isopropyl amine", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "75-31-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPAMN", + "name": "Isopropyl amine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 700, + "abbreviation": "IPBZN", + "nameKr": "이소프로필 벤젠", + "nameEn": "Isopropyl benzene", + "synonymsEn": "Cumene / ISOPROPYLBENZENE / 2-PHENYLPROPANE / Cumeen / Isopropylbenzen / Isopropilbenzene / (1-METHYLETHYL)BENZENE / CUMOL / CUMENE / NSC 8776 / Cumene,99%", + "synonymsKr": "큐멘 / 쿠멘 / 큐멘 / (1-메틸에틸)벤젠 / 메틸 에틸 벤젠 / 아이소프로필벤젠 / 큐몰 / 프로판-2-일벤젠 / 쿠메네", + "unNumber": "", + "casNumber": "98-82-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPBZN", + "name": "Isopropyl benzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 701, + "abbreviation": "IPE", + "nameKr": "이소프로필 에테르", + "nameEn": "Isopropyl ether", + "synonymsEn": "Diisopropyl ether / DIISOPROPYL ETHER / DIPE / 2-ISOPROPOXYPROPANE / 2,2'-Oxybispropane / 2-propan-2-yloxypropane / ISOPROPYL ETHER, 1000MG, NEAT / (iso-C3H7)2O / Isoprpyl ether / Isopropyl ethe / Diisopropyleth", + "synonymsKr": "이소프로필에테르 / 이소프로필에테르 / 디이소프로필산화물 / 디이소프로필에테르 / 2,2-옥시비스프로판 / 2-이소프로폭시프로판 / 디이소프로필옥시드 / 비스(이소프로필)에테르 / 프로판,2,2$$@@-옥시비스- / 이소프로필에테르 / 아이소프로필 에테르", + "unNumber": "", + "casNumber": "108-20-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.4.6, 15.13, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPE", + "name": "Isopropyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 702, + "abbreviation": "ISORENE", + "nameKr": "이소프렌", + "nameEn": "Isorene", + "synonymsEn": "Isoprene / 2-METHYL-1,3-BUTADIENE / ACETATE BUFFER / BUFFER SOLUTION / SODIUM ACETATE BUFFER / lsoprene / BUFFER PH7.20 / BUFFER PH 4.65 / Isoprene, stabilized / 2-Methyl-1,3-butadien / nsc9237", + "synonymsKr": "이소프렌(2-메틸-1,3-부타디엔) / 펜탄디엔 / 2-메틸-1,3-부타디엔 / 이소프렌 / 이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌 / 1,3-부타디엔, 2-메틸-", + "unNumber": "", + "casNumber": "78-79-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ISORENE", + "name": "Isorene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 703, + "abbreviation": "HPN150", + "nameKr": "", + "nameEn": "J150 SUS HPN", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPN150", + "name": "J150 SUS HPN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 704, + "abbreviation": "HPN500", + "nameKr": "", + "nameEn": "J500 SUS HPN", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HPN500", + "name": "J500 SUS HPN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 705, + "abbreviation": "JHG", + "nameKr": "", + "nameEn": "Japanese hog grease", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "JHG", + "name": "Japanese hog grease", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 706, + "abbreviation": "JETADD", + "nameKr": "항공유 첨가제", + "nameEn": "Jet fuel additive", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "-", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "JETADD", + "name": "Jet fuel additive", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 707, + "abbreviation": "JETJP1", + "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", + "nameEn": "Jet fuel JP-1", + "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", + "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", + "unNumber": "", + "casNumber": "8008-20-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "JETJP1", + "name": "Jet fuel JP-1", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 708, + "abbreviation": "JETJP4", + "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", + "nameEn": "Jet fuel JP-4", + "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", + "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", + "unNumber": "", + "casNumber": "8008-20-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "JETJP4", + "name": "Jet fuel JP-4", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 709, + "abbreviation": "JETJP5", + "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", + "nameEn": "Jet fuel JP-5", + "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", + "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", + "unNumber": "", + "casNumber": "8008-20-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "JETJP5", + "name": "Jet fuel JP-5", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 710, + "abbreviation": "JETJP6", + "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", + "nameEn": "Jet fuel JP-6", + "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", + "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", + "unNumber": "", + "casNumber": "8008-20-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "JETJP6", + "name": "Jet fuel JP-6", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 711, + "abbreviation": "JUICE", + "nameKr": "쥬스 농축액", + "nameEn": "Juice concentrate (i.e. apple, grape)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "-", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "JUICE", + "name": "Juice concentrate (i.e. apple, grape)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 712, + "abbreviation": "KAOLIN", + "nameKr": "카올린 슬러리", + "nameEn": "Kaolin slurry", + "synonymsEn": "KAOLIN / Kaolin clay / CLAY / Sericite / HYDRATED ALUMINUM SILICATE / Kaoline / Anhydrol / CHINA CLAY / White clay / COLLOIDAL KAOLIN / Buca", + "synonymsKr": "카올린 / 규산알루미늄 / 도자기점토 / 아르길라 / 알루미늄실리케이트(수화물) / 중국점토 / 테라알바 / 볼루스알바 / 카올린 / 흰색교회점토 / 카오린 / 할로이사이트 / 점토 / 고령토", + "unNumber": "", + "casNumber": "1332-58-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "KAOLIN", + "name": "Kaolin slurry", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 713, + "abbreviation": "KA0810", + "nameKr": "카프릴릭(옥탄산) 또는 카프릭 애씨드(테칸산)", + "nameEn": "KORTACID 0810", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "KA0810", + "name": "KORTACID 0810", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 714, + "abbreviation": "LCTA", + "nameKr": "젖산", + "nameEn": "Lactic acid", + "synonymsEn": "Lactic acid / 2-Hydroxypropanoic acid / DL-Lactic acid / Lactic / 2-HYDROXYPROPIONIC ACID / dl-lactate / Purac / actic acid / LACTIC ACID POWDER / Biolac / FEMA 2611", + "synonymsKr": "유산 / 락트산 / DL-젖산 / 밀크산 / 젖산-DL / 2-히드록시프로판산 / 2-히드록시프로피오닌산 / LC-히드록시프로판산 / 라세믹젖산 / 아세톤산 / 알파-히드록시프로피온산 / 에틸리덴젖산 / 오르디나리젖산 / 젖산 / -히드록시에탄카복실산 / 락틱애씨드 / 젖산(LACTICACID) / 2-하이드록시프로판산", + "unNumber": "", + "casNumber": "50-21-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LCTA", + "name": "Lactic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 715, + "abbreviation": "LARD", + "nameKr": "돼지기름", + "nameEn": "Lard Oil", + "synonymsEn": "LARD OIL / Larex Ex / LARD OIL / oils,lard / Larex prime / Larex No. 1 / Larex extra / lardoilporcine / LARD OIL, PRIME / REFINED-LARDOIL / Larex extra No. 1", + "synonymsKr": "LARD 기름 / LARD기름 / 라드기름 / 라드기름", + "unNumber": "", + "casNumber": "8016-28-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LARD", + "name": "Lard Oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 716, + "abbreviation": "LTX", + "nameKr": "라텍스", + "nameEn": "Latex (Natural rubber)", + "synonymsEn": "RUBBER LATEX / UNITEX / VS 65 / WB 60 / V 145 / Vultex / Ulacol / TTR 5L / TTR 20 / Toptex / Taytex", + "synonymsKr": "자연산 고무 / 자연산고무 / 자연산고무 / 고무라텍스", + "unNumber": "", + "casNumber": "9006-04-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LTX", + "name": "Latex (Natural rubber)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 717, + "abbreviation": "LTXS", + "nameKr": "라텍스", + "nameEn": "Latex (Synthetic)", + "synonymsEn": "RUBBER LATEX / UNITEX / VS 65 / WB 60 / V 145 / Vultex / Ulacol / TTR 5L / TTR 20 / Toptex / Taytex", + "synonymsKr": "자연산 고무 / 자연산고무 / 자연산고무 / 고무라텍스", + "unNumber": "", + "casNumber": "9006-04-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LTXS", + "name": "Latex (Synthetic)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 718, + "abbreviation": "LRA", + "nameKr": "라우르산", + "nameEn": "Lauric acid", + "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", + "synonymsKr": "라우르산 / 라우르산 / 도데카노익산 / 라우릭산 / 라우릭애씨드 / 도데칸산 / 1-운데케인카복실산 / n-도데칸산 / 데다콘산 / 도데실산 / 도데칸 산 / 도데코 산 / 도데크산 / 듀오-디시클릭 산 / 라우로스테아르 산 / 로로스테아르산 / 로르산 / 하이드로폴 산 1255", + "unNumber": "", + "casNumber": "143-07-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LRA", + "name": "Lauric acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 719, + "abbreviation": "LAL12", + "nameKr": "라우릴 알코올", + "nameEn": "Lauryl alcohol C12", + "synonymsEn": "1-Dodecanol / Fatty alcohol / LAURYL ALCOHOL / DODECANOL / dodecyl / lauryl / DODECAN-1-OL / Pisol / Lauric Alcohol / DODECYL ALCOHOL / Lorol", + "synonymsKr": "라우릴알코올 / 1-히드록시도데칸 / 도데킬알코올 / 라우린산알코올 / 1-도데칸올 / 1-도데킬알코올 / 도데칸올 / 라우르산알코올 / 라우릴알코올 / 로릴알코올 / 페티알콜 / 라우릴알콜 / 납 / C.I.염료금속4 / 납플레이크 / 로릴알코올 / 1-도데실 알코올 / 1-도데카놀 / 1-하이드록시도데케인 / n-도데실 알코올 / 도데실 알코올", + "unNumber": "", + "casNumber": "112-53-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LAL12", + "name": "Lauryl alcohol C12", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 720, + "abbreviation": "LEMON", + "nameKr": "레몬 오일", + "nameEn": "Lemon oil", + "synonymsEn": "Citrus Oil / Lemon Oil / Lemon oil/lime oil / LEMONOIL,CALIFORNIATYPE,COLDPRESSED,FCC / cedrooil / FEMA 2308 / Limon Oil / Citrus Oil / oiloflemon / Oils,lemon / ninmengsuan", + "synonymsKr": "레몬 기름 / 레몬기름 / 레몬기름(LEMONOIL) / 레몬껍질오일", + "unNumber": "", + "casNumber": "8008-56-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LEMON", + "name": "Lemon oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 721, + "abbreviation": "LIAL123", + "nameKr": "", + "nameEn": "LIALCHEM 123", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LIAL123", + "name": "LIALCHEM 123", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 722, + "abbreviation": "LIAL145", + "nameKr": "", + "nameEn": "LIALCHEM 145", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LIAL145", + "name": "LIALCHEM 145", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 723, + "abbreviation": "LIAL23/75", + "nameKr": "", + "nameEn": "LIALCHEM 23-75", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LIAL23/75", + "name": "LIALCHEM 23-75", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 724, + "abbreviation": "LDF", + "nameKr": "세제 원료", + "nameEn": "Light detergent feedstock", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "132778-08-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LDF", + "name": "Light detergent feedstock", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 725, + "abbreviation": "BON60", + "nameKr": "base oil", + "nameEn": "Light neutral 60 base oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BON60", + "name": "Light neutral 60 base oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 726, + "abbreviation": "LIG100", + "nameKr": "트라이이소부틸알루미늄", + "nameEn": "Lignosite 100", + "synonymsEn": "Triisobutylaluminum / TRIISOBUTYLALUMINUM / tibal / TriisobutyL / tiba solution / triisobutylalane / triisobutyl-alane / triisobutyl-aluminu / TriisobutylAmmonium / tris(isobutyl)alane / TRI-I-BUTYLALUMINUM", + "synonymsKr": "트리이소부틸알루미늄 / 트라이아이소뷰틸알루미늄 / 트리이소부틸알루미늄", + "unNumber": "", + "casNumber": "100-99-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LIG100", + "name": "Lignosite 100", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 727, + "abbreviation": "LIG50", + "nameKr": "리그노설폰산 나트륨", + "nameEn": "Lignosite 50", + "synonymsEn": "Sodium lignosulfonate / SODIUM LIGNINSULFONATE / banirexn / SodiuM lignosulfante / LIGNOSULFONIC ACID, SODIUM SALT / CMN / nosuL / orzans / urzans / betz402 / polyfon", + "synonymsKr": "리그노술폰산 나트륨 / 리그노설폰산나트륨 / 리그노술폰산나트륨 / 리그닌술폰산나트륨 / 소듐리그노설포네이트 / 리그노설폰산나트륨(SODIUMLIGNOSULFONATE) / 나트륨 염기 소비성 아황산 액 / 리고설폰산 나트륨 / 리고설폰산 나트륨 염 / 리그노설폰 산, 나트륨 염 / 리그노설폰산 나트륨 / 리그노아황산 나트륨 / 리그노황산 나트륨 / 리그닌설폰산 나트륨 / 설폰산 리그닌 나트륨 염", + "unNumber": "", + "casNumber": "8061-51-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LIG50", + "name": "Lignosite 50", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 728, + "abbreviation": "LIGNO", + "nameKr": "라그노설폰산 나트륨 용액", + "nameEn": "Lignosulphonate solution", + "synonymsEn": "Sodium lignosulfonate / SODIUM LIGNINSULFONATE / banirexn / SodiuM lignosulfante / LIGNOSULFONIC ACID, SODIUM SALT / CMN / nosuL / orzans / urzans / betz402 / polyfon", + "synonymsKr": "리그노술폰산 나트륨 / 리그노설폰산나트륨 / 리그노술폰산나트륨 / 리그닌술폰산나트륨 / 소듐리그노설포네이트 / 리그노설폰산나트륨(SODIUMLIGNOSULFONATE) / 나트륨 염기 소비성 아황산 액 / 리고설폰산 나트륨 / 리고설폰산 나트륨 염 / 리그노설폰 산, 나트륨 염 / 리그노설폰산 나트륨 / 리그노아황산 나트륨 / 리그노황산 나트륨 / 리그닌설폰산 나트륨 / 설폰산 리그닌 나트륨 염", + "unNumber": "", + "casNumber": "8061-51-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LIGNO", + "name": "Lignosulphonate solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 729, + "abbreviation": "LNVL769", + "nameKr": "알코올 혼합물 (고품질 플라스틱화제 중간체)", + "nameEn": "Linevol 769", + "synonymsEn": "Alcohols, C9-11 / Neodol 91 / Dobanol 91 / Linevol 911 / Dobanol 911 / Neodol 91-8t / C9-11 Alcohol / C9-11 ALCOHOLS / Alcohols, C9-11 / Einecs 266-367-6", + "synonymsKr": "C9-11알코올 / C9-11알코올 / 알코올,C9-11", + "unNumber": "", + "casNumber": "66455-17-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LNVL769", + "name": "Linevol 769", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 730, + "abbreviation": "LNVL79", + "nameKr": "알코올 혼합물 (고품질 플라스틱화제 중간체)", + "nameEn": "Linevol 79", + "synonymsEn": "Alcohols, C9-11 / Neodol 91 / Dobanol 91 / Linevol 911 / Dobanol 911 / Neodol 91-8t / C9-11 Alcohol / C9-11 ALCOHOLS / Alcohols, C9-11 / Einecs 266-367-6", + "synonymsKr": "C9-11알코올 / C9-11알코올 / 알코올,C9-11", + "unNumber": "", + "casNumber": "66455-17-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LNVL79", + "name": "Linevol 79", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 731, + "abbreviation": "LNVL911", + "nameKr": "알코올 혼합물 (고품질 플라스틱화제 중간체)", + "nameEn": "Linevol 911", + "synonymsEn": "Alcohols, C9-11 / Neodol 91 / Dobanol 91 / Linevol 911 / Dobanol 911 / Neodol 91-8t / C9-11 Alcohol / C9-11 ALCOHOLS / Alcohols, C9-11 / Einecs 266-367-6", + "synonymsKr": "C9-11알코올 / C9-11알코올 / 알코올,C9-11", + "unNumber": "", + "casNumber": "66455-17-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LNVL911", + "name": "Linevol 911", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 732, + "abbreviation": "LINLEIC", + "nameKr": "", + "nameEn": "Linoleic acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LINLEIC", + "name": "Linoleic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 733, + "abbreviation": "LINLENIC", + "nameKr": "리놀렌산", + "nameEn": "Linolenic acid", + "synonymsEn": "Linolenic acid / α-Linolenic acid / ALPHA-LINOLENIC ACID / 9,12,15-OCTADECATRIENOIC ACID / linolenic / a-Linolenic acid / OCTADECA-9Z,12Z,15Z-TRIENOIC ACID / (Z,Z,Z)-9,12,15-Octadecatrienoic acid / ALPHA-LNN / A-linolenic / α-linolenic acid (ALA)", + "synonymsKr": "리놀렌산 / 리놀렌산 / 리놀레닉애씨드", + "unNumber": "", + "casNumber": "463-40-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LINLENIC", + "name": "Linolenic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 734, + "abbreviation": "LPR10/12", + "nameKr": "n-파라핀 계열의 용제 및 중간체 물질(제품명)", + "nameEn": "Linpar 10-12", + "synonymsEn": "·Paraffins, petroleum, normal C5-20, n-paraffins, n-alkanes, naphtha (petroleum), hydrotreated heavy (CAS RN: 64742-48-9), hydrocarbons, C9-C11, n-alkanes, isoalkanes, cyclics, < 2% aromatic (EC Number 919-857-5), hydrocarbons, C7-9, n-alkanes, isoalkanes, cyclics (EC Number 920-750-0), generichydrocarbon", + "synonymsKr": "노말 파라핀 C5-20 / 노말파라핀C5-20 / 노말파라핀C5-20 / 둥유", + "unNumber": "", + "casNumber": "64771-72-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LPR10/12", + "name": "Linpar 10-12", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 735, + "abbreviation": "LPR10/13", + "nameKr": "n-파라핀 계열의 용제 및 중간체 물질(제품명)", + "nameEn": "Linpar 10-13", + "synonymsEn": "·Paraffins, petroleum, normal C5-20, n-paraffins, n-alkanes, naphtha (petroleum), hydrotreated heavy (CAS RN: 64742-48-9), hydrocarbons, C9-C11, n-alkanes, isoalkanes, cyclics, < 2% aromatic (EC Number 919-857-5), hydrocarbons, C7-9, n-alkanes, isoalkanes, cyclics (EC Number 920-750-0), generichydrocarbon", + "synonymsKr": "노말 파라핀 C5-20 / 노말파라핀C5-20 / 노말파라핀C5-20 / 둥유", + "unNumber": "", + "casNumber": "64771-72-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LPR10/13", + "name": "Linpar 10-13", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 736, + "abbreviation": "LPR12/14", + "nameKr": "n-파라핀 계열의 용제 및 중간체 물질(제품명)", + "nameEn": "Linpar 12-14", + "synonymsEn": "·Paraffins, petroleum, normal C5-20, n-paraffins, n-alkanes, naphtha (petroleum), hydrotreated heavy (CAS RN: 64742-48-9), hydrocarbons, C9-C11, n-alkanes, isoalkanes, cyclics, < 2% aromatic (EC Number 919-857-5), hydrocarbons, C7-9, n-alkanes, isoalkanes, cyclics (EC Number 920-750-0), generichydrocarbon", + "synonymsKr": "노말 파라핀 C5-20 / 노말파라핀C5-20 / 노말파라핀C5-20 / 둥유", + "unNumber": "", + "casNumber": "64771-72-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LPR12/14", + "name": "Linpar 12-14", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 737, + "abbreviation": "LPR14", + "nameKr": "n-파라핀 계열의 용제 및 중간체 물질(제품명)", + "nameEn": "Linpar 14", + "synonymsEn": "·Paraffins, petroleum, normal C5-20, n-paraffins, n-alkanes, naphtha (petroleum), hydrotreated heavy (CAS RN: 64742-48-9), hydrocarbons, C9-C11, n-alkanes, isoalkanes, cyclics, < 2% aromatic (EC Number 919-857-5), hydrocarbons, C7-9, n-alkanes, isoalkanes, cyclics (EC Number 920-750-0), generichydrocarbon", + "synonymsKr": "노말 파라핀 C5-20 / 노말파라핀C5-20 / 노말파라핀C5-20 / 둥유", + "unNumber": "", + "casNumber": "64771-72-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LPR14", + "name": "Linpar 14", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 738, + "abbreviation": "LSO", + "nameKr": "아마인유", + "nameEn": "Linseed oil", + "synonymsEn": "Linseed oil / FLAXSEED OIL / groco / l-310 / P 1037 / PU 104 / leinol / Flaxoil / Purolin / d= 0.93 / Scan-Oil", + "synonymsKr": "아마인유 / 아마인기름,RAW / 플렉스시드기름 / RAW아마인기름 / 아마씨기름 / 아마인기름,표백한 / 아마인유 / 올레움리니 / 아마인오일 / 아마씨오일 / 아마씨기름(LINSEEDOIL) / 기름, 아마인 / 아마씨 기름 / 아마씨 기름, 표백 / 아마인 기름", + "unNumber": "", + "casNumber": "8001-26-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LSO", + "name": "Linseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 739, + "abbreviation": "PFN", + "nameKr": "액체 파라핀", + "nameEn": "Liquid parrafin", + "synonymsEn": "Paraffin, liquid / Paraffin oil / LIQUID PARAFFIN / OIL / PARAFFIN LIQUID / NUJOL / paraffins / drakeol / fonoline / LIGHT WHITE OIL / LIQUID PETROLATUM", + "synonymsKr": "미네랄오일 / 광물성기름 / 무거운미네랄기름 / 백무기기름 / 액체페트롤라튬 / 화이트액체파라핀 / 기름미스트,무기 / 미네랄오일 / 액체파라핀 / 파라핀기름 / 파라핀유 / 유동파라핀 / 파라핀오일 / 파라핀유(PARAFFINOIL) / 광물성 기름", + "unNumber": "1270", + "casNumber": "8012-95-1", + "transportMethod": "", + "sebc": "", + "usage": "세제, 화장품 등 원료", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PFN", + "name": "Liquid parrafin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 740, + "abbreviation": "LSPN", + "nameKr": "옥틸페닐폴리에틸렌 글리콜", + "nameEn": "Lissapol N", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "123359-41-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LSPN", + "name": "Lissapol N", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 741, + "abbreviation": "LSPNX", + "nameKr": "옥틸페닐폴리에틸렌 글리콜", + "nameEn": "Lissapol NX", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "123359-41-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LSPNX", + "name": "Lissapol NX", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 742, + "abbreviation": "LUXWAX", + "nameKr": "", + "nameEn": "Luxco slax wax", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LUXWAX", + "name": "Luxco slax wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 743, + "abbreviation": "MAGCLO", + "nameKr": "염화마그네슘", + "nameEn": "Magnesium chloride solution", + "synonymsEn": "Magnesium chloride / Magnesiumchlorid / magnesiumdichloride / MAGNESIUM CHLORIDE, 98% ANHYDROUS / MAGNESIUM CHLORIDE SOLUTION, 0.025 M IN WATER, 10X1 ML / dus-top / Slow-Mag / Lys, TMS / Magnogene / Chloromagnesite / MgCl2(anhydrous)", + "synonymsKr": "염화마그네슘 / 염화마그네슘 / 마그노겐 / 이염화마그네슘 / 클로로마그네시트 / 마그네슘클로라이드 / 염화마그네슘 / 염화 마그네슘 / 다이메틸글루타레이트 / 메틸글루타르산 / 로우스위트블루베리씨", + "unNumber": "", + "casNumber": "7786-30-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MAGCLO", + "name": "Magnesium chloride solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 744, + "abbreviation": "MRCL52", + "nameKr": "경 무기 기름", + "nameEn": "MARCOL 52", + "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", + "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", + "unNumber": "", + "casNumber": "8042-47-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MRCL52", + "name": "MARCOL 52", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 745, + "abbreviation": "MCRSL", + "nameKr": "m-크레졸", + "nameEn": "m-Cresol", + "synonymsEn": "m-Cresol / 3-METHYLPHENOL / META-CRESOL / Phenol,3-methyl- / m-Cresole / m-Kresol / 3-Cresol / M-METHYLPHENOL / m-Cesol / M-CRESOL / m-Toluol", + "synonymsKr": "m-크레졸 / m-크레졸 / 1-히드록시-3-메틸벤젠 / 3-히드록시톨루엔 / M-메틸페놀 / M-옥시톨루엔 / M-크레솔 / M-크레시릴릭산 / 3-메틸페놀 / 3-크레솔 / M-톨루올 / M-히드록시톨루엔 / 메타크레졸퍼플수용액 / 크로톤알데히드(M-크레솔) / 1-옥시-3-메틸벤졸 / 1-하이드록시-3-메틸벤젠 / 1-하이드록시-3-메틸벤졸 / 3-하이드록시톨루엔 / 3-하이드록시톨루올 / m-크레실산 / m-하이드록시톨루엔", + "unNumber": "", + "casNumber": "108-39-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MCRSL", + "name": "m-Cresol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 746, + "abbreviation": "MDVBZN", + "nameKr": "디비닐 벤젠", + "nameEn": "m-Divinylbenzene", + "synonymsEn": "Divinylbenzene / DVB / 1,2-Divinylbenzene / dvb-55 / dvb-80 / vinylstyrene / dvb-22 / dvb-27 / dvb-100 / divinyl-benzen / o-vinylstyrene", + "synonymsKr": "디비닐벤젠 / 디비닐벤젠 / 디비닐벤젠50% / 디비닐벤젠 / 비닐스타이렌 / 다이바이닐벤젠 / 다이바이닐벤젠(이성질체 혼합물) / 다이에텐일벤젠 / 바이닐스타이렌 / 벤젠, 다이바이닐 / 벤젠, 다이에텐일- / 3,4,5-트라이메톡시벤즈알데하이드 / 바이유레아(BIUREA)", + "unNumber": "", + "casNumber": "1321-74-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MDVBZN", + "name": "m-Divinylbenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 747, + "abbreviation": "MHDO", + "nameKr": "멘헤이든 오일", + "nameEn": "Menhaden oil", + "synonymsEn": "FISH OIL / z3(oil) / pogyoil / menhaden / FISH OILS / NatureMade / mossbunkeroil / oils,menhaden / Brevoortia oil / Oele, Menhaden- / Boiled oil Y00-1", + "synonymsKr": "멘헤이든오일 / 멘헤이든오일", + "unNumber": "", + "casNumber": "8002-50-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MHDO", + "name": "Menhaden oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 748, + "abbreviation": "MO", + "nameKr": "산화 메시틸", + "nameEn": "Mesityl oxide", + "synonymsEn": "Mesityl oxide / 4-Methylpent-3-en-2-one / mesityl / 4-METHYL-3-PENTEN-2-ONE / METHYL ISOBUTENYL KETONE / 4-Methyl-3-penten-2-one, 9CI / 4-Methyl-3-penten-2-on / Mesityloxid / Mesity oxide / The propyl acetone / isopropyl alcohol-tech", + "synonymsKr": "산화 메시틸 / 메시틸옥시드 / 산화메시틸 / 4-메틸-3-펜틴-2-온 / 산화메시틸 / 산화 메시틸 / 2,2-다이메틸바이닐 메틸 케톤 / 2-메틸-2-펜텐-4-온 / 2-메틸-4-옥소-2-펜텐 / 3-펜텐-2-온, 4-메틸- / 4-메틸-3-펜텐-2-온 / 4-메틸-펜트-3-엔-2-온 / 4-메틸펜트-3-엔-2-온 / 메시틸 옥사이드 / 메틸 아이소부테닐 케톤 / 메틸 아이소뷰텐일 케톤 / 아이소프로필리덴아세톤 / 아이소프로필아이딘아세톤", + "unNumber": "", + "casNumber": "141-79-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MO", + "name": "Mesityl oxide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 749, + "abbreviation": "MTX", + "nameKr": "메타-자일렌", + "nameEn": "meta-Xylene", + "synonymsEn": "m-Xylene / 1,3-Xylene / 1,3-DIMETHYLBENZENE / 3-xylene / m-Xylol / META-XYLENE / Benzene,1,3-dimethyl- / 2,4-Xylene / 3-methyltoluene / m-XyL / M-XYLENE", + "synonymsKr": "3-자일렌 / 3-자일렌 / M-자일렌 / m-크실렌 / 메타크실렌 / M-크실렌 / 1,3-디메틸벤젠 / M-메틸톨루엔 / 크실렌 / M-크실롤 / 메타자일 / 1,3-다이메틸벤젠 / 1,3-자일렌 / m-자일롤 / 메타-자일렌 / 벤젠, 1,3-다이메틸-", + "unNumber": "", + "casNumber": "108-38-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MTX", + "name": "meta-Xylene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 750, + "abbreviation": "MACR", + "nameKr": "메킬아크릴레이트", + "nameEn": "Methyl acrylate", + "synonymsEn": "Methyl acrylate / Methacrylate / ACRYLIC ACID METHYL ESTER / Methyl prop-2-enoate / METHYL PROPENOATE / Methyl Acrilate / Methyl propenate / CH2=CHCOOCH3 / curithane103 / methyl ester / Curithane 103", + "synonymsKr": "아크릴산메틸 / 메타크릴산염 / 아크릴산메틸 / 메틸아크릴레이트 / 아크릴산에스테르 / 메틸아크릴레이트 / 2-프로펜오익산,메틸에스테르 / 아크릴산메틸에스테르 / 메톡시 / 메틸아크릴레이트 / 메틸 아크릴레이트", + "unNumber": "1919", + "casNumber": "96-33-3", + "transportMethod": "", + "sebc": "", + "usage": "접착제, 계면활성제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.13, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MACR", + "name": "Methyl acrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 751, + "abbreviation": "MDISO", + "nameKr": "메틸렌 디페닐 디이소시아네이트", + "nameEn": "Methyl diisocyanate", + "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", + "synonymsKr": "4,4′-메틸렌 비스(페닐 이소시아네이트)(고체) / 4,4'-디페닐메탄디이소시아네이트 / 4,4′-메틸렌비스(페닐이소시아네 / 4,4′-메틸렌비스(페닐이소시아네이트)(고체) / 메틸렌디(비스)페닐4,4‘-디이소시아네이트 / 메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산) / 4,4'-메틸렌디(비스)페닐디이소시아네이트 / 메틸렌비스(4-페닐아이소사이아네이트) / 4,4'-디이소시안산 디페닐메탄 / 4,4-디이소시안산디페닐메탄 / 메틸렌비스페닐이소시아네이트", + "unNumber": "2206", + "casNumber": "101-68-8", + "transportMethod": "", + "sebc": "", + "usage": "단열재, 건축재, 접착제, 스판덱스. 합성피혁 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MDISO", + "name": "Methyl diisocyanate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 752, + "abbreviation": "MES", + "nameKr": "메틸 에스테르", + "nameEn": "Methyl ester", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "57153-18-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MES", + "name": "Methyl ester", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 753, + "abbreviation": "MIAK", + "nameKr": "메틸 이소아밀 케톤", + "nameEn": "Methyl isoamyl ketone", + "synonymsEn": "5-Methyl-2-hexanone / 5-Methylhexan-2-one / MIAK / ISOAMYL METHYL KETONE / METHYL ISOAMYL KETONE / 5-methyl-hexan-2-one / 2-Hexanone,5-methyl- / -2-hexanone / Isobutylaceton / 5-Methyl-2-hex / Methyl-2-hexan", + "synonymsKr": "메틸이소아밀케톤 / 5-메틸-2-헥사논 / 메틸이소아밀케톤 / 5-메틸헥산-2-온 / 메틸이소아밀케톤 / 2-메틸-5-헥산온 / 3-메틸뷰틸 메틸 케톤 / 5-메틸-2-헥산온 / 5-메틸-헥산-2-온 / 메틸 아이소아밀 케톤 / 메틸헥산온 / 아이소아밀 메틸 케톤", + "unNumber": "", + "casNumber": "110-12-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MIAK", + "name": "Methyl isoamyl ketone", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 754, + "abbreviation": "MIC", + "nameKr": "메틸 이소시아네이트", + "nameEn": "Methyl isocyanate", + "synonymsEn": "METHYLISOCYANATE 1 X 500MG NEAT / Methyl isocyanate / Isocyanatomethane / CH3NCO / tl1450 / TL 1450 / WLN: OCN1 / Isocyanamethane / methylisocyanat / Methylisokyanat / metilisocianato", + "synonymsKr": "메틸 이소시아네이트 / 메틸아이소사이아네이트 / 메탄,이소시안아토 / 메틸탄호이미드 / 메틸이소시아네이트 / 이소시안산메틸에스테르 / 메틸이소시아네이트 / 메틸아이소시아네이트 / 메틸 아이소사이아네이트 / 메테인, 아이소사이아네이토- / 메틸이미노-옥소메테인 / 아이소사이아네이토메테인 / 아이소사이아네이트, 메틸 / 아이소사이안산, 메틸 에스터 / 아이소사이안산의 메틸 에스터", + "unNumber": "", + "casNumber": "624-83-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MIC", + "name": "Methyl isocyanate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 755, + "abbreviation": "MLRATE", + "nameKr": "메틸라우레이트", + "nameEn": "Methyl laurate", + "synonymsEn": "METHYL LAURATE / METHYL DODECANOATE / DODECANOIC ACID METHYL ESTER / LAURIC ACID METHYL ESTER / Methyl dodecylate / FEMA 2715 / stepanc40 / uniphata40 / Uniphat A40 / Dodecanoic ac / metholene2296", + "synonymsKr": "라우릴산메틸에스테르 / 라우릴산메틸에스테르 / 메틸로린산 / 메틸도데카노에이트 / 메틸로린산 / 메틸라우레이트 / 메틸 도데카노에이트", + "unNumber": "", + "casNumber": "111-82-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MLRATE", + "name": "Methyl laurate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 756, + "abbreviation": "MOLETATE", + "nameKr": "메틸 올레이트", + "nameEn": "Methyl oletate", + "synonymsEn": "Methyl Oleate / OLEIC ACID METHYL ESTER / METHYL OCTADECENOATE / METHYL CIS-9-OCTADECENOATE / Methyl (9Z)-9-octadecenoate / 9-Octadecenoicacid(Z)-,methylester / CIS-9-OCTADECENOIC ACID METHYL ESTER / nsc406282 / Emery 2219 / Emery 2301 / emerest2801", + "synonymsKr": "올레인산 메틸 / 올레인산메틸 / 올레인산메틸 / 메틸올리에이트 / (Z)-9-옥타데센산 메틸 에스터 / 메틸 9-옥타데켄오에이트 / 올레인산 메틸", + "unNumber": "", + "casNumber": "112-62-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MOLETATE", + "name": "Methyl oletate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 757, + "abbreviation": "MPALM", + "nameKr": "메틸 팔미테이트", + "nameEn": "Methyl palmitate", + "synonymsEn": "Methyl palmitate / METHYL HEXADECANOATE / C16 / HEXADECANOIC ACID METHYL ESTER / PALMITIC ACID METHYL ESTER / Hexadecanoic / n-Hexadecanoic acid methyl ester / METHYL PALMITATE, STANDARD FOR GC / mitate / Emery 2216 / Radia 7120", + "synonymsKr": "메틸 팔미드산 염 / 메틸팔미드산염 / 메틸팔미드산염 / 메틸팔미테이트 / 메틸헥사데카노에이트", + "unNumber": "", + "casNumber": "112-39-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MPALM", + "name": "Methyl palmitate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 758, + "abbreviation": "MSTEAR", + "nameKr": "메틸 스테아레이트", + "nameEn": "Methyl stearate", + "synonymsEn": "METHYL STEARATE / METHYL OCTADECANOATE / STEARIC ACID METHYL ESTER / OCTADECANOIC ACID METHYL ESTER / Methyl stearate CRS / METHYL N-OCTANDECANOATE / emery2218 / Emery 2218 / kemester9018 / kemester9718 / Methylstearat", + "synonymsKr": "메틸 스테아레이트 / 메틸스테아레이트 / 메틸스테아레이트 / 메틸옥타데카노에이트", + "unNumber": "", + "casNumber": "112-61-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MSTEAR", + "name": "Methyl stearate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 759, + "abbreviation": "MSM", + "nameKr": "메틸스티렌", + "nameEn": "Methyl styrene monomer", + "synonymsEn": "2-Phenyl-1-propene / AMS / Α-METHYLSTYRENE / ALPHA-METHYLSTYRENE / 2-PHENYLPROPENE / A-METHYL STYRENE / ISOPROPENYLBENZENE / (1-Methylethenyl)benzene / à-methylstyrene / α-Methylphenylene / (1-methylethenyl)-benzen", + "synonymsKr": "알파-메틸 스타이렌 / α-메틸스티렌 / 알파-메틸스티렌 / 알파-메틸스타이렌 / 알파-메틸스티렌 / 알파-메틸 스타이렌 / 2-페닐-1-프로펜", + "unNumber": "2303", + "casNumber": "98-83-9", + "transportMethod": "", + "sebc": "", + "usage": "접착제, 코팅제 제조 스티렌 중합체와 수지, 에틸렌 프로필렌 수지의 중간체로 주로사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MSM", + "name": "Methyl styrene monomer", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 760, + "abbreviation": "MAACE", + "nameKr": "메틸 테르트-부틸 에테르", + "nameEn": "Methylamyl acetate", + "synonymsEn": "METHYL TERT-BUTYL ETHER / TERT-BUTYL METHYL ETHER METHYL TERT- BUTYL ETHER / 2-METHOXY-2-METHYLPROPANE", + "synonymsKr": "메틸 삼차뷰틸 에테르 / TERT-부틸 메틸 에테르", + "unNumber": "2398", + "casNumber": "1634-04-4", + "transportMethod": "", + "sebc": "", + "usage": "주로 가솔린 첨가제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MAACE", + "name": "Methylamyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 761, + "abbreviation": "MAA", + "nameKr": "메틸 아밀 알코올", + "nameEn": "Methylamyl alcohol", + "synonymsEn": "2-Methyl-2-butanol / TERT-AMYL ALCOHOL / T-AMYL ALCOHOL / 2-METHYLBUTAN-2-OL / t-amyl / TERT-PENTANOL / AMYLENE HYDRATE / 2-methyl-2-butano / TERT-PENTYL ALCOHOL / Tert-AmylAlcohol,99% / tert-Isoamyl alcohol", + "synonymsKr": "삼차-아밀알코올 / 2-메틸-2-뷰탄올 / 삼차-아밀알코올 / 삼차-펜틸알코올 / 삼차-펜틸알코올", + "unNumber": "", + "casNumber": "75-85-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MAA", + "name": "Methylamyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 762, + "abbreviation": "MOIL", + "nameKr": "미네랄 오일", + "nameEn": "Mineral oil", + "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", + "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", + "unNumber": "", + "casNumber": "8042-47-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MOIL", + "name": "Mineral oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 763, + "abbreviation": "MVAO", + "nameKr": "혼합 식물성 산성 오일", + "nameEn": "Mixed vegetable acid oil", + "synonymsEn": "Vegetable fatty acids / exvegetable-oil / Vegetable fatty acids / Destiled Rice Fatty Acid / Vegetable oil fatty acids / Mixed vegetable oil acids / Fatty acids, vegetable-oil / Acidulated vegetable oil soapstock", + "synonymsKr": "지방 산, 식물성-기름 / 지방산,식물성-기름 / 지방산,식물성-기름(FATTYACIDS,VEGETABLE-OIL)", + "unNumber": "", + "casNumber": "61788-66-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MVAO", + "name": "Mixed vegetable acid oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 764, + "abbreviation": "MWAX", + "nameKr": "혼합 왁스", + "nameEn": "Mixed wax", + "synonymsEn": "Alkenes, C>10 .alpha.-, polymd. / ET-2428 / ALPHA ALKENES / Alkenes, C$10 .alpha.-, polymd. / ALKENES, C10, ALPHA, POLYMERIZED / alkenes, C>10 alpha-, polymerised", + "synonymsKr": "알켄, C>10, 알파, 중합체화된 / 알켄,C>10,알파,중합체화된 / 알켄,C>10,알파,중합체화된(ALKENES,C>10,ALPHA,POLYMERIZED) / 알켄,C>10.alpha.-,polymd.", + "unNumber": "", + "casNumber": "68527-08-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MWAX", + "name": "Mixed wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 765, + "abbreviation": "MXX", + "nameKr": "혼합 자일렌", + "nameEn": "Mixed xylene", + "synonymsEn": "Xylene / XYLENES / XyL / XYLOL / DIMETHYLBENZENE / MIXED XYLENE / xylenen / XYLENES, MIXED / NAPHTHA SOLVENT / benzene,dimethyl- / SCINTILENE COCKTAIL", + "synonymsKr": "자일렌 / 디메틸벤젠(오쏘,메타,파라-이성체) / 자일렌 / 자일렌(크실렌) / 크실렌 / 크실렌(오르토,메타,파라이성체) / 크실렌(오르토,메타,파라이성체)디메틸벤젠(오쏘,메타,파라-이성체)Xylene,o,m,p-isomersXylene(o,m,p-isomers) / 자일렌(XY) / 디메틸벤젠", + "unNumber": "", + "casNumber": "1330-20-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MXX", + "name": "Mixed xylene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 766, + "abbreviation": "MOLRF", + "nameKr": "설탕 찌꺼기", + "nameEn": "Molasses RF", + "synonymsEn": "Molasses / tangmi / Molasses / Cane syrup / CANEMOLASSES / beet molasses / Molasses, beet / Einecs 270-698-1 / Beet sugar molasses / Molasses ISO 9001:2015 REACH", + "synonymsKr": "당밀 / 당밀 / molasses / 당밀", + "unNumber": "", + "casNumber": "68476-78-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MOLRF", + "name": "Molasses RF", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 767, + "abbreviation": "MCBZN", + "nameKr": "클로로벤젠", + "nameEn": "Monochlorobenzene", + "synonymsEn": "Chlorobenzene / MONOCHLOROBENZENE / Chlorobenzen / Chlorbenzol / Chlorbenzene / CHLOROBENZOL / PHENYL CHLORIDE / cp27 / NSC 8433 / U.N. 1134 / orobenzene", + "synonymsKr": "클로로벤젠 / 클로로벤젠 / 모노클로로벤졸 / 벤젠,클로로 / 테트로신SP / 모노클로로벤젠 / 벤젠염화물 / 페닐염화물 / 벤젠 염화물 / 벤젠, 클로로 / 테트로신 SP / 페닐 염화물", + "unNumber": "", + "casNumber": "108-90-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MCBZN", + "name": "Monochlorobenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 768, + "abbreviation": "MNTWAX", + "nameKr": "몬탄 왁스", + "nameEn": "Monta wax", + "synonymsEn": "MONTAN WAX / MONTAN WAX / Montan wax (technical grade) / TIANFU-CHEM 8002-53-7 MONTAN WAX", + "synonymsKr": "몬탄 왁스 / 몬탄왁스 / 몬탄왁스(MONTANWAX)", + "unNumber": "", + "casNumber": "8002-53-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MNTWAX", + "name": "Monta wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 769, + "abbreviation": "MPL", + "nameKr": "모르폴린", + "nameEn": "Morpholine", + "synonymsEn": "Morpholine / MORPHOLIN / 1,4-Oxazinan / TETRAHYDRO-1,4-OXAZINE / 1-Oxa-4-azacyclohexane / basf238 / NA 2054 / BASF 238 / Drewamine / Morphorin / Morpholine", + "synonymsKr": "모르폴린 / 모르폴린 / 1-옥사-4-아자시클로헥산 / 디에틸렌옥스이미드 / 디에틸렌이미드산화물 / 디에틸엔이미드산화물 / 몰포린 / 테트라히드로-1,4-옥사진 / 테트라히드로-1,4-이소옥사진 / 테트라-히드로-2H-1,4-옥사진 / 모르포린 / 모르포린및그염류 / 모폴린", + "unNumber": "", + "casNumber": "110-91-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MPL", + "name": "Morpholine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 770, + "abbreviation": "MPLE", + "nameKr": "모르폴린 에탄올", + "nameEn": "Morpholine ethanol", + "synonymsEn": "2-Morpholinoethanol / 2-Morpholinoethan-1-ol / 4-MORPHOLINEETHANOL / 2-MORPHOLIN-4-YL-ETHANOL / 4-(2-HYDROXYETHYL)MORPHOLINE / NSC 1946 / AKOS MSC-0730 / MORPHOLINOETHANOL / AKOS BBS-00004369 / Morpholine ethanol / 2-MORPHOLINETHANOL", + "synonymsKr": "하이드록시에틸모르폴린 / 4-(2-하이드록시에틸)모폴린 / 4-(2-하이드록시에틸)모르폴린 / 하이드록시에틸모르폴린 / 2-모르폴리노에탄올", + "unNumber": "", + "casNumber": "622-40-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MPLE", + "name": "Morpholine ethanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 771, + "abbreviation": "MOSM", + "nameKr": "", + "nameEn": "MOSSPAR M", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MOSM", + "name": "MOSSPAR M", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 772, + "abbreviation": "MOS120", + "nameKr": "", + "nameEn": "Mosstanol 120", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MOS120", + "name": "Mosstanol 120", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 773, + "abbreviation": "MPCRSL", + "nameKr": "m-p-크레졸", + "nameEn": "m-p-Cresol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "108-95-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MPCRSL", + "name": "m-p-Cresol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 774, + "abbreviation": "MURUFAT", + "nameKr": "야자씨가루", + "nameEn": "Murumuru fat", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "356065-49-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MURUFAT", + "name": "Murumuru fat", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 775, + "abbreviation": "MSDSO", + "nameKr": "겨자씨 기름", + "nameEn": "Mustard seed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8007-40-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MSDSO", + "name": "Mustard seed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 776, + "abbreviation": "MVIN40", + "nameKr": "", + "nameEn": "MVIN 40", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MVIN40", + "name": "MVIN 40", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 777, + "abbreviation": "MVIN65", + "nameKr": "", + "nameEn": "MVIN 65 NG", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MVIN65", + "name": "MVIN 65 NG", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 778, + "abbreviation": "MVIN170", + "nameKr": "", + "nameEn": "MVIN170", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MVIN170", + "name": "MVIN170", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 779, + "abbreviation": "MYRISTIC", + "nameKr": "", + "nameEn": "Myristic acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MYRISTIC", + "name": "Myristic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 780, + "abbreviation": "NDMAA", + "nameKr": "n,n-디메틸아세트아미드", + "nameEn": "n,n-Dimethylacetamide solution (40% or less)", + "synonymsEn": "N,N-Dimethylacetamide / DMA / DMAC / Dimethyl acetamide / CH3CON(CH3)2 / N,N-Dimethylacetamide, 99%, pure / dimethylacetamid / N,N-Dimethylethanamide / Acetic acid dimethylacetamide / DMAC, Dimethylacetamide / U-5954", + "synonymsKr": "N,N-디메틸아세트아미드 / N,N-다이메틸아세트아마이드 / N,N-디메틸아세트아미드 / 다이메틸아세트아마이드 / N-디메틸아세트아미드 / N,N-다이메틸아세타마이드 / DMAC / 다이메틸 아세트아마이드 / 아세트 산 다이에틸아마이드", + "unNumber": "", + "casNumber": "127-19-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NDMAA", + "name": "n,n-Dimethylacetamide solution (40% or less)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 781, + "abbreviation": "NALKN10", + "nameKr": "n-알칸", + "nameEn": "n-Alkanes (C10+)", + "synonymsEn": "N-NONANE / NONANE / 1-NONANE / n-C9H20 / nonanes / N-NONANE / ALKANE C9 / Nonane>NONANE(SG) / shellsol140 / #nn-Nonane", + "synonymsKr": "노르말노난 / N-노네인 / 노난 / 노르말노난 / 노네인 / n-노난", + "unNumber": "", + "casNumber": "111-84-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NALKN10", + "name": "n-Alkanes (C10+)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 782, + "abbreviation": "NAACE", + "nameKr": "n-아밀 아세테이트", + "nameEn": "n-Amyl acetate", + "synonymsEn": "Amyl acetate / PENTYL ACETATE / N-AMYL ACETATE / ACETIC ACID PENTYL ESTER / N-PENTYL ACETATE / n-amyl / 1-PENTYL ACETATE / normal / PEAR OIL / ai3-02729 / Birnenoel", + "synonymsKr": "N-아밀 아세테이트 / N-아밀아세테이트 / 노르말아밀아세트산 / 노말-초산아밀 / 아세트산N-아밀에스테르 / 노말-초산아밀 / 아밀아세테이트 / N-아밀 아세테이트 / 1-아세톡시펜테인 / 1-펜틸 아세테이트 / n-펜틸 아세테이트 / 아밀 아세테이트 / 아세테이트, N-아밀 / 아세트산, 1-펜틸 에스터 / 아세트산, 펜틸 에스터 / 펜틸 아세테이트 / 펜틸 에타노에이트 / 1-펜틸아세테이트", + "unNumber": "", + "casNumber": "628-63-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NAACE", + "name": "n-Amyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 783, + "abbreviation": "NAAL", + "nameKr": "노멀-아밀알코올", + "nameEn": "n-Amyl alcohol", + "synonymsEn": "1-Pentanol / AMYL ALCOHOL / PENTAN-1-OL / N-PENTANOL / FUSEL OIL / N-AMYL ALCOHOL / Amylol / PENTYL ALCOHOL / N-PENTYL ALCOHOL / 1-Pentano1 / Pentanol-1", + "synonymsKr": "1-펜타놀 / 1-펜타놀 / N-아밀알코올 / 아밀알코올 / N-펜틸알코올 / N-아밀알코올 / 아밀알코올 / 아밀올 / 펜틸알코올 / 1-펜탄올 / N-부틸카빈올 / 일차아밀알 / N-아밀알코올 / N-펜틸 알코올 / 1-펜틸 알코올 / n-아밀 알코올 / n-펜탄올 / 아밀 알코올 / 펜탄-1-올 / 펜탄올 / 펜틸 알코올", + "unNumber": "1105", + "casNumber": "71-41-0", + "transportMethod": "", + "sebc": "", + "usage": "제약제조 원료, 합성 조미료, 윤활유 첨가제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NAAL", + "name": "n-Amyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 784, + "abbreviation": "NPTHS", + "nameKr": "솔벤트 나프타", + "nameEn": "Naphtha (Solvent)", + "synonymsEn": "Solvent naphtha (petroleum), light arom. / Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA", + "synonymsKr": "경 방향족 화합물 용제 나프타 / 경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물(SOLVENTNAPHTHA(PETROLEUM),LIGHTAROMATIC) / C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족.", + "unNumber": "", + "casNumber": "64742-95-6 64742-95-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPTHS", + "name": "Naphtha (Solvent)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 785, + "abbreviation": "NPTHA", + "nameKr": "나프텐산", + "nameEn": "Naphthenic acid", + "synonymsEn": "NAPHTHENIC ACID / NAPHTHENIC ACIDS / agenap / sunapticacidb / 3-NAPHTHENIC ACID / naphid / NAPHTENIC ACID / NAPHTHENIC ACID / sunaptic acid c / Antiwear agent 1602 / AcidUM TranexaMicuM", + "synonymsKr": "나프텐산 / 나프텐산 / 나프텐산 / 나프텐산류", + "unNumber": "", + "casNumber": "1338-24-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPTHA", + "name": "Naphthenic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 786, + "abbreviation": "NBPKS", + "nameKr": "파라핀의 일종(화장품, 플라스틱, 고무제품 원료)", + "nameEn": "NB palm kernel stearin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "91079-14-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBPKS", + "name": "NB palm kernel stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 787, + "abbreviation": "NBDPKL", + "nameKr": "파라핀의 일종(화장품, 플라스틱, 고무제품 원료)", + "nameEn": "NBD palm kernel olein", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "91079-14-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBDPKL", + "name": "NBD palm kernel olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 788, + "abbreviation": "NBDPO", + "nameKr": "", + "nameEn": "NBD palm oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBDPO", + "name": "NBD palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 789, + "abbreviation": "NBDPL", + "nameKr": "", + "nameEn": "NBD palm olein", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBDPL", + "name": "NBD palm olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 790, + "abbreviation": "NBDPS", + "nameKr": "", + "nameEn": "NBD palm stearin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBDPS", + "name": "NBD palm stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 791, + "abbreviation": "NBACE", + "nameKr": "아세트산부틸(아세트산의 n-부틸 에스터)", + "nameEn": "n-Butyl acetate", + "synonymsEn": "Butyl acetate / N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate", + "synonymsKr": "아세트산부틸 / 아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트", + "unNumber": "", + "casNumber": "123-86-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBACE", + "name": "n-Butyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 792, + "abbreviation": "NBACR", + "nameKr": "아크릴산부탄", + "nameEn": "n-Butyl acrylate", + "synonymsEn": "Butyl acrylate / TBA / T-BUTYL ACRYLATE / 2-Propenoic acid butyl ester / Butyl propenoate / ACRYLIC ACID TERT-BUTYL ESTER / TERTIARY-BUTYL ACRYLATE / ButyAcrylate / Butyl acrylate / Acrylic acid b / 1-butylacrylate", + "synonymsKr": "아크릴산부탄 / N-뷰틸아크릴레이트 / 노말-부틸프로페논염 / 부틸아크릴산 / 아크릴산노말-부틸에스테르 / 2-프로펜산,부틸에스N-BUTYLACRYLATE / n-부틸아크릴레이트 / 노말-부틸아크릴레이트 / 부탄아크릴레이트 / 부틸-2-프로페논염 / 아크릴산부탄 / 아크릴산뷰틸 / n-뷰틸아크릴산 / N-뷰틸 아크릴레이트 / 2-프로펜 산, n-뷰틸 에스터 / n-뷰틸 아크릴 산 / n-뷰틸 프로펜 산 / 뷰틸-2-프로펜 산 / 아크릴 산 뷰틸 에스터", + "unNumber": "2348", + "casNumber": "141-32-2", + "transportMethod": "", + "sebc": "", + "usage": "코팅제, 접착제, 실란트, 섬유 마감재, 플라스틱 등 다양한 분양에서 사용되는 화학물질", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBACR", + "name": "n-Butyl acrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 793, + "abbreviation": "NBAMN", + "nameKr": "n-부틸아민", + "nameEn": "n-Butyl amine", + "synonymsEn": "Butylamine / BA / N-BUTYLAMINE / Butan-1-amine / MNBA / 1-BUTANAMINE / 1-BUTYLAMINE / MONO-N-BUTYLAMINE / Butylamin / Butanamine / n-Butilamina", + "synonymsKr": "모노부틸아민 / N-뷰틸아민 / n-부틸아민 / 모노부틸아민 / 부틸아민 / N-부틸아민 / 부틸아민 / 1-아미노부탄 / 노르발아민 / 모노부틸아민 / 1-부탄아민 / 1-부 / 부탄-1-아민", + "unNumber": "", + "casNumber": "109-73-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBAMN", + "name": "n-Butyl amine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 794, + "abbreviation": "NBE", + "nameKr": "이뷰틸 에테르", + "nameEn": "n-Butyl ether", + "synonymsEn": "Dibutyl ether / NBE / DIBUTYL ETHER / N-BUTYL ETHER / BUTYL ETHER / 1-BUTOXYBUTANE / DIBUTYL OXIDE / Specifications / N-DIBUTYL ETHER / 1,1’-oxybis-butan / etherbutylique(french)", + "synonymsKr": "이뷰틸 에테르 / 다이뷰틸에테르 / 1,1-옥시-비스부탄 / 1-부톡시부탄 / N-디부틸에테르 / N-부틸에테르 / 대부틸산화물부탄 / 디부틸에테르 / 이뷰틸에테르 / 디-N-부틸에테르 / 1,1'-옥시-비스부탄 / 부틸에테르 / 1-부톡시부탄 / 부 / 이뷰틸에테르 / 다이뷰틸 에테르 / DI-n-부틸에테르", + "unNumber": "", + "casNumber": "142-96-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.4.6, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBE", + "name": "n-Butyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 795, + "abbreviation": "NBMA", + "nameKr": "n-뷰틸 메타크릴레이트", + "nameEn": "n-Butyl methacrylate", + "synonymsEn": "Butyl methacrylate / bma / N-BUTYL METHACRYLATE / n-BMA / 2-Propenoic acid, 2-methyl-, butyl ester / 2-Methyl-2-propenoic acid butyl ester / butilmetacrilato / Butil metacrilato / Butylmethacrylaat / BUTYL METHACRYLATE / 1-BUTYLMETHACRYLATE", + "synonymsKr": "N-뷰틸 메타크릴레이트 / N-뷰틸메타크릴레이트 / N-부틸알파-메타크릴산 / 메타크릴METHACRYLICACID,BUTYLESTER / 부틸2-메타크릴산 / 부틸-2-메틸-2-프로펜산 / N-부틸메타크릴산 / 메타아크릴산뷰틸 / 메타크릴산n-부틸 / 메트아크릴산,부틸에스테르 / 부틸메타크릴레이트 / N-뷰틸 메타크릴레이트", + "unNumber": "", + "casNumber": "97-88-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBMA", + "name": "n-Butyl methacrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 796, + "abbreviation": "NBALD", + "nameKr": "부틸알데히드", + "nameEn": "n-Butyl aldehyde", + "synonymsEn": "Butyraldehyde / BUTANAL / N-BUTYRALDEHYDE / N-BUTANAL / propanecarbaldehyde / BUTAL / 1-Butanal / BUTYL ALDEHYDE / Butyraldehyd / BUTARALDEHYDE / N-BUTYL ALDEHYDE", + "synonymsKr": "n-뷰탈알데히드 / 부티르알데히드 / n-뷰탈알데히드 / n-뷰틸알데하이드 / n-뷰틸알데히드 / 부틸알데히드 / 뷰틸알데하이드 / n-뷰티르알데하이드 / 뷰탄알 / 뷰탄알데하이드 / 뷰탈 / 뷰트알데하이드 / 뷰티랄 / 뷰티르 알데하이드 / 뷰티르알데하이드 / 뷰티릴알데하이드 / 뷰틸 알데하이드 / n-부탄알", + "unNumber": "", + "casNumber": "123-72-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBALD", + "name": "n-Butyl aldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 797, + "abbreviation": "NBRA", + "nameKr": "n-부티르산", + "nameEn": "n-Butyric acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "107-92-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBRA", + "name": "n-Butyric acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 798, + "abbreviation": "DCAN", + "nameKr": "데칸", + "nameEn": "n-Decane", + "synonymsEn": "Decane / N-DECANE / Decan / n-Decan / n-Decane, 99.5% / n-Decane for synthesis / DECANE / n-C10H22 / N- Decano / ALKANE C10 / Decane >", + "synonymsKr": "N-데칸 / N-데칸 / 노르말데칸 / 데케인", + "unNumber": "2247", + "casNumber": "124-18-5", + "transportMethod": "", + "sebc": "", + "usage": "윤활유, 연료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCAN", + "name": "n-Decane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 799, + "abbreviation": "NDCAN", + "nameKr": "n-데칸", + "nameEn": "n-Decane", + "synonymsEn": "Decane / N-DECANE / Decan / n-Decan / n-Decane, 99.5% / n-Decane for synthesis / DECANE / n-C10H22 / N- Decano / ALKANE C10 / Decane >", + "synonymsKr": "N-데칸 / N-데칸 / 노르말데칸 / 데케인", + "unNumber": "2247", + "casNumber": "124-18-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NDCAN", + "name": "n-Decane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 800, + "abbreviation": "NDA", + "nameKr": "1-데카놀", + "nameEn": "n-Decyl alcohol", + "synonymsEn": "1-Decanol / 1-DECANOL / DECANOL / DECAN-1-OL / Antak / N-DECANOL / n-decyl / Exxal 10 / ALCOHOL C10 / n-Decan-1-ol / CAPRIC ALCOHOL", + "synonymsKr": "데실 알코올 / 1-데카놀 / 데실알코올 / 데실알코올 / 1-데칸올 / 1차 데킬 알코올 / C-10 알코올 / EPAL 10 / n-데실 알코올 / N-데카틸 알코올 / N-데칸올 / N-데킬 알코올 / T 148 / 노닐카빈올 / 데실 알코올 / 데칸올 / 데킬 알코올 / 디톨 S-91 / 시폴 L 10 / 안타크 / 알코올 C-10", + "unNumber": "", + "casNumber": "112-30-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NDA", + "name": "n-Decyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 801, + "abbreviation": "NDL232", + "nameKr": "알코올 에툭실레이트", + "nameEn": "Neodol 23-2", + "synonymsEn": "C12-13 PARETH-3 / DAN100 / Tomadol 23-1 / Tomadol 23-3 / Tomadol 23-6.5 / C12-13 PARETH-9 / C12-13 PARETH-7 / C12-13 PARETH-6 / C12-13 PARETH-15 / C12-13 PARETH-10 / Alcohols, C12-13, ethoxylated", + "synonymsKr": "알코올, C12-13, 에톡실산화 / 알코올,C12-13,에톡실산화 / 알코올,C12-13,에톡실산화(ALCOHOLS,C12-13,ETHOXYLATED) / C12-13파레스-2 / C12-13파레스-3 / C12-13파레스-5 / C12-13파레트-3", + "unNumber": "", + "casNumber": "66455-14-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NDL232", + "name": "Neodol 23-2", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 802, + "abbreviation": "NDL253", + "nameKr": "알코올 에툭실레이트", + "nameEn": "Neodol 25-3", + "synonymsEn": "C12-15 PARETH-2 / AEC-9NA / Primary Alcobol Ethoxylate / C12-15 PARETH-9 / Alcohols, C12-15, ethoxylated / C12-15 PARETH-3 / C12-15 PARETH-12 / C12-15 PARETH-10 / Neodol-12 / Tomadol 25-9 / AEO-3,Mw ~315", + "synonymsKr": "직선상의 에톡시산 알코올 (C12-C15) / 직선상의에톡시산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / C12-15파레스-10 / C12-15파레스-11 / C12-15파레스-12 / C12-15파레스-2 / C12-15파레스-3 / C12-15파레스-4 / C12-15파레스-5 / C12-15파레스-7 / C12-15파레스-9 / C12-15파레트-2", + "unNumber": "", + "casNumber": "68131-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NDL253", + "name": "Neodol 25-3", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 803, + "abbreviation": "NDL257", + "nameKr": "알코올 에툭실레이트", + "nameEn": "Neodol 25-7", + "synonymsEn": "C12-15 PARETH-2 / AEC-9NA / Primary Alcobol Ethoxylate / C12-15 PARETH-9 / Alcohols, C12-15, ethoxylated / C12-15 PARETH-3 / C12-15 PARETH-12 / C12-15 PARETH-10 / Neodol-12 / Tomadol 25-9 / AEO-3,Mw ~315", + "synonymsKr": "직선상의 에톡시산 알코올 (C12-C15) / 직선상의에톡시산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / C12-15파레스-10 / C12-15파레스-11 / C12-15파레스-12 / C12-15파레스-2 / C12-15파레스-3 / C12-15파레스-4 / C12-15파레스-5 / C12-15파레스-7 / C12-15파레스-9 / C12-15파레트-2", + "unNumber": "", + "casNumber": "68131-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NDL257", + "name": "Neodol 25-7", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 804, + "abbreviation": "NPG", + "nameKr": "디메틸프로판디올", + "nameEn": "Neopentyl glycol", + "synonymsEn": "neopentyl glycol / NEOPENTYL GLYCOL / 2,2-Dimethylpropane-1,3-diol / 1,3-Dihydroxy-2,2-dimethylpropane / NEOPENTYL GLYCO / Neol / NPG Glycol / 2,2-Dimethyl-1 / NEOPENTYLENE GLYCOL / 2,2-BIS(HYDROXYMETHYL)PROPANE / NEOL®", + "synonymsKr": "네오펜틸 글리콜 / 네오펜틸글리콜 / 네오펜틸글라이콜 / 네오펜틸글리콜 / 2,2-디메틸-1,3-프로판디올 / 디메틸트리메틸렌 글리콜", + "unNumber": "", + "casNumber": "126-30-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPG", + "name": "Neopentyl glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 805, + "abbreviation": "NEAMN", + "nameKr": "모노에탄올아민", + "nameEn": "n-Ethanol amine", + "synonymsEn": "Monoethanolamine / MONOETHANOLAMINE / 2-Aminoethan-1-ol / 2-AMINOETHANOL / Olamine / Aminoethanol / GLYCINOL / 2-Ethanolamine / 2-HYDROXYETHYLAMINE / Ethanolamine, 99%, H2O 0.5% max / MEA 90", + "synonymsKr": "에탄올아민 / 2-아미노에탄올 / 2-아미노에타놀 / 2-에타놀아민 / 글리시놀 / 아미노에타놀 / 콜올아민 / 2-히드록시에탄아민 / 2-히드록시에틸아민 / 모노에타놀아민 / 베타-아미노에타놀 / 베타-아미노에틸알코올 / 베타-에타놀아민 / 베타-히드록시에틸아민 / 에타놀,2-아미노- / 에탄올아민 / 에틸올아민 / 모노에탄올아민 / 2-하이드록시에틸아민 / 콜라민", + "unNumber": "2491", + "casNumber": "141-43-5", + "transportMethod": "", + "sebc": "", + "usage": "가스 세정, 세제, 계면활성제, 유화제, 광택제 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NEAMN", + "name": "n-Ethanol amine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 806, + "abbreviation": "N150R", + "nameKr": "베이스 오일", + "nameEn": "Neutral oil 150R", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", + "unNumber": "", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "N150R", + "name": "Neutral oil 150R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 807, + "abbreviation": "N240R", + "nameKr": "베이스 오일", + "nameEn": "Neutral oil 240R", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", + "unNumber": "", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "N240R", + "name": "Neutral oil 240R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 808, + "abbreviation": "N500R", + "nameKr": "베이스 오일", + "nameEn": "Neutral oil 500R", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", + "unNumber": "", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "N500R", + "name": "Neutral oil 500R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 809, + "abbreviation": "N600R", + "nameKr": "베이스 오일", + "nameEn": "Neutral oil 600R", + "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", + "unNumber": "", + "casNumber": "64742-54-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "N600R", + "name": "Neutral oil 600R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 810, + "abbreviation": "NHPTN", + "nameKr": "노르말헵탄", + "nameEn": "n-Heptane", + "synonymsEn": "Heptane / N-HEPTANE / heptanes / Heptan / 1-HEPTANE / NORMAL HEPTANE / Aliphatic hydrocarbon / Gettysolve-C / Dipropylmethane / heptane(n-heptane) / Eptani", + "synonymsKr": "헵테인 / 노르말헵탄 / 노르말헵탄(NORMALHEPTANE) / 헵탄 / 헵테인 / 헵테인(헵탄) / n-헵탄", + "unNumber": "1206", + "casNumber": "142-82-5", + "transportMethod": "", + "sebc": "", + "usage": "고무 생산 및 가고처리 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NHPTN", + "name": "n-Heptane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 811, + "abbreviation": "NHXN", + "nameKr": "n-헥산", + "nameEn": "n-Hexane", + "synonymsEn": "Hexane / n-Hexane / HEXANES / 1-HEXANE / n-Hexan / dipropyl / NAPHTHA SOLVENT / ISOHEXANES / n-Hexane, HPLC, 95.0% min. / OXFORD / HEXANES HPLC", + "synonymsKr": "노르말헥산 / 헥산 / 노르말헥산 / 노말헥세인 / 메틸(2-)펜탄 / 헥산95% / 헥산98% / 헥산99% / 헥산(HEXANE) / N-헥산 / 헥산 / 헥실수소화물 / 노말헥산 / N-헥세인 / 노멀 헥세인", + "unNumber": "", + "casNumber": "110-54-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NHXN", + "name": "n-Hexane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 812, + "abbreviation": "NHXNL", + "nameKr": "n-헥사놀", + "nameEn": "n-Hexanol", + "synonymsEn": "1-Hexanol / HEXANOL / N-HEXANOL / HEXYL ALCOHOL / HEXAN-1-OL / 1-Hexenol / ALCOHOL C6 / 1-Hexyl alcohol / N-HEXYL ALCOHOL / FEMA 2567 / AMYLCARBINOL", + "synonymsKr": "헥사놀(1-) / N-헥산올 / 헥사놀(1-) / 헥산올 / 헥실알코올 / 아밀카빈올 / 카프로일알코올 / 헥산올 / 펜틸알코올 / 1-하이드록시헥 / 헥실알코올 / 1-헥산올", + "unNumber": "", + "casNumber": "111-27-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NHXNL", + "name": "n-Hexanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 813, + "abbreviation": "NPOL", + "nameKr": "", + "nameEn": "Niax polyol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPOL", + "name": "Niax polyol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 814, + "abbreviation": "NBZN", + "nameKr": "", + "nameEn": "Nitrobenzene", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NBZN", + "name": "Nitrobenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 815, + "abbreviation": "NETN", + "nameKr": "나트로에탄", + "nameEn": "Nitroethane", + "synonymsEn": "Nitroethane / C2H5NO2 / 1-Nitroethane / Nitroparaffin / nitro-ethan / Ethane,nitro- / 2-Nitroethane / Nitroethane,99% / nitroetan(polish) / NITROETHANE,REAGENT / Nitroetan", + "synonymsKr": "니트로에탄 / 나이트로에테인 / 니트로에탄 / 나이트로에탄", + "unNumber": "", + "casNumber": "79-24-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC(f)", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.6.1, 16.6.2, 16.6.4", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NETN", + "name": "Nitroethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 816, + "abbreviation": "NPROPANE", + "nameKr": "1-니트로프로판", + "nameEn": "Nitropropane", + "synonymsEn": "1-Nitropropane / 1-NP / ai3-02264 / n-C3H7NO2 / 1-Nitropro / 1-Nitropan / NiPar S-10 / 1-nitro-propan / 1-NITROPROPANE / N-Nitropropane / Propane,1-nitro-", + "synonymsKr": "1-니트로프로판 / 1-나이트로프로판 / 1-나이트로프로페인(1-니트로프로판) / 1-니트로프로판", + "unNumber": "", + "casNumber": "108-03-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPROPANE", + "name": "Nitropropane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 817, + "abbreviation": "NMEAMN", + "nameKr": "n-메틸에탄올아민", + "nameEn": "n-Methyl ethanolamine", + "synonymsEn": "2-Methylaminoethanol / 2-(METHYLAMINO)ETHANOL / N-METHYLETHANOLAMINE / Ethanol, 2-(methylamino)- / N-Methylaminoethanol / Methylethanolamine / Methylaminoethanol / METHYLETHYLOLAMINE / N-Methyl-2-hydroxyethylamine / CL045 / Sar-OL", + "synonymsKr": "N-메틸에탄올아민 / 2-메틸아미노에탄올 / N-메틸에탄올아민 / 2-(메틸아미노)에탄올 / 메틸에탄올아민 / (2-하이드록시에틸)메틸아민 / (하이드록시에틸)메틸아민 / 2-(N-메틸아미노)에탄올 / 2-하이드록시-N-메틸에틸아민 / 메틸(베타-하이드록시에틸)아민 / 베타-(메틸아미노)에탄올 / 에탄올, 2-(메틸아미노)-", + "unNumber": "", + "casNumber": "109-83-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NMEAMN", + "name": "n-Methyl ethanolamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 818, + "abbreviation": "NNNAN", + "nameKr": "n-노난", + "nameEn": "n-Nonane", + "synonymsEn": "N-NONANE / NONANE / 1-NONANE / n-C9H20 / nonanes / N-NONANE / ALKANE C9 / Nonane>NONANE(SG) / shellsol140 / #nn-Nonane", + "synonymsKr": "노르말노난 / N-노네인 / 노난 / 노르말노난 / 노네인 / n-노난", + "unNumber": "", + "casNumber": "111-84-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NNNAN", + "name": "n-Nonane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 819, + "abbreviation": "NNN", + "nameKr": "n-노난", + "nameEn": "n-Nonene", + "synonymsEn": "N-NONANE / NONANE / 1-NONANE / n-C9H20 / nonanes / N-NONANE / ALKANE C9 / Nonane>NONANE(SG) / shellsol140 / #nn-Nonane", + "synonymsKr": "노르말노난 / N-노네인 / 노난 / 노르말노난 / 노네인 / n-노난", + "unNumber": "", + "casNumber": "111-84-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NNN", + "name": "n-Nonene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 820, + "abbreviation": "NNNA", + "nameKr": "n-노난올", + "nameEn": "n-Nonyl alcohol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "143-08-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NNNA", + "name": "n-Nonyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 821, + "abbreviation": "NP40", + "nameKr": "에톡실레이티드 노닐페놀", + "nameEn": "Nonidet NP40", + "synonymsEn": "Nonylphenol Ethoxylate / Ethoxylated nonylphenol / NP 40 / ethyleneoxy / TX-9 / Nonoxinol / Nonylphenol polyoxyethylene ether / Nonylphenol polyethylene glycol ether / P40 / TX-5 / TX-6", + "synonymsKr": "에톡실레이티드 노닐페놀(EO-10) / 에톡실레이티드노닐페놀(EO-10) / 에톡실산화노닐페놀(EO-9) / 노닐페놀(N.P)#8 / 폴리에틸렌 글라이콜 노닐페닐 에테르 / 노닐페녹시폴리(에틸렌옥시)에탄올", + "unNumber": "", + "casNumber": "9016-45-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NP40", + "name": "Nonidet NP40", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 822, + "abbreviation": "NPHEN", + "nameKr": "노닐페놀", + "nameEn": "Nonyl phenol", + "synonymsEn": "NONYLPHENOL / 1-Dodecanethio / 4-Nonylphenol ers / NONYLPHENOL, TECH. / 4-Nonylphenol 4-Nonylphenol,tech. / BRANCHED4-NONYLPHENOL / 4-nonyl-phenobranched / Branchedp-nonylphenol / branched(mixedisomers) / C9-Branchedalkylphenol", + "synonymsKr": "노닐페놀, 4-가지형 / 4-노닐페놀,가지형 / 노닐페놀,4-가지형 / 노닐페놀류 / 페놀,4-노닐-,가지형 / 4-노닐페놀,가지형[2] / 가지있는 4-노닐페놀 / 4-노닐페놀, 가지형 / C9 가지형 알킬페놀 / p-노닐페놀 가지형", + "unNumber": "", + "casNumber": "84852-15-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPHEN", + "name": "Nonyl phenol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 823, + "abbreviation": "NPPE", + "nameKr": "", + "nameEn": "Nonyl phenol poly ethoxylate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPPE", + "name": "Nonyl phenol poly ethoxylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 824, + "abbreviation": "NOLFN10/13", + "nameKr": "", + "nameEn": "Normal olefins C10-13", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NOLFN10/13", + "name": "Normal olefins C10-13", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 825, + "abbreviation": "NPARA7", + "nameKr": "", + "nameEn": "NORPAR 7", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPARA7", + "name": "NORPAR 7", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 826, + "abbreviation": "NPARA", + "nameKr": "", + "nameEn": "N-Paraffin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPARA", + "name": "N-Paraffin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 827, + "abbreviation": "NPARA10/13", + "nameKr": "", + "nameEn": "n-Paraffin C10-13", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPARA10/13", + "name": "n-Paraffin C10-13", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 828, + "abbreviation": "NPARA14", + "nameKr": "", + "nameEn": "n-Paraffin C14", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPARA14", + "name": "n-Paraffin C14", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 829, + "abbreviation": "NPARA1417", + "nameKr": "", + "nameEn": "n-Paraffin C14-17", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPARA1417", + "name": "n-Paraffin C14-17", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 830, + "abbreviation": "NPTN", + "nameKr": "n-펜탄", + "nameEn": "n-Pentane", + "synonymsEn": "Pentane / N-PENTANE / PETANE / Pentan / 1-Pentane / n-C5H12 / N-PENTAN / R601 / NP80 / PENTANE / Pentani", + "synonymsKr": "펜탄 / 펜탄 / N-펜탄 / 노르말펜탄 / 아밀수화물 / 펜테인(펜탄)", + "unNumber": "1265", + "casNumber": "109-66-0", + "transportMethod": "", + "sebc": "", + "usage": "인공얼음, 플라스틱 발포제, 살충제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPTN", + "name": "n-Pentane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 831, + "abbreviation": "NPACE", + "nameKr": "n-프로필 아세테이트", + "nameEn": "n-Propyl acetate", + "synonymsEn": "Propyl acetate / N-PROPYL ACETATE / PROPYL ETHANOATE / 1-Propyl acetate / ACETIC ACID PROPYL ESTER / n-Propyl acetate, 99% 1LT / FEMA 2925 / octanpropylu / PROPYLACETAT / Octan propylu / PROPYL ACETATE", + "synonymsKr": "N- 프로필 아세테이트 / n-프로필아세트산 / 노말프로필아세테이트 / 초산프로필 / 아세트산프로필 / N-프로필아세트산(N.P.A.C) / 프로필아세테이트 / 초산프로필 / N- 프로필 아세테이트 / N-프로필 아세테이트 / 1-아세톡시프로페인 / 1-프로필 아세테이트 / 아세테이트, 프로필 / 아세트산 프로필 / 아세트산, n-프로필 에스터 / 아세트산, 프로필 에스터 / 프로필 에타노에이트", + "unNumber": "", + "casNumber": "109-60-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPACE", + "name": "n-Propyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 832, + "abbreviation": "NPAMN", + "nameKr": "n-프로필아민", + "nameEn": "n-Propylamine", + "synonymsEn": "Propylamine / PA / N-PROPYLAMINE / Propanamine / 1-PROPANAMINE / MNPA / 1-Propylamine / n-Propylaminwe / MONO-N-PROPYLAMINE / HPS9 / BLOS6", + "synonymsKr": "프로필아민 / 프로필아민 / n-프로필아민 / 1-프로판아민 / 1-아미노프로판 / MPA / 모노프로필아민 / 프로판-1-아민", + "unNumber": "", + "casNumber": "107-10-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPAMN", + "name": "n-Propylamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 833, + "abbreviation": "NUSUN", + "nameKr": "해바라기유", + "nameEn": "NU Sunflower", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8001-21-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NUSUN", + "name": "NU Sunflower", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 834, + "abbreviation": "NUD", + "nameKr": "n-운데케인", + "nameEn": "n-Undecane", + "synonymsEn": "n-Hendecane / UNDECANE / N-UNDECANE / HENDECANE / Undecan / ALKANE C11 / n-C11H24 / hendecan / 1-UNDECANE / Halpaclean / N-HENDECANE", + "synonymsKr": "n-운데케인 / n-운데칸 / 운데칸 / n-운데케인 / 운데케인", + "unNumber": "", + "casNumber": "1120-21-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NUD", + "name": "n-Undecane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 835, + "abbreviation": "NUTMG", + "nameKr": "육두구 기름", + "nameEn": "Nutmeg butter", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8007-12-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NUTMG", + "name": "Nutmeg butter", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 836, + "abbreviation": "NVA", + "nameKr": "", + "nameEn": "n-Valeraldehyde", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NVA", + "name": "n-Valeraldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 837, + "abbreviation": "NYL6", + "nameKr": "나일론", + "nameEn": "Nylon 6 by 6 salt", + "synonymsEn": "Nylon 6/6 / Poly[imino(1,6-dioxo-1,6-hexanediyl)imino-1,6-hexanediyl] / Nylon 66 powder / NYLON 6,6 POLYMERS / [-CO(CH2)4CONH(CH2)6NH-]n / POLY(HEXAMETHYLENE ADIPAMIDE) / POLY(HEXAMETHYLENE DODECANEDIAMIDE) / Nylon 6/6,Poly(N,N′-hexamethyleneadipinediamide, Poly(hexamethylene adipamide) / PA-66 / NYLON 6 / NYLON 6/6", + "synonymsKr": "나일론 6/6 / 나일론6/6 / 나일론66 / 나일론66 / 나일론-66", + "unNumber": "", + "casNumber": "32131-17-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NYL6", + "name": "Nylon 6 by 6 salt", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 838, + "abbreviation": "OCNBZN", + "nameKr": "o-클로로니트로벤젠", + "nameEn": "o-Chloronitrobenzene", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "88-73-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19, 16.2.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OCNBZN", + "name": "o-Chloronitrobenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 839, + "abbreviation": "OCRSL", + "nameKr": "o-크레졸", + "nameEn": "o-Cresol", + "synonymsEn": "o-Cresol / 2-METHYLPHENOL / Orthocresol / ortho-cresol / 2-Cresol / Phenol,2-methyl- / o-Creso / ORTHO CRESO / O-HYDROXYTOLUENE / 2-HYDROXYTOLUENE / 1-Methyl-2-hydroxybenzene", + "synonymsKr": "O-크레졸 / O-크레졸 / O-크레솔 / 1-메틸-2-하이드록시벤젠 / 1-하이드록시-2-메틸벤젠 / 2-메틸페놀 / 2-크레졸 / 2-하이드록시-1-메틸벤젠 / 2-하이드록시톨루엔 / O-메틸페놀 / O-옥시톨루엔 / O-크레실산 / o-하이드록시톨루엔 / 오쏘-크레솔 / 크레솔, 오쏘 / 페놀, 2-메틸-", + "unNumber": "", + "casNumber": "95-48-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OCRSL", + "name": "o-Cresol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 840, + "abbreviation": "OCTACID", + "nameKr": "옥탄올", + "nameEn": "Octanoic acid", + "synonymsEn": "1-Octanol / OCTANOL / N-OCTANOL / caprylic / OCTAN-1-OL / OCTYL ALCOHOL / N-OCTYL ALCOHOL / 1-Octano / N-CAPRYLIC ALCOHOL / Octilin / n-Octano", + "synonymsKr": "1-옥타놀 / 1-옥타놀 / 1-옥탄올 / 1-히드록시옥탄 / N-옥탄올 / 옥타놀-1 / 옥탄올 / 옥틸알코올 / 일차옥틸알코올 / 카프릴알코올 / 헵틸카빈올 / 카프릴릴알코올 / 1-하이드록시옥탄 / n-옥틸 알코올 / 옥틸 알코올 / 일차 옥틸 알코올 / 카프릴 알코올 / 헵틸 카빈올", + "unNumber": "", + "casNumber": "111-87-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OCTACID", + "name": "Octanoic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 841, + "abbreviation": "OA", + "nameKr": "옥탄올", + "nameEn": "Octanol", + "synonymsEn": "1-Octanol / OCTANOL / N-OCTANOL / caprylic / OCTAN-1-OL / OCTYL ALCOHOL / N-OCTYL ALCOHOL / 1-Octano / N-CAPRYLIC ALCOHOL / Octilin / n-Octano", + "synonymsKr": "1-옥타놀 / 1-옥타놀 / 1-옥탄올 / 1-히드록시옥탄 / N-옥탄올 / 옥타놀-1 / 옥탄올 / 옥틸알코올 / 일차옥틸알코올 / 카프릴알코올 / 헵틸카빈올 / 카프릴릴알코올 / 1-하이드록시옥탄 / n-옥틸 알코올 / 옥틸 알코올 / 일차 옥틸 알코올 / 카프릴 알코올 / 헵틸 카빈올", + "unNumber": "", + "casNumber": "111-87-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OA", + "name": "Octanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 842, + "abbreviation": "OCTN", + "nameKr": "알파옥텐", + "nameEn": "Octene", + "synonymsEn": "1-OCTENE / OCT-1-ENE / Octen / OCTEN-1 / Octylene / Neodene 8 / I-Octen / 1-C8H16 / 1-OCTENE / 1-0ctene / OCTENE-1", + "synonymsKr": "1-옥텐 / 1-옥틸렌 / 1-카프릴렌 / 알파옥텐 / 옥텐 / 옥틸렌 / 카프리렌 / N-1-옥텐 / 1-n-옥텐 / n-옥텐-1 / 알파-옥텐 / 알파-옥틸렌 / 옥트-1-엔 / 카프릴렌", + "unNumber": "1993 3295", + "casNumber": "111-66-0", + "transportMethod": "", + "sebc": "", + "usage": "플라스틱, 합성고무, 윤활유, 표면활성제 등 생산", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OCTN", + "name": "Octene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 843, + "abbreviation": "ODBZN", + "nameKr": "o-디클로로벤젠", + "nameEn": "o-Dichlorobenzene", + "synonymsEn": "1,2-Dichlorobenzene / O-DICHLOROBENZENE / ODCB / ORTHODICHLOROBENZENE / Chloroben / o-Dichlorbenzene / 2-dichlorobenzene / 1,2-Dichlorbenzene / Dichlorobenzene, o- / Dizene / Cloroben", + "synonymsKr": "1,2-디클로로벤젠 / 도우테름E / 벤젠,O-디클로로- / 0-다이클로로벤젠 / 1,2-디클로로벤젠 / 1벤젠,1,2-디클로로- / o-다이클로로벤젠 / o-디클로로벤젠 / O-디클로로벤젠,액체 / 클로로벤 / 디클로로벤젠 / O-다이클로로벤젠(1,2-다이클로로벤젠) / 1,2-다이클로로벤젠 / o-이염화벤젠", + "unNumber": "", + "casNumber": "95-50-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ODBZN", + "name": "o-Dichlorobenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 844, + "abbreviation": "OLE113", + "nameKr": "올레핀", + "nameEn": "Olefin 113(Shell)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "68514-35-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLE113", + "name": "Olefin 113(Shell)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 845, + "abbreviation": "OLSAFF", + "nameKr": "올리산이 많은 해바라기 오일", + "nameEn": "Oleric saflower", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8001-21-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLSAFF", + "name": "Oleric saflower", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 846, + "abbreviation": "OLEALCH", + "nameKr": "올레일 알코올", + "nameEn": "Oleyl alcohol", + "synonymsEn": "Oleyl alcohol / Satol / oleyl / 9-OCTADECEN-1-OL / OLEIC ALCOHOL / (Z)-9-Octadecen-1-ol / (Z)-Octadec-9-en-1-ol / Olely Alcohol / Olive alcohol / 9-Octadecen-1-ol,(Z)- / 9-Octadecen-1-ol, (Z)-", + "synonymsKr": "올레일알코올 / 오레일알코올 / (Z)-9-옥타데켄-1-올 / 9-시스-옥타데켄올 / 9-옥타데켄-1-올,(Z)- / 시스-9-옥타데켄-1-올 / 시스-9-옥타데켄올 / 시스-9-옥타데켄일알코올 / 시스-델타(9)-옥타데켄올 / 올레알코올 / 올레오알코올 / 올레오일알코올 / 올레올 / 올레일알코올 / 올레일알코올 / 올리브알코올", + "unNumber": "", + "casNumber": "143-28-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLEALCH", + "name": "Oleyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 847, + "abbreviation": "OLEPAL", + "nameKr": "올레일팔미타마이드", + "nameEn": "Oleyl palmilate", + "synonymsEn": "OLEYL PALMITATE / OLEYL PALMITATE / PALMITIC ACID OLEYL ESTER / (Z)-octadec-9-enyl palmitate / PALMITIC ACID OLEYL ESTER 99% / Palmitic acid (Z)-9-octadecenyl ester / 9-octadecenylester,(z)-hexadecanoicaci / Palmitic acid (9Z)-9-octadecenyl ester / Hexadecanoic acid (Z)-9-octadecenyl ester / Hexadecanoic acid, (9Z)-9-octadecen-1-yl ester", + "synonymsKr": "올레일팔미타마이드 / 올레일팔미타마이드 / 올레팔미테이트", + "unNumber": "", + "casNumber": "2906-55-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLEPAL", + "name": "Oleyl palmilate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 848, + "abbreviation": "OLIVE", + "nameKr": "올리브 오일", + "nameEn": "Olive oil", + "synonymsEn": "Olive oil / OLEA EUROPAEA (OLIVE) FRUIT OIL / OLIVE / OLIVE FRUIT EXTRACT / OLIVE POMACE OIL / OLIVE OIL, EXTRA VIRGIN / sweetoil / OLIVE OIL / Luccu oil / Cropure OL / OLIVEOIL,NF", + "synonymsKr": "올리브오일 / 사탕기름 / 올리브기름 / 올리브오일 / 올리브유 / 올리브기름(OLIVEOIL) / 올리브불검화물 / 올리브 오일", + "unNumber": "", + "casNumber": "8001-25-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLIVE", + "name": "Olive oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 849, + "abbreviation": "OLA219", + "nameKr": "", + "nameEn": "OLOA 219M,219C", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA219", + "name": "OLOA 219M,219C", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 850, + "abbreviation": "OLA273", + "nameKr": "", + "nameEn": "OLOA 237", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA273", + "name": "OLOA 237", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 851, + "abbreviation": "OLA246B", + "nameKr": "", + "nameEn": "OLOA 246B", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA246B", + "name": "OLOA 246B", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 852, + "abbreviation": "OLA246S", + "nameKr": "", + "nameEn": "OLOA 246S", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA246S", + "name": "OLOA 246S", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 853, + "abbreviation": "OLA247Z", + "nameKr": "", + "nameEn": "OLOA 247Z", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA247Z", + "name": "OLOA 247Z", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 854, + "abbreviation": "OLA249S", + "nameKr": "", + "nameEn": "OLOA 249S", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA249S", + "name": "OLOA 249S", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 855, + "abbreviation": "OLA270", + "nameKr": "", + "nameEn": "OLOA 270", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA270", + "name": "OLOA 270", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 856, + "abbreviation": "OLA271", + "nameKr": "", + "nameEn": "OLOA 271", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA271", + "name": "OLOA 271", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 857, + "abbreviation": "OLA6125", + "nameKr": "", + "nameEn": "OLOA 6125", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA6125", + "name": "OLOA 6125", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 858, + "abbreviation": "OLA758A", + "nameKr": "", + "nameEn": "OLOA 758A", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA758A", + "name": "OLOA 758A", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 859, + "abbreviation": "OLN", + "nameKr": "", + "nameEn": "Olone", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLN", + "name": "Olone", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 860, + "abbreviation": "OMC586", + "nameKr": "", + "nameEn": "OMC586", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OMC586", + "name": "OMC586", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 861, + "abbreviation": "ONTLN", + "nameKr": "o-나트로톨루엔", + "nameEn": "o-Nitrotoluene", + "synonymsEn": "2-Nitrotoluene / 1-METHYL-2-NITROBENZENE / O-NITROTOLUENE / ONT / 2NT / Ortho Nitrotoluene / 2-METHYLNITROBENZENE / nsc9577 / 2-Nitrotol / 88-72-2 ONT / o-itrotoluene", + "synonymsKr": "니트로톨루엔 / 2-나이트로톨루엔 / 0-나이트로톨루엔(니트로톨루엔) / o-니트로톨루엔 / 니트로톨루엔 / 오르토니트로톨루엔 / 오르토메틸니트로벤젠 / O-니트로톨루엔 / 2-메틸니트로벤젠 / 니트로페닐메 / 2-니트로톨루엔 / 1-Methyl-2-nitrobenzene / o-Nitrotoluene", + "unNumber": "", + "casNumber": "88-72-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ONTLN", + "name": "o-Nitrotoluene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 862, + "abbreviation": "OJUCS", + "nameKr": "오렌지 주스 슬러리", + "nameEn": "Orange juice slurry", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "68514-75-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OJUCS", + "name": "Orange juice slurry", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 863, + "abbreviation": "GA479R", + "nameKr": "", + "nameEn": "Oronte gasoline additive 479R", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GA479R", + "name": "Oronte gasoline additive 479R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 864, + "abbreviation": "OTDN", + "nameKr": "o-톨루이딘", + "nameEn": "o-Toluidine", + "synonymsEn": "o-Toluidine / 2-METHYLANILINE / ORTHO-TOLUIDINE / o-Toluidin / 2-Toluidine / 2-AMINOTOLUENE / toluidines / o-Tolylamine / o-Aminotoluene / o-Methylaniline / NSC 15348", + "synonymsKr": "O-톨루이딘 / 2-아미노톨루엔 / 0-톨루이딘 / O-톨루이딘 / 오쏘-톨루이딘 / 2-톨루이딘 / o-톨루이딘 / 2-메틸아닐린 / 2-메틸벤즈아민 / 2-아미노톨루엔 / 1-아미노-2-메틸벤젠 / 2-메틸-1-아미노벤젠 / 2-메틸벤젠아민 / 2-메틸아닐린 / 2-메틸페닐아민 / 2-아미노-1-메틸벤젠 / 2-톨루이딘 / o-메틸벤젠아미나 / o-메틸아닐린 / o-아미노톨루엔 / o-톨리아민 / 벤젠아민. 2-메틸", + "unNumber": "", + "casNumber": "95-53-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OTDN", + "name": "o-Toluidine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 865, + "abbreviation": "OXINOL", + "nameKr": "옥탄올", + "nameEn": "Oxinol", + "synonymsEn": "1-Octanol / OCTANOL / N-OCTANOL / caprylic / OCTAN-1-OL / OCTYL ALCOHOL / N-OCTYL ALCOHOL / 1-Octano / N-CAPRYLIC ALCOHOL / Octilin / n-Octano", + "synonymsKr": "1-옥타놀 / 1-옥타놀 / 1-옥탄올 / 1-히드록시옥탄 / N-옥탄올 / 옥타놀-1 / 옥탄올 / 옥틸알코올 / 일차옥틸알코올 / 카프릴알코올 / 헵틸카빈올 / 카프릴릴알코올 / 1-하이드록시옥탄 / n-옥틸 알코올 / 옥틸 알코올 / 일차 옥틸 알코올 / 카프릴 알코올 / 헵틸 카빈올", + "unNumber": "", + "casNumber": "111-87-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OXINOL", + "name": "Oxinol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 866, + "abbreviation": "PGMME", + "nameKr": "폴리에틸렌글리콜 모노메틸 에테르", + "nameEn": "P&G Mono methyl ether", + "synonymsEn": "Methoxypolyethylene glycols / MPEG / MPEG-OH / METHOXYPOLYETHYLENE GLYCOL / MEO-PEG-OH / POLYETHYLENE GLYCOL MONOMETHYL ETHER / MEO-PEG-COOH / POLYETHYLENE GLYCOL MONOMETHYL ETHER 550 / MPEG 500 / MPEG 2000 / MPEG 5000", + "synonymsKr": "폴리에틸렌 글리콜 메틸 에테르 / 폴리에틸렌글리콜메틸에테르 / 폴리에틸렌글리콜메틸에테르(POLYETHYLENEGLYCOLMETHYLETHER) / 메톡시피이지-10 / 메톡시피이지-100 / 메톡시피이지-16 / 메톡시피이지-25 / 메톡시피이지-40 / 메톡시피이지-7 / 피이지-4메틸에터 / 피이지-6메틸에터 / 메톡시폴리에틸렌글리콜", + "unNumber": "", + "casNumber": "9004-74-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PGMME", + "name": "P&G Mono methyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 867, + "abbreviation": "PAHD", + "nameKr": "p-아니스알데히드", + "nameEn": "p-Aldehyde", + "synonymsEn": "p-Anisaldehyde / 4-Methoxybenzaldehyde / ANISALDEHYDE / ANISIC ALDEHYDE / P-METHOXYBENZALDEHYDE / PARA ANISIC ALDEHYDE / 4-ANISALDEHYDE / AUBEPINE / P-ANISIC ALDEHYDE / Benzaldehyde,4-methoxy- / Anisaldehyd", + "synonymsKr": "아니스알데히드 / P-아니스알데하이드 / 4-메톡시벤즈알데하이드 / 4-메톡시벤즈알데히드 / 아니스알데히드 / 아니스알데하이드", + "unNumber": "", + "casNumber": "123-11-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PAHD", + "name": "p-Aldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 868, + "abbreviation": "POME", + "nameKr": "팜산유", + "nameEn": "Palm acid oil", + "synonymsEn": "·palm butter, palm oil fatty acids", + "synonymsKr": "지방산, 팜오일 / 지방산,팜유", + "unNumber": "3082", + "casNumber": "68440-15-3", + "transportMethod": "", + "sebc": "", + "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POME", + "name": "Palm acid oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 869, + "abbreviation": "PCBR", + "nameKr": "팜코코아버터 대체제", + "nameEn": "Palm cocoa butter replacer", + "synonymsEn": "Glycerides, C10-18 / Glycerides, C10-18 / Glyceride, C10-18- / C10-18 TRIGLYCERIDES / Cocoa butter substitute / Glycerides, C10-18 USP/EP/BP / 85665-33-4 Glycerides, C10-18", + "synonymsKr": "C10-18트라이글리세라이즈 / C10-18트라이글리세라이즈", + "unNumber": "", + "casNumber": "85665-33-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PCBR", + "name": "Palm cocoa butter replacer", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 870, + "abbreviation": "PFA", + "nameKr": "팜 지방산", + "nameEn": "Palm fatty acid", + "synonymsEn": "·palm butter, palm oil fatty acids", + "synonymsKr": "지방산, 팜오일 / 지방산,팜유", + "unNumber": "3082", + "casNumber": "68440-15-3", + "transportMethod": "", + "sebc": "", + "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PFA", + "name": "Palm fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 871, + "abbreviation": "PFAR", + "nameKr": "팜유 지방산 잔류물", + "nameEn": "Palm fatty acid residues", + "synonymsEn": "·palm butter, palm oil fatty acids", + "synonymsKr": "지방산, 팜오일 / 지방산,팜유", + "unNumber": "3082", + "casNumber": "68440-15-3", + "transportMethod": "", + "sebc": "", + "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PFAR", + "name": "Palm fatty acid residues", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 872, + "abbreviation": "PKFA", + "nameKr": "팜핵 지방산", + "nameEn": "Palm kernel fatty acid", + "synonymsEn": "Fatty acids, palm kernel-oil / Edenor PK 1218 / Einecs 309-936-7 / Palm kernel oil fatty acid / PALM KERNEL OIL FATTY ACIDS / Fatty acids, palm kernel-oil / Distilled palm kernel / coconut fatty acid", + "synonymsKr": "팜커넬애씨드 / 팜커넬애씨드 / 지방산,팜커널오일", + "unNumber": "", + "casNumber": "101403-98-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PKFA", + "name": "Palm kernel fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 873, + "abbreviation": "PKFAD", + "nameKr": "팜 코어 지방산 증류액", + "nameEn": "Palm kernel fatty acid distillate", + "synonymsEn": "COCONUT OIL FATTY ACIDS / Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", + "synonymsKr": "코코넛 지방 산 / 코코넛지방산 / 코코넛지방산(COCONUTFATTYACID)", + "unNumber": "", + "casNumber": "67701-05-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PKFAD", + "name": "Palm kernel fatty acid distillate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 874, + "abbreviation": "PKL", + "nameKr": "팜커넬", + "nameEn": "Palm kernel olein", + "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", + "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", + "unNumber": "", + "casNumber": "8023-79-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PKL", + "name": "Palm kernel olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 875, + "abbreviation": "PKS", + "nameKr": "팜 핵 스테아린", + "nameEn": "Palm kernel stearin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "91079-14-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PKS", + "name": "Palm kernel stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 876, + "abbreviation": "PMF34", + "nameKr": "", + "nameEn": "Palm mid fraction 34", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PMF34", + "name": "Palm mid fraction 34", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 877, + "abbreviation": "PMF45", + "nameKr": "", + "nameEn": "Palm mid fraction 45", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PMF45", + "name": "Palm mid fraction 45", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 878, + "abbreviation": "POFAME", + "nameKr": "팜유 지방산 메틸 에스테르", + "nameEn": "Palm oil fatty acid methyl ester", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "143-25-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POFAME", + "name": "Palm oil fatty acid methyl ester", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 879, + "abbreviation": "PRO", + "nameKr": "", + "nameEn": "Palm residue oil ?", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PRO", + "name": "Palm residue oil ?", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 880, + "abbreviation": "PSFA", + "nameKr": "팜 스테아린 지방산", + "nameEn": "Palm stearin fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "91079-14-0 68002-71-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PSFA", + "name": "Palm stearin fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 881, + "abbreviation": "PS50", + "nameKr": "", + "nameEn": "Palm stearin M.P.50", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PS50", + "name": "Palm stearin M.P.50", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 882, + "abbreviation": "PA80", + "nameKr": "팔미트산", + "nameEn": "Palmitic acid 80%", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "57-10-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PA80", + "name": "Palmitic acid 80%", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 883, + "abbreviation": "PALMTLIC", + "nameKr": "팔미톨레산", + "nameEn": "Palmitoleic acid", + "synonymsEn": "PALMITOLEIC ACID / 9-HEXADECENOIC ACID / C16:1 / Zoomaric acid / CIS-9-HEXADECENOIC ACID / PALM ACID / (Z)-9-hexadecenoic acid / cis-Palmitoleic acid / Palmitoleic Acid(PA) / (Z)-hexadec-9-enoic acid / (E)-hexadec-9-enoic acid", + "synonymsKr": "팜애씨드 / 팜애씨드", + "unNumber": "", + "casNumber": "373-49-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PALMTLIC", + "name": "Palmitoleic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 884, + "abbreviation": "PB", + "nameKr": "폴리부텐", + "nameEn": "POLYBUTENE", + "synonymsEn": "POLYBUTENE", + "synonymsKr": "폴리부텐 / 부텐, 호모중합물 / 뷰텐 폴리머 / 폴리-베타-뷰텐", + "unNumber": "-", + "casNumber": "9003-29-6", + "transportMethod": "", + "sebc": "", + "usage": "윤활유 첨가제, 절연체, 가소제, 필름 및 코팅", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PB", + "name": "POLYBUTENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 885, + "abbreviation": "PBR9344", + "nameKr": "", + "nameEn": "Parabar 9344", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PBR9344", + "name": "Parabar 9344", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 886, + "abbreviation": "PWAX", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PWAX", + "name": "Paraffin wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 887, + "abbreviation": "PW125/130", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 125/130", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW125/130", + "name": "Paraffin wax 125/130", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 888, + "abbreviation": "PW135/140", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 135/140", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW135/140", + "name": "Paraffin wax 135/140", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 889, + "abbreviation": "PW140/145", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 140/145", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW140/145", + "name": "Paraffin wax 140/145", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 890, + "abbreviation": "PW150/155", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 150/155", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW150/155", + "name": "Paraffin wax 150/155", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 891, + "abbreviation": "PW155/160", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 155/160", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW155/160", + "name": "Paraffin wax 155/160", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 892, + "abbreviation": "PW52/54", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 52/54", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW52/54", + "name": "Paraffin wax 52/54", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 893, + "abbreviation": "PW54/56", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 54/56", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW54/56", + "name": "Paraffin wax 54/56", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 894, + "abbreviation": "PW54/56E", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 54/56 (Edible grade)", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW54/56E", + "name": "Paraffin wax 54/56 (Edible grade)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 895, + "abbreviation": "PW56/58", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 56/58", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW56/58", + "name": "Paraffin wax 56/58", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 896, + "abbreviation": "PW56/58E", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 56/58 (Edible grade)", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW56/58E", + "name": "Paraffin wax 56/58 (Edible grade)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 897, + "abbreviation": "PW58/60", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 58/60", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW58/60", + "name": "Paraffin wax 58/60", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 898, + "abbreviation": "PW58/60E", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 58/60 (Edible grade)", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW58/60E", + "name": "Paraffin wax 58/60 (Edible grade)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 899, + "abbreviation": "PW60/62", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 60/62", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW60/62", + "name": "Paraffin wax 60/62", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 900, + "abbreviation": "PW60/62E", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 60/62 (Edible grade)", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW60/62E", + "name": "Paraffin wax 60/62 (Edible grade)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 901, + "abbreviation": "PW64/66", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 64/66", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW64/66", + "name": "Paraffin wax 64/66", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 902, + "abbreviation": "PW66/68", + "nameKr": "파라핀 왁스", + "nameEn": "Paraffin wax 66/68", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", + "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "unNumber": "", + "casNumber": "8002-74-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PW66/68", + "name": "Paraffin wax 66/68", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 903, + "abbreviation": "PFL335", + "nameKr": "", + "nameEn": "Paraflow 335", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PFL335", + "name": "Paraflow 335", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 904, + "abbreviation": "PMSM", + "nameKr": "파라-메틸 스티렌", + "nameEn": "para-Methyl styrene monomer", + "synonymsEn": "4-Methylstyrene / 1-Methyl-4-vinylbenzene / VINYLTOLUENE / 4-Methylphenylene / P-METHYLSTYRENE / 4-vinyl / 4-methylstyre / 4-VINYLTOLUENE / P-VINYLTOLUENE / 4-METHYLSTYRENE / p-methyl-styren", + "synonymsKr": "p-메틸스타이렌 / p-메틸스타이렌 / p-메틸스타이렌(p-METHYLSTYRENE) / p-메틸스티렌", + "unNumber": "", + "casNumber": "622-97-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PMSM", + "name": "para-Methyl styrene monomer", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 905, + "abbreviation": "PRNX52", + "nameKr": "파라옥스", + "nameEn": "Paranox 52", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "16920-94-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PRNX52", + "name": "Paranox 52", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 906, + "abbreviation": "PBSYCSO", + "nameKr": "목욕용 왁스", + "nameEn": "PBSY Cotton seed oil", + "synonymsEn": "COTTONSEED OIL / cotton / LIPEX 109 / cottonoil / nci-c50168 / cottondoil / COTTONSEED OIL / Oils, cottonseed / COTTONSEEDOIL,NF / Baumwollsamenoel / cottonseedoilacid", + "synonymsKr": "목욕용 왁스 / 목욕용왁스 / 정제된목화씨오일 / 목화씨오일 / 목화오일 / 육지면씨추출물 / 코튼씨오일 / 목욕용왁스 / 목화씨유", + "unNumber": "", + "casNumber": "8001-29-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PBSYCSO", + "name": "PBSY Cotton seed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 907, + "abbreviation": "PCTLN", + "nameKr": "p-클로로톨루엔", + "nameEn": "p-Chlorotoluene", + "synonymsEn": "4-Chlorotoluene / 1-CHLORO-4-METHYLBENZENE / P-CHLOROTOLUENE / chlorotoluenes / 1-chloro-4-methyl-benzen / 4-CHLORO-1-METHYLBENZENE / UPD / p-ChL / 4-Chlortoluol / p-Chlortoluol / 4-Chlorotoluen", + "synonymsKr": "p-클로로톨루엔 / 4-클로로톨루엔 / p-클로로톨루엔", + "unNumber": "", + "casNumber": "106-43-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PCTLN", + "name": "p-Chlorotoluene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 908, + "abbreviation": "PCRSL", + "nameKr": "p-크레졸", + "nameEn": "p-Cresol", + "synonymsEn": "p-Cresol / 4-METHYLPHENOL / para-cresol / P-HYDROXYTOLUENE / 4-Cresol / P-METHYLPHENOL / p-Tolyl alcohol / Paracresol / Phenol,4-methyl- / Paramethyl phenol / p-Cresol, extra pure", + "synonymsKr": "P-크레졸 / P-크레솔 / p-크레졸 / 크레졸 / 1-메틸-4-하이드록시벤젠 / 1-하이드록시-4-메틸벤젠 / 4-메틸페놀 / 4-크레솔 / 4-크레졸 / 4-하이드록시-1-메틸벤젠 / 4-하이드록시톨루엔 / P-하이드록시톨루엔 / 크레솔, P- / 파라-크레실릭산", + "unNumber": "", + "casNumber": "106-44-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PCRSL", + "name": "p-Cresol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 909, + "abbreviation": "PCMN", + "nameKr": "p-시멘", + "nameEn": "p-Cymene", + "synonymsEn": "p-Cymene / Cymene / Cymol / 4-ISOPROPYLTOLUENE / PARA CYMENE / P-ISOPROPYLTOLUENE / 1-METHYL-4-ISOPROPYLBENZENE / P-CYMOL / lsopropyltoluene / 1-Methyl-4-(1-methylethyl)-benzene / 4-CYMENE", + "synonymsKr": "파라시멘 / P-사이멘 / 4-아이소프로필톨루엔 / 파라시멘 / p-시멘", + "unNumber": "", + "casNumber": "99-87-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PCMN", + "name": "p-Cymene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 910, + "abbreviation": "PDEBZN", + "nameKr": "p-디에틸벤젠", + "nameEn": "p-Diethylbenzene", + "synonymsEn": "1,4-DIETHYLBENZENE / Benzene, 1,4-diethyl- / PDEB / P-DIETHYLBENZENE / 1.4-Diethylben / p-diethylenzene / PDEB )1,4-Diethy / p-diethyl-benzen / 1,4-diethyl-benzen / 1,4-DIETHYLBENZENE / para-Diethylbenzene", + "synonymsKr": "글명:1.4-디에틸벤젠 / 1,4-다이에틸벤젠 / 1,4-디에틸벤젠 / 1.4-디에틸벤젠", + "unNumber": "", + "casNumber": "105-05-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PDEBZN", + "name": "p-Diethylbenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 911, + "abbreviation": "PGS1425", + "nameKr": "", + "nameEn": "Pegasol 1425", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PGS1425", + "name": "Pegasol 1425", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 912, + "abbreviation": "PGS3040", + "nameKr": "", + "nameEn": "Pegasol 3040", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PGS3040", + "name": "Pegasol 3040", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 913, + "abbreviation": "PGSR100", + "nameKr": "", + "nameEn": "Pegasol R100", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PGSR100", + "name": "Pegasol R100", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 914, + "abbreviation": "PGSR150", + "nameKr": "", + "nameEn": "Pegasol R150", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PGSR150", + "name": "Pegasol R150", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 915, + "abbreviation": "PELACID", + "nameKr": "펠라르곤산", + "nameEn": "Pelargonic acid", + "synonymsEn": "Nonanoic acid / NONANE / PELARGONIC ACID / nonanoic / pelargonic / N-NONANOIC ACID / NONOIC ACID / Pelargic acid / pelargonate (9:0) / n-Nonanoic acid,97% / Nonanoic acid (Pelargonic)", + "synonymsKr": "펠라곤산 / 노난산 / 펠라곤산 / 펠라곤산 / 펠라고닉애씨드", + "unNumber": "", + "casNumber": "112-05-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PELACID", + "name": "Pelargonic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 916, + "abbreviation": "PTCE", + "nameKr": "펜타클로로에탄", + "nameEn": "Pentachloroethane", + "synonymsEn": "PENTACHLOROETHANE / CHCl2CCl3 / Pentachlorethane / R-120 / freon120 / PENTALIN / Pentaline / NCI-C53894 / Pentaclorethane / Pentachlorethan / Pentacloroetano", + "synonymsKr": "펜타클로로에탄 / 펜타클로로에탄 / 펜타클로로에테인", + "unNumber": "", + "casNumber": "76-01-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PTCE", + "name": "Pentachloroethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 917, + "abbreviation": "PNTN", + "nameKr": "펜탄", + "nameEn": "Pentane", + "synonymsEn": "Pentane / N-PENTANE / PETANE / Pentan / 1-Pentane / n-C5H12 / N-PENTAN / R601 / NP80 / PENTANE / Pentani", + "synonymsKr": "펜탄 / 펜탄 / N-펜탄 / 노르말펜탄 / 아밀수화물 / 펜테인(펜탄)", + "unNumber": "1265", + "casNumber": "109-66-0", + "transportMethod": "", + "sebc": "", + "usage": "인공얼음, 플라스틱 발포제, 살충제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PNTN", + "name": "Pentane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 918, + "abbreviation": "PENTACID", + "nameKr": "펜타노산", + "nameEn": "Pentanoic acid", + "synonymsEn": "Valeric acid / PENTANOIC ACID / N-VALERIC ACID / valeric / N-PENTANOIC ACID / VALERIANIC ACID / NA 1760 / FEMA 3101 / n-C4H9COOH / N-VALERATE / Pentansαure", + "synonymsKr": "펜탄산 / n-펜탄산 / 발레르산 / 펜탄산 / 발레르산", + "unNumber": "", + "casNumber": "109-52-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PENTACID", + "name": "Pentanoic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 919, + "abbreviation": "PERL", + "nameKr": "들기름", + "nameEn": "Perilla oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "68132-21-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PERL", + "name": "Perilla oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 920, + "abbreviation": "PNPTH", + "nameKr": "나프타(석유)", + "nameEn": "Petroleum naphtha", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "64742-66-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PNPTH", + "name": "Petroleum naphtha", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 921, + "abbreviation": "SPHN", + "nameKr": "석유 솔폰산염", + "nameEn": "Petroleum sulphonate", + "synonymsEn": "Sulfonic acids, petroleum, sodium salts / SodiuM petrol / Sodium petrol T702 / Sodium Petroleum sulphonate / SODIUM PETROLEUM SULFONIC ACIDS / Sodium Petroleum sulphonate T702 / Petroleum Sulfonic Acid, Sodium Salt / SULPHONICACIDS,PETROLEUM,SODIUMSALTS / Petroleum sulfonic acids sodium salts / Sulfonic acids, petroleum, sodium salts / TIANFU-CHEM Sulfonic acids, petroleum, sodium salts", + "synonymsKr": "나트륨 석유 술폰 산 / 나트륨석유술폰산 / 설폰산나트륨석유 / 설폰산나트륨석유", + "unNumber": "", + "casNumber": "68608-26-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SPHN", + "name": "Petroleum sulphonate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 922, + "abbreviation": "SPHNC300", + "nameKr": "석유 솔폰산염", + "nameEn": "Petroleum sulphonate C-300", + "synonymsEn": "Sulfonic acids, petroleum, sodium salts / SodiuM petrol / Sodium petrol T702 / Sodium Petroleum sulphonate / SODIUM PETROLEUM SULFONIC ACIDS / Sodium Petroleum sulphonate T702 / Petroleum Sulfonic Acid, Sodium Salt / SULPHONICACIDS,PETROLEUM,SODIUMSALTS / Petroleum sulfonic acids sodium salts / Sulfonic acids, petroleum, sodium salts / TIANFU-CHEM Sulfonic acids, petroleum, sodium salts", + "synonymsKr": "나트륨 석유 술폰 산 / 나트륨석유술폰산 / 설폰산나트륨석유 / 설폰산나트륨석유", + "unNumber": "", + "casNumber": "68608-26-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SPHNC300", + "name": "Petroleum sulphonate C-300", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 923, + "abbreviation": "PCDO", + "nameKr": "", + "nameEn": "Pilchard oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PCDO", + "name": "Pilchard oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 924, + "abbreviation": "PINE", + "nameKr": "파인오일", + "nameEn": "Pine oil", + "synonymsEn": "Pinitol oil / PINE OIL / GUM TURPENTINE OIL / FIR OIL / FEMA 3089 / terpentinoel / Terpenic oil / yarmorpineoil / PINUS PALUSTRIS OIL / yarmor / unipine", + "synonymsKr": "솔 기름 / 솔기름 / 솔기름(PINEOIL) / 대왕소나무오일 / 대왕송오일 / 송유", + "unNumber": "", + "casNumber": "8002-09-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PINE", + "name": "Pine oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 925, + "abbreviation": "PSTL135", + "nameKr": "", + "nameEn": "Plastol 135", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PSTL135", + "name": "Plastol 135", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 926, + "abbreviation": "PSTL172", + "nameKr": "", + "nameEn": "Plastol 172", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PSTL172", + "name": "Plastol 172", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 927, + "abbreviation": "PSTL382", + "nameKr": "", + "nameEn": "Plastol 382", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PSTL382", + "name": "Plastol 382", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 928, + "abbreviation": "PFM", + "nameKr": "", + "nameEn": "Platformate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PFM", + "name": "Platformate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 929, + "abbreviation": "PAOP", + "nameKr": "폴리알킬렌 산화물 폴리올", + "nameEn": "Polyalkylene oxidepolyol", + "synonymsEn": "Polyethylene-polypropylene glycol / Poloxamer / PLURONIC F-127 / PLURONIC / POLOXAMER 407 / POLOXAMER 188 / Polyether / P188 / PEG-PPG-PEG / PLURONIC F-68 / poloxalene", + "synonymsKr": "폴리프로필렌 글리콜 에틸렌 산화물 중합체 / 폴리에틸렌-폴리프로필렌글리콜 / 폴리프로필렌글리콜에틸렌산화물중합체 / 폴리에틸렌-폴리프로필렌글리콜 / 메록사폴106 / 메록사폴108 / 메록사폴171 / 메록사폴172 / 메록사폴174 / 메록사폴178 / 메록사폴251 / 메록사폴254 / 메록사폴255 / 메록사폴311 / 메록사폴312 / 메록사폴314 / 폴록사머101 / 폴록사머105 / 폴록사머108 / 폴록사머122 / 폴록사머123", + "unNumber": "", + "casNumber": "9003-11-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PAOP", + "name": "Polyalkylene oxidepolyol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 930, + "abbreviation": "PEG", + "nameKr": "폴리에틸렌 글리콜", + "nameEn": "Polyethylene glycol", + "synonymsEn": "Polyethylene Glycol / PEG / PEO / POLYETHYLENE GLYCOL / PEG 400 / POLY(ETHYLENE OXIDE) / Macrogol / PEG 6000 / PEG-8 / PEG-12 / PEG-20", + "synonymsKr": "폴리에틸렌글리콜#300 / 에틸렌글리콜중합물 / 에틸렌산화물중합물 / 에틸렌폴리산화물 / 옥시란중합물 / 옥시에틸렌중합물 / 카르보왁스PEG400 / 카르보왁스폴리에틸렌글리콜400 / 폴리(비닐산화물) / 폴리(에틸렌에테르)글리콜 / 폴리옥시에틸렌디올 / CARBO왁스 / PEG(평균분자량400) / 글리콜스,폴리에틸렌 / 에틸렌글리콜호모중합물 / 카르보왁스300 / 카르보왁스8000 / 카르보왁스PEG600 / 카르보왁스폴리에틸렌글리콜600 / 카르보왁스폴리에틸렌글리콜8000 / 폴리G", + "unNumber": "", + "casNumber": "25322-68-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PEG", + "name": "Polyethylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 931, + "abbreviation": "PISOBUT", + "nameKr": "폴리이소부텐", + "nameEn": "Polyisobutene", + "synonymsEn": "Polyisobutylene / usb / POLYISOBUTENE / p20 / p118 / p200 / POLY(ISOBUTYLENE) 24'000 / kp5 / oktol / pb150 / pib100", + "synonymsKr": "폴리이소부틸렌 / 폴리아이소뷰틸렌 / 폴리이소부틸렌 / 폴리아이소부텐 / 폴리이소부티렌", + "unNumber": "", + "casNumber": "9003-27-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PISOBUT", + "name": "Polyisobutene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 932, + "abbreviation": "POL1342", + "nameKr": "", + "nameEn": "Polyol 1342", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POL1342", + "name": "Polyol 1342", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 933, + "abbreviation": "POLF3020", + "nameKr": "", + "nameEn": "Polyol F3020", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POLF3020", + "name": "Polyol F3020", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 934, + "abbreviation": "POLF3022", + "nameKr": "", + "nameEn": "Polyol F3022", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POLF3022", + "name": "Polyol F3022", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 935, + "abbreviation": "POLF3040", + "nameKr": "", + "nameEn": "Polyol F3040", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POLF3040", + "name": "Polyol F3040", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 936, + "abbreviation": "PLYLHL108", + "nameKr": "", + "nameEn": "Polyol HL108", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PLYLHL108", + "name": "Polyol HL108", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 937, + "abbreviation": "POLUBAD", + "nameKr": "", + "nameEn": "Polyolefin lub with additive", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POLUBAD", + "name": "Polyolefin lub with additive", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 938, + "abbreviation": "PPI", + "nameKr": "폴리페닐 폴리메틸렌 이소시아네이트", + "nameEn": "Polyphenyl polymethylene isocyanate", + "synonymsEn": "Polymethylene polyphenyl polyisocyanate / papi / PMDI / pmppi / isocyanuric / papi27 / isocyanatedepolymethyleneetdepolyphenyle / Polymeric Methylene Diphenyl Diisocyanate / e534 / cr200 / mr200", + "synonymsKr": "아이소사이안산 폴리메틸렌 폴리페닐렌에스터 / 아이소사이안산폴리메틸렌폴리페닐렌에스터 / 아이소사이안산폴리메틸렌폴리페닐렌에스터 / 폴리메틸렌 폴리페닐 아이소사이아네이트 / 폴리메틸렌폴리페닐폴리이소시아네이트", + "unNumber": "3080", + "casNumber": "9016-87-9", + "transportMethod": "", + "sebc": "", + "usage": "경질 PU 폼 단열제, 경질 PU 폼, 이소이아누레이트 폼, 도료, 접착제, 구조용 폼, 자동차 펌포 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPI", + "name": "Polyphenyl polymethylene isocyanate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 939, + "abbreviation": "PPPG", + "nameKr": "폴리프로필렌", + "nameEn": "Polypropylene glycol", + "synonymsEn": "Polypropylene / dlp / PROPYLENE RESIN / POLYPROPYLENE (PP) / HoMopolyMer Polypropylene / soMe / celgard / RPP / j400 / amco / p6500", + "synonymsKr": "폴리프로필렌 / 폴리프로필렌 / 폴리프로필렌(POLYPROPYLENE)", + "unNumber": "", + "casNumber": "9003-07-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPPG", + "name": "Polypropylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 940, + "abbreviation": "PTMEG", + "nameKr": "폴리테트라메틸렌 에테르 글리콜", + "nameEn": "Polytetramethylene ether glycol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "25190-06-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PTMEG", + "name": "Polytetramethylene ether glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 941, + "abbreviation": "POPFAT", + "nameKr": "", + "nameEn": "POP FAT", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "POPFAT", + "name": "POP FAT", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 942, + "abbreviation": "PPSO", + "nameKr": "양귀비씨 오일", + "nameEn": "Poppyseed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8002-11-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPSO", + "name": "Poppyseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 943, + "abbreviation": "KOH", + "nameKr": "수산화칼륨", + "nameEn": "Potassium hydroxide solution", + "synonymsEn": "Potassium hydroxide / KOH / CAUSTIC POTASH / POTASH / POTTASIUM HYDROXIDE / Potassium hydroxide pellets / Potassio / Kaliumhydroxid / POTASIUM HYDROXIDE / Hydroxyde de potassium / KHO", + "synonymsKr": "수산화칼륨 / 가성알칼리 / 칼륨수산화물,건조고체,플레이크,용구OR과립상 / 1N(1M)수산화칼륨 / N/10(0.1M)수산화칼륨(에탄올) / N/10(0.1N)수산화칼륨 / N/2(0.5M)수산화칼륨 / 가성칼리 / 수산화칼륨 / 수산화칼륨30% / 수산화칼륨45% / 칼륨수화물 / 포타싸 / 수산화칼륨 / 포타슘하이드록사이드 / 포타슘 하이드로옥사이드 / 가성 알칼리 / 수산화 칼륨 / 칼륨 수화물 / 칼륨 알칼리액 / 칼륨수산화물, 건조고체, 플레이크, 용구 또는 과립상", + "unNumber": "1814", + "casNumber": "1310-58-3", + "transportMethod": "", + "sebc": "", + "usage": "액체 비누, LCD, 웨이퍼 세정 및 에칭 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "KOH", + "name": "Potassium hydroxide solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 944, + "abbreviation": "PHS", + "nameKr": "수산화칼륨", + "nameEn": "Potassium hydroxide solution", + "synonymsEn": "Potassium hydroxide / KOH / CAUSTIC POTASH / POTASH / POTTASIUM HYDROXIDE / Potassium hydroxide pellets / Potassio / Kaliumhydroxid / POTASIUM HYDROXIDE / Hydroxyde de potassium / KHO", + "synonymsKr": "수산화칼륨 / 가성알칼리 / 칼륨수산화물,건조고체,플레이크,용구OR과립상 / 1N(1M)수산화칼륨 / N/10(0.1M)수산화칼륨(에탄올) / N/10(0.1N)수산화칼륨 / N/2(0.5M)수산화칼륨 / 가성칼리 / 수산화칼륨 / 수산화칼륨30% / 수산화칼륨45% / 칼륨수화물 / 포타싸 / 수산화칼륨 / 포타슘하이드록사이드 / 포타슘 하이드로옥사이드 / 가성 알칼리 / 수산화 칼륨 / 칼륨 수화물 / 칼륨 알칼리액 / 칼륨수산화물, 건조고체, 플레이크, 용구 또는 과립상", + "unNumber": "1814", + "casNumber": "1310-58-3", + "transportMethod": "", + "sebc": "", + "usage": "액체 비누, LCD, 웨이퍼 세정 및 에칭 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PHS", + "name": "Potassium hydroxide solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 945, + "abbreviation": "PPSAFF", + "nameKr": "사프란 오일", + "nameEn": "Pre-pressed safflower oil", + "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", + "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", + "unNumber": "", + "casNumber": "8001-23-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPSAFF", + "name": "Pre-pressed safflower oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 946, + "abbreviation": "PAA", + "nameKr": "", + "nameEn": "Primary-amyl alcohol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PAA", + "name": "Primary-amyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 947, + "abbreviation": "PMLN352", + "nameKr": "경 무기 기름", + "nameEn": "PRIMOL N 352", + "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", + "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", + "unNumber": "", + "casNumber": "8042-47-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PMLN352", + "name": "PRIMOL N 352", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 948, + "abbreviation": "PMLN382", + "nameKr": "경 무기 기름", + "nameEn": "PRIMOL N 382", + "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", + "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", + "unNumber": "", + "casNumber": "8042-47-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PMLN382", + "name": "PRIMOL N 382", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 949, + "abbreviation": "PMLN542", + "nameKr": "경 무기 기름", + "nameEn": "PRIMOL N 542", + "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", + "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", + "unNumber": "", + "casNumber": "8042-47-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PMLN542", + "name": "PRIMOL N 542", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 950, + "abbreviation": "PTLW", + "nameKr": "수지", + "nameEn": "Prome tallow", + "synonymsEn": "·Fatty glyceride ·Edible tallow ·Animal tallow ·Horse fat tallow ·Beef tallow ·Stearin tallow ·Oleo tallow ·Mutton tallow ·Sheep fat tallow ·Tallow A1 grade ·Soap grade", + "synonymsKr": "Fatty 글리세라이드 ·Edible 탈로우 ·Animal 탈로우 ·Horse fat 탈로우 ·Beef 탈로우 ·Stearin 탈로우 ·Oleo 탈로우 ·Mutton 탈로우 ·Sheep fat 탈로우", + "unNumber": "", + "casNumber": "61789-97-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PTLW", + "name": "Prome tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 951, + "abbreviation": "PALD", + "nameKr": "프로피온 알데히드", + "nameEn": "Propion aldehyde", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "123-38-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PALD", + "name": "Propion aldehyde", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 952, + "abbreviation": "PPG", + "nameKr": "프로필렌", + "nameEn": "Propylene", + "synonymsEn": "PROPYLENE / PROPENE / Propen / r1270 / Propylen / CH3CH=CH2 / 1-Propene / Methylethylene / HC 1270 / PROPYLENE / NCI-C50077", + "synonymsKr": "프로필렌 / 프로필렌 / 프로펜", + "unNumber": "", + "casNumber": "115-07-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPG", + "name": "Propylene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 953, + "abbreviation": "PPGMME", + "nameKr": "프로피온산 무수물", + "nameEn": "Propylene glycol monomethyl ether", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "123-62-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPGMME", + "name": "Propylene glycol monomethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 954, + "abbreviation": "PPT", + "nameKr": "프로필렌 사합체", + "nameEn": "Propylene tetramer", + "synonymsEn": "Propylene tetramer / Dodecene / Light Tetramer / ropylene tetramer / Propylene tetramer / PROPYLENETETRAMERS / 1-Propene, tetramer / Dodecene (nonlinear) / Propylene Tetramer(PT) / TIANFU-CHEM Propylene tetramer / (4E,7E,10E)-dodeca-1,4,7,10-tetraene", + "synonymsKr": "프로필렌 테트라머 / 1-프로펜테트라머 / 프로필렌테트라머 / 1-프로펜테트라머", + "unNumber": "", + "casNumber": "6842-15-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPT", + "name": "Propylene tetramer", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 955, + "abbreviation": "PPTR", + "nameKr": "프로필렌 삼량체(또는 노넨)", + "nameEn": "Propylene trimer", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "93924-11-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPTR", + "name": "Propylene trimer", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 956, + "abbreviation": "PANON", + "nameKr": "", + "nameEn": "Pure anon", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PANON", + "name": "Pure anon", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 957, + "abbreviation": "PBFT", + "nameKr": "순수 소 기름", + "nameEn": "Pure beef tallow", + "synonymsEn": "·Fatty glyceride ·Edible tallow ·Animal tallow ·Horse fat tallow ·Beef tallow ·Stearin tallow ·Oleo tallow ·Mutton tallow ·Sheep fat tallow ·Tallow A1 grade ·Soap grade", + "synonymsKr": "Fatty 글리세라이드 ·Edible 탈로우 ·Animal 탈로우 ·Horse fat 탈로우 ·Beef 탈로우 ·Stearin 탈로우 ·Oleo 탈로우 ·Mutton 탈로우 ·Sheep fat 탈로우", + "unNumber": "", + "casNumber": "61789-97-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PBFT", + "name": "Pure beef tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 958, + "abbreviation": "PPHNL", + "nameKr": "패놀", + "nameEn": "Pure phenol", + "synonymsEn": "Phenol / PhOH / CARBOLIC ACID / Fenol / PHENOL CRYSTALS / Phenol, water saturated, stabilized / Benzophenol / HYDROXYBENZENE / LIQUEFIEDPHENOL,LIQUEFIED,USP / PHENIC ACID / LIQUIFIED PHENOL", + "synonymsKr": "페놀 / 페놀 / 모노페놀 / 모노히드록시벤젠 / 벤젠올 / 페닌산 / 페닐수산화물 / 페닐알코올 / 히드록시벤젠 / 모노하이드록시벤젠 / 석탄산 / 옥시벤젠 / 카르볼산 / 페닐산 / 펜산 / 하이드록시벤젠", + "unNumber": "", + "casNumber": "108-95-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPHNL", + "name": "Pure phenol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 959, + "abbreviation": "PRDN", + "nameKr": "피리딘", + "nameEn": "Pyridine", + "synonymsEn": "Pyridine / PY / AA / PYR / Azine / 2-PROPENOL / azabenzene / Pure pyridine / Pyridine anhydrous / Piridina / FEMA 2966", + "synonymsKr": "피리딘 / 피리딘 / 아자벤젠 / 아진", + "unNumber": "", + "casNumber": "110-86-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PRDN", + "name": "Pyridine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 960, + "abbreviation": "R22", + "nameKr": "클로로디플루오로메탄", + "nameEn": "Chlorodifluoromethane", + "synonymsEn": "Difluorochloromethane / R22 / CHLORODIFLUOROMETHANE / chloro / CHClF2 / HCFC-22 / CHF2Cl / f22 / Freon-22 / CFC-22 / CFC 22", + "synonymsKr": "클로로디플루오르메탄 / 클로로다이플루오로메테인 / 클로로디플루오로메탄 / 클로로디플루오르메탄 / 하이드로클로로플루오로카본22", + "unNumber": "", + "casNumber": "75-45-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "R22", + "name": "Chlorodifluoromethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 961, + "abbreviation": "RSAO", + "nameKr": "평지씨유, 채종유, 카놀라유", + "nameEn": "Rapeseed acid oil", + "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", + "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", + "unNumber": "", + "casNumber": "8002-13-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RSAO", + "name": "Rapeseed acid oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 962, + "abbreviation": "RBDCAO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 카놀라 오일", + "nameEn": "RBD Canola oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "120962-03-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDCAO", + "name": "RBD Canola oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 963, + "abbreviation": "RBDCNO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 코코넛 오일", + "nameEn": "RBD Coconut oil", + "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", + "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", + "unNumber": "", + "casNumber": "8001-31-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDCNO", + "name": "RBD Coconut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 964, + "abbreviation": "RBDCORN", + "nameKr": "정제, 탈색, 탈취 공정을 거친 옥수수 오일", + "nameEn": "RBD Corn oil", + "synonymsEn": "RBD Corn oil", + "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일", + "unNumber": "-", + "casNumber": "8001-30-7", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 연료 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDCORN", + "name": "RBD Corn oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 965, + "abbreviation": "RBDNPO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 팜열매 오일", + "nameEn": "RBD Neutralized palm oil", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "식물성 오일", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDNPO", + "name": "RBD Neutralized palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 966, + "abbreviation": "RBDPKO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 식물성 오일", + "nameEn": "RBD Palm kernel oil", + "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", + "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", + "unNumber": "", + "casNumber": "8023-79-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDPKO", + "name": "RBD Palm kernel oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 967, + "abbreviation": "RBDPKL", + "nameKr": "정제, 탈색, 탈취 공정을 거친 파인 코어 오린", + "nameEn": "RBD Palm kernel olein", + "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", + "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", + "unNumber": "", + "casNumber": "8023-79-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDPKL", + "name": "RBD Palm kernel olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 968, + "abbreviation": "RBDPKS", + "nameKr": "정제, 탈색, 탈취 공정을 거친 팜핵 스테아린", + "nameEn": "RBD Palm kernel stearin", + "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", + "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", + "unNumber": "1", + "casNumber": "91079-14-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDPKS", + "name": "RBD Palm kernel stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 969, + "abbreviation": "RBDPMF", + "nameKr": "", + "nameEn": "RBD Palm mid fraction", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDPMF", + "name": "RBD Palm mid fraction", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 970, + "abbreviation": "RBDPO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 팜유", + "nameEn": "RBD Palm oil", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDPO", + "name": "RBD Palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 971, + "abbreviation": "RBDPL", + "nameKr": "정제, 탈색, 탈취 공정을 거친 팜 올레인", + "nameEn": "RBD Palm olein", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "93334-39-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDPL", + "name": "RBD Palm olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 972, + "abbreviation": "RBDPS", + "nameKr": "정제, 탈색, 탈취 공정을 거친 팜스테아린", + "nameEn": "RBD Palm stearin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "91079-14-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDPS", + "name": "RBD Palm stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 973, + "abbreviation": "RBDRSO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 유채 오일", + "nameEn": "RBD Rapeseed oil", + "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", + "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", + "unNumber": "", + "casNumber": "8002-13-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDRSO", + "name": "RBD Rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 974, + "abbreviation": "RBDSBO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 콩기름", + "nameEn": "RBD Soyabean oil", + "synonymsEn": "Soybean oil / soybean / SOYASAPONIN / Soy oil / SOYA OIL / CAP 18 (oil) / SOYBEAN POLAR LIPID EXTRACT / A6OIL / CAP 18 / D04962 / HY 3050", + "synonymsKr": "대두 기름 / 대두기름 / 대두기름(SOYBEANOIL) / 돌콩오일 / 대두유", + "unNumber": "", + "casNumber": "8001-22-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDSBO", + "name": "RBD Soyabean oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 975, + "abbreviation": "RBDSQPL", + "nameKr": "", + "nameEn": "RBD Special quarility palm olein", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RBDSQPL", + "name": "RBD Special quarility palm olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 976, + "abbreviation": "RCAO", + "nameKr": "정제된 카놀라유", + "nameEn": "Refined Canola oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "120962-03-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RCAO", + "name": "Refined Canola oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 977, + "abbreviation": "RCNO", + "nameKr": "정제된 코코넛 오일", + "nameEn": "Refined Coconut oil", + "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", + "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", + "unNumber": "", + "casNumber": "8001-31-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RCNO", + "name": "Refined Coconut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 978, + "abbreviation": "RCORN", + "nameKr": "정제된 옥수수 오일", + "nameEn": "Refined Corn oil", + "synonymsEn": "Refined Corn oil", + "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일", + "unNumber": "-", + "casNumber": "8001-30-7", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 연료 등", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RCORN", + "name": "Refined Corn oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 979, + "abbreviation": "RGNO", + "nameKr": "정제된 땅콩 오일", + "nameEn": "Refined Groundnut oil", + "synonymsEn": "PEANUT OIL / PEANUT OIL / ARACHIS OIL / katchungoil / earthnutoil / ARACHIDICOIL / OIL OF PEANUT / GROUND NUT OIL / REFINEDPEANUTOIL / Peanut Oil (AS) / Peanut Oil (1 g)", + "synonymsKr": "식물성 오일", + "unNumber": "", + "casNumber": "8002-03-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RGNO", + "name": "Refined Groundnut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 980, + "abbreviation": "RLSO", + "nameKr": "정제된 아마인유", + "nameEn": "Refined Linseed oil", + "synonymsEn": "Linseed oil / FLAXSEED OIL / groco / l-310 / P 1037 / PU 104 / leinol / Flaxoil / Purolin / d= 0.93 / Scan-Oil", + "synonymsKr": "아마인유 / 아마인기름,RAW / 플렉스시드기름 / RAW아마인기름 / 아마씨기름 / 아마인기름,표백한 / 아마인유 / 올레움리니 / 아마인오일 / 아마씨오일 / 아마씨기름(LINSEEDOIL) / 기름, 아마인 / 아마씨 기름 / 아마씨 기름, 표백 / 아마인 기름", + "unNumber": "", + "casNumber": "8001-26-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RLSO", + "name": "Refined Linseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 981, + "abbreviation": "RPO", + "nameKr": "정제된 팜유", + "nameEn": "Refined Palm oil", + "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", + "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", + "unNumber": "1169", + "casNumber": "8002-75-3", + "transportMethod": "", + "sebc": "", + "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RPO", + "name": "Refined Palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 982, + "abbreviation": "RRSO", + "nameKr": "정제된 래피시드 오일", + "nameEn": "Refined Rapeseed oil", + "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", + "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", + "unNumber": "", + "casNumber": "8002-13-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RRSO", + "name": "Refined Rapeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 983, + "abbreviation": "RSBO", + "nameKr": "정제된 대두유", + "nameEn": "Refined Soya bean oil", + "synonymsEn": "Soybean oil / soybean / SOYASAPONIN / Soy oil / SOYA OIL / CAP 18 (oil) / SOYBEAN POLAR LIPID EXTRACT / A6OIL / CAP 18 / D04962 / HY 3050", + "synonymsKr": "대두 기름 / 대두기름 / 대두기름(SOYBEANOIL) / 돌콩오일 / 대두유", + "unNumber": "", + "casNumber": "8001-22-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RSBO", + "name": "Refined Soya bean oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 984, + "abbreviation": "RSUN", + "nameKr": "정제된 해바라기 씨 유", + "nameEn": "Refined Sunflowerseed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "8001-21-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RSUN", + "name": "Refined Sunflowerseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 985, + "abbreviation": "RFMT", + "nameKr": "개질석유", + "nameEn": "Reformate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "68919-37-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RFMT", + "name": "Reformate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 986, + "abbreviation": "RGSLN", + "nameKr": "일반 휘발유", + "nameEn": "Regular unleaded gasoline", + "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH", + "synonymsKr": "휘발유 / 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", + "unNumber": "", + "casNumber": "8006-61-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RGSLN", + "name": "Regular unleaded gasoline", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 987, + "abbreviation": "RICE", + "nameKr": "쌀겨유", + "nameEn": "Rice bran oil", + "synonymsEn": "RICE BRAN OIL / refined / BRANOIL / Rice bean oil / RICE BRAN OIL / Oils, rice bran / oryza sativa powder / Edible Rice Bran Oil / oryza sativa seed oil / TIANFU-CHEM RICE BRAN OIL / ORYZA SATIVA (RICE) EXTRACT", + "synonymsKr": "라이스 브랜 오일 / 라이스브랜오일 / 라이스브랜오일 / 쌀겨오일 / 쌀겨오일추출물 / 쌀배아오일 / 쌀추출물 / 현미추출물 / 쌀겨기름", + "unNumber": "", + "casNumber": "68553-81-1", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RICE", + "name": "Rice bran oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 988, + "abbreviation": "RICIACID", + "nameKr": "리신올레산", + "nameEn": "Ricinoleic acid", + "synonymsEn": "Ricinoleic acid / RICINOLIC ACID / Ricinoleic aci / 12-HYDROXY-9-OCTADECENOIC ACID / CS 80 / H 1657 / Cenwax C / P -10 acid / NSC 281242 / ricinicacid / Ricinic acid", + "synonymsKr": "리시놀레 산 / 리시놀레산 / 리시놀레산 / 리시놀레익애씨드", + "unNumber": "", + "casNumber": "141-22-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RICIACID", + "name": "Ricinoleic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 989, + "abbreviation": "REO", + "nameKr": "", + "nameEn": "Rubber extender oil 1 (EO-1)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "REO", + "name": "Rubber extender oil 1 (EO-1)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 990, + "abbreviation": "RSAFF", + "nameKr": "사프란 오일", + "nameEn": "Safflower oil", + "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", + "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", + "unNumber": "", + "casNumber": "8001-23-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "RSAFF", + "name": "Safflower oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 991, + "abbreviation": "SALFAT", + "nameKr": "", + "nameEn": "Sal fat", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SALFAT", + "name": "Sal fat", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 992, + "abbreviation": "SWO", + "nameKr": "샌달우드 오일", + "nameEn": "Sandalwood oil", + "synonymsEn": "Sandalwood oil / Arheol / FEMA 3005 / sandaloil / santaloil / sandlewood / oilofsantal / sandlewoodoil / santalwoodoil / SANTALUM ALBUM / SANDELWOOD OIL", + "synonymsKr": "단향오일 / 단향오일", + "unNumber": "", + "casNumber": "8006-87-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SWO", + "name": "Sandalwood oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 993, + "abbreviation": "SRLI85V", + "nameKr": "", + "nameEn": "Saraline 185V", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SRLI85V", + "name": "Saraline 185V", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 994, + "abbreviation": "SRP147", + "nameKr": "", + "nameEn": "Sarapar 147", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SRP147", + "name": "Sarapar 147", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 995, + "abbreviation": "SSL150/200", + "nameKr": "등유(제품명)", + "nameEn": "Sarasol 150/200", + "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", + "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", + "unNumber": "", + "casNumber": "8008-20-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSL150/200", + "name": "Sarasol 150/200", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 996, + "abbreviation": "SSL175/360", + "nameKr": "", + "nameEn": "Sarasol 175/360", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSL175/360", + "name": "Sarasol 175/360", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 997, + "abbreviation": "SSL210/350", + "nameKr": "", + "nameEn": "Sarasol 210/350", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSL210/350", + "name": "Sarasol 210/350", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 998, + "abbreviation": "SSL40", + "nameKr": "파라핀계 용매(제품명) / 페인트 용도", + "nameEn": "Sarasol 40", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "-", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSL40", + "name": "Sarasol 40", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 999, + "abbreviation": "SSL85", + "nameKr": "파라핀계 용매(제품명) / 페인트 용도", + "nameEn": "Sarasol 85", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "-", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSL85", + "name": "Sarasol 85", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1000, + "abbreviation": "SDNO", + "nameKr": "멸치 기름", + "nameEn": "Sardine oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "93334-41-9", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SDNO", + "name": "Sardine oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1001, + "abbreviation": "SBPX95", + "nameKr": "", + "nameEn": "SBP X95", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SBPX95", + "name": "SBP X95", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1002, + "abbreviation": "SW", + "nameKr": "해수", + "nameEn": "Sea water", + "synonymsEn": "Water / Aqua / SODIUM HYDROXIDE SOLUTION / CAUSTIC SODA FLAKE / Di water / SODIUM HYDRATE / SODA CAUSTIC / Wasser / CAUSTIC SODA LIQUID / Oxidane / Pure Water", + "synonymsKr": "물 / 수소산화물(H2O) / 얼음 / 증류수 / 디수소산화물 / 물 / 정제수 / 미네랄워터 / 물(WATER)", + "unNumber": "", + "casNumber": "7732-18-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SW", + "name": "Sea water", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1003, + "abbreviation": "SAACE", + "nameKr": "초산 제2아밀", + "nameEn": "sec-Amyl acetate", + "synonymsEn": "1-METHYLBUTYL ACETATE / 2-Acetoxypentane / sec-Amyl acetate / SEC-PENTYL ACETATE / pentan-2-yl acetate / 2-Pentanol, acetate / 1-Methylbutylacetat / 1-METHYLBUTYL ACETATE / pentan-2-yl ethanoate / 2-Pentanol, 2-acetate / ACETIC ACID-2-PENTYL ESTER", + "synonymsKr": "초산 제2아밀 / 초산이차-아밀 / 초산제2아밀 / 초산이차-아밀 / 2-페닐 아세테이트 / 1-메틸부틸아세테이트", + "unNumber": "", + "casNumber": "626-38-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SAACE", + "name": "sec-Amyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1004, + "abbreviation": "SAAL", + "nameKr": "2-펜타놀", + "nameEn": "sec-Amyl alcohol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "1", + "casNumber": "6032-29-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SAAL", + "name": "sec-Amyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1005, + "abbreviation": "SBACE", + "nameKr": "초산sec부틸", + "nameEn": "sec-Butyl acetate", + "synonymsEn": "DL-sec-Butyl acetate / SEC-BUTYL ACETATE / sec-butyl / 2-Butyl acetate / 1-Methylpropyl acetate / secondary / S-BUTYL ACETATE / 2-Butanol acetate / CH3COOCH(CH3)C2H5 / 1-Methylpropyl ethanoate / aceticacidsecondarybutylester", + "synonymsKr": "초산sec부틸 / sec-부틸아세트산 / 초산이차-부틸 / 초산sec부틸 / 초산이차-부틸 / SEC-부틸 아세테이트 / sec-부틸아세테이트", + "unNumber": "", + "casNumber": "105-46-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SBACE", + "name": "sec-Butyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1006, + "abbreviation": "SBAL", + "nameKr": "sec-부탄올", + "nameEn": "sec-Butyl alcohol", + "synonymsEn": "2-Butanol / BUTAN-2-OL / SEC-BUTANOL / SEC-BUTYL ALCOHOL / SECONDARY BUTYL ALCOHOL / s-Butanol / Butanol-2 / (RS)-2-butanol / S-BUTYL ALCOHOL / 1-Methyl propanol / ccs301", + "synonymsKr": "sec-부탄올 / sec-부틸알코올 / 2-부틸알코올 / 2-히드록시부탄 / SEC-부탄올 / 메틸에틸카빈올 / 부타놀 / 부탄올-2 / 부틸렌수화물 / 에틸메틸카빈올 / 2-부탄올 / DL-SEC-부탄올 / DL-메틸에틸카르비놀 / 부타놀-이소 / 부탄-2-올 / 이차뷰틸알코올 / 제2부탄올 / SEC-부틸알코올 / 2-부탄올 / 메틸에틸카빈올 / 2-부틸알코올", + "unNumber": "", + "casNumber": "78-92-2", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SBAL", + "name": "sec-Butyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1007, + "abbreviation": "SRFISH", + "nameKr": "반정제 어유", + "nameEn": "Semi refined fish oil", + "synonymsEn": "Fish oil / Krill oil / Promega / Omega-3 Oil / Oils, fish / Fish oil DHA/EPA / Fish oil USP/EP/BP / Fsh oil / Fish oil / Oele, Fisch- / Fish Oil (1 g)", + "synonymsKr": "어류오일 / 어류오일 / 어유", + "unNumber": "", + "casNumber": "8016-13-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SRFISH", + "name": "Semi refined fish oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1008, + "abbreviation": "SESAMI", + "nameKr": "참기름", + "nameEn": "Sesami oil", + "synonymsEn": "Sesame Oil / sextra / sesame / BENNE OIL / Sesame Oi / SESAME OIL / Oils,sesame / gingillioil / 3vialsa'6mg / SESAMEOIL,NF / SESAMI OLEUM", + "synonymsKr": "SESAME 기름 / SESAME기름 / 참깨기름 / 참깨기름 / 참깨오일 / 향유", + "unNumber": "", + "casNumber": "8008-74-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SESAMI", + "name": "Sesami oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1009, + "abbreviation": "SHARK", + "nameKr": "상어뼈 오일", + "nameEn": "Shark oil", + "synonymsEn": "Oils, shark-liver / SQUALI LECUR / Oele, Hai-Leber- / Oils, shark-liver / Fats and Glyceridic oils, shark-liver", + "synonymsKr": "고래-간 오일 / 고래-간오일 / 고래-간오일 / 상어간오일 / 오일,상어간", + "unNumber": "", + "casNumber": "68990-63-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHARK", + "name": "Shark oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1010, + "abbreviation": "SHEA", + "nameKr": "시어넛 버터", + "nameEn": "Shea nut butter", + "synonymsEn": "BUTYROSPERMUM PARKII (SHEA BUTTER) / butyrospermum parkii butter / Shea Liquid / Shea Butter SB-I / Shea Butter Powder / Shea Liquid - Lo Freeze / Shea Butter Organic Certified / SHEA BUTTER BUTYROSPERMUM PARKII / BUTYROSPERMUM PARKII (SHEA BUTTER) / Fats and Glyceridic oils, shea butter / BUTYROSPERMUM PARKII (SHEA BUTTER LIQUID)", + "synonymsKr": "시어버터글리세라이즈 / 시어버터글리세라이즈 / 시어버터불검화물", + "unNumber": "", + "casNumber": "194043-92-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHEA", + "name": "Shea nut butter", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1011, + "abbreviation": "SHEAS", + "nameKr": "시스테아린", + "nameEn": "Shea stearin", + "synonymsEn": "BUTYROSPERMUM PARKII (SHEA BUTTER) / butyrospermum parkii butter / Shea Liquid / Shea Butter SB-I / Shea Butter Powder / Shea Liquid - Lo Freeze / Shea Butter Organic Certified / SHEA BUTTER BUTYROSPERMUM PARKII / BUTYROSPERMUM PARKII (SHEA BUTTER) / Fats and Glyceridic oils, shea butter / BUTYROSPERMUM PARKII (SHEA BUTTER LIQUID)", + "synonymsKr": "시어버터글리세라이즈 / 시어버터글리세라이즈 / 시어버터불검화물", + "unNumber": "", + "casNumber": "194043-92-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHEAS", + "name": "Shea stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1012, + "abbreviation": "SF131", + "nameKr": "", + "nameEn": "Shell flex 131", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF131", + "name": "Shell flex 131", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1013, + "abbreviation": "SF210", + "nameKr": "", + "nameEn": "Shell flex 210", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF210", + "name": "Shell flex 210", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1014, + "abbreviation": "SF212", + "nameKr": "", + "nameEn": "Shell flex 212", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF212", + "name": "Shell flex 212", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1015, + "abbreviation": "SF213", + "nameKr": "", + "nameEn": "Shell flex 213", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF213", + "name": "Shell flex 213", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1016, + "abbreviation": "SF214", + "nameKr": "", + "nameEn": "Shell flex 214", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF214", + "name": "Shell flex 214", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1017, + "abbreviation": "SF274", + "nameKr": "", + "nameEn": "Shell flex 274", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF274", + "name": "Shell flex 274", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1018, + "abbreviation": "SF293", + "nameKr": "", + "nameEn": "Shell flex 293", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF293", + "name": "Shell flex 293", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1019, + "abbreviation": "SF310", + "nameKr": "", + "nameEn": "Shell flex 310", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF310", + "name": "Shell flex 310", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1020, + "abbreviation": "SF3310", + "nameKr": "", + "nameEn": "Shell flex 3310", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF3310", + "name": "Shell flex 3310", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1021, + "abbreviation": "SF371", + "nameKr": "", + "nameEn": "Shell flex 371", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF371", + "name": "Shell flex 371", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1022, + "abbreviation": "SF412", + "nameKr": "", + "nameEn": "Shell flex 412", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF412", + "name": "Shell flex 412", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1023, + "abbreviation": "SF625", + "nameKr": "", + "nameEn": "Shell flex 625", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF625", + "name": "Shell flex 625", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1024, + "abbreviation": "SF6371S", + "nameKr": "", + "nameEn": "Shell flex 6371S", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF6371S", + "name": "Shell flex 6371S", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1025, + "abbreviation": "SF6371UV", + "nameKr": "", + "nameEn": "Shell flex 6371UV", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF6371UV", + "name": "Shell flex 6371UV", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1026, + "abbreviation": "SF683", + "nameKr": "", + "nameEn": "Shell flex 683", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF683", + "name": "Shell flex 683", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1027, + "abbreviation": "SF700", + "nameKr": "", + "nameEn": "Shell flex 700", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF700", + "name": "Shell flex 700", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1028, + "abbreviation": "SF724", + "nameKr": "", + "nameEn": "Shell flex 724", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF724", + "name": "Shell flex 724", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1029, + "abbreviation": "SF790", + "nameKr": "", + "nameEn": "Shell flex 790", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF790", + "name": "Shell flex 790", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1030, + "abbreviation": "SF881", + "nameKr": "", + "nameEn": "Shell flex 881", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SF881", + "name": "Shell flex 881", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1031, + "abbreviation": "SNF", + "nameKr": "", + "nameEn": "Shell Neoflex", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SNF", + "name": "Shell Neoflex", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1032, + "abbreviation": "SS60/145", + "nameKr": "공업용 용제", + "nameEn": "Shellsol 60/145", + "synonymsEn": "PETROLEUM ETHER / HEXANES / NAPHTHA / PETROL / BENZINE / LIGROIN / LIGROINE / light / PETROLEUM OIL / NAPHTHA SOLVENT / PETROLEUM SPIRIT", + "synonymsKr": "고무시멘트 희석제 / 고무시멘트희석제 / 솔벤트나프타(석유),경질지방족화합물 / 솔벤트나프타(석유),경질지방족화합물", + "unNumber": "", + "casNumber": "64742-89-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SS60/145", + "name": "Shellsol 60/145", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1033, + "abbreviation": "SSA100", + "nameKr": "목재 방부제용 용재", + "nameEn": "Shellsol A100", + "synonymsEn": "Solvent naphtha (petroleum), light arom. / Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA", + "synonymsKr": "경 방향족 화합물 용제 나프타 / 경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물 / C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족.", + "unNumber": "", + "casNumber": "64742-95-6", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSA100", + "name": "Shellsol A100", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1034, + "abbreviation": "SSA90", + "nameKr": "휘발성 유기 화합물", + "nameEn": "Shellsol A90", + "synonymsEn": "ISOPARAFFIN L, SYNTHESIS GRADE / ISOPARAFFIN L / Naphtha, hydrotreated heavy. / Hydrotreatedheavynaphtha(petroleum) / Naphtha,petroleum,hydrotreatedheavy / naphtha(petroleum),hydrotreatedheavy / Naphtha (petroleum), hydrotreated heavy Low boiling point hydrogen treated naphtha / ISOL H / ISSANE / IPOPAR G / SK-ISOL H", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", + "unNumber": "", + "casNumber": "64742-97-4", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSA90", + "name": "Shellsol A90", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1035, + "abbreviation": "SSAB", + "nameKr": "중량 방향족 나프타", + "nameEn": "Shellsol AB", + "synonymsEn": "Generichydrocarbon heavy aromatic mixed ethylbenzenes solvent naphtha petroleum hydrocarbon", + "synonymsKr": "중 방향족 화합물 용제 나프타 / 솔벤트나프타(석유),중질방향족화합물 / 중방향족화합물용제나프타 / 나프탈렌 / 타르캄포 / 흰타르 / 나프텐 / 둥근방충제나프탈린 / C10-11아로마틱하이드로카본 / C12-15알케인/사이클로알케인/아로마틱하이드로카본 / 솔벤트나프타(석유),중질방향족화합물(SOLVENTNAPHTHA(PETROLEUM),HEAVYAROMATIC)", + "unNumber": "", + "casNumber": "64742-94-5", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSAB", + "name": "Shellsol AB", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1036, + "abbreviation": "SSD70", + "nameKr": "알리파틱 석유 솔벤트(파라핀과 나프텐 구성)", + "nameEn": "Shellsol D70", + "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", + "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", + "unNumber": "", + "casNumber": "64742-47-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSD70", + "name": "Shellsol D70", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1037, + "abbreviation": "SSE", + "nameKr": "알리파틱 석유 솔벤트(파라핀과 나프텐 구성)", + "nameEn": "Shellsol E", + "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", + "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", + "unNumber": "", + "casNumber": "64742-47-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSE", + "name": "Shellsol E", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1038, + "abbreviation": "SSF", + "nameKr": "", + "nameEn": "Shellsol F", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSF", + "name": "Shellsol F", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1039, + "abbreviation": "SSK", + "nameKr": "", + "nameEn": "Shellsol K", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSK", + "name": "Shellsol K", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1040, + "abbreviation": "SSLF", + "nameKr": "", + "nameEn": "Shellsol LF", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSLF", + "name": "Shellsol LF", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1041, + "abbreviation": "SSN", + "nameKr": "", + "nameEn": "Shellsol N", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSN", + "name": "Shellsol N", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1042, + "abbreviation": "SSR", + "nameKr": "", + "nameEn": "Shellsol R", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSR", + "name": "Shellsol R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1043, + "abbreviation": "SSRA", + "nameKr": "", + "nameEn": "Shellsol RA", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSRA", + "name": "Shellsol RA", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1044, + "abbreviation": "SSS", + "nameKr": "", + "nameEn": "Shellsol S", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSS", + "name": "Shellsol S", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1045, + "abbreviation": "SST", + "nameKr": "", + "nameEn": "Shellsol T", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SST", + "name": "Shellsol T", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1046, + "abbreviation": "SHF20", + "nameKr": "", + "nameEn": "SHF 20", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHF20", + "name": "SHF 20", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1047, + "abbreviation": "SHF41", + "nameKr": "", + "nameEn": "SHF 41", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHF41", + "name": "SHF 41", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1048, + "abbreviation": "SHF61", + "nameKr": "", + "nameEn": "SHF 61", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHF61", + "name": "SHF 61", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1049, + "abbreviation": "SHF63", + "nameKr": "", + "nameEn": "SHF 63", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHF63", + "name": "SHF 63", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1050, + "abbreviation": "SHF83", + "nameKr": "", + "nameEn": "SHF 83", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHF83", + "name": "SHF 83", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1051, + "abbreviation": "SILDOX", + "nameKr": "", + "nameEn": "Silicon dioxide", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SILDOX", + "name": "Silicon dioxide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1052, + "abbreviation": "SWAX", + "nameKr": "", + "nameEn": "Slack wax", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SWAX", + "name": "Slack wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1053, + "abbreviation": "BSSW", + "nameKr": "", + "nameEn": "Slack wax(BS SW)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BSSW", + "name": "Slack wax(BS SW)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1054, + "abbreviation": "BS150", + "nameKr": "", + "nameEn": "Slack wax(SW150)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BS150", + "name": "Slack wax(SW150)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1055, + "abbreviation": "SW500", + "nameKr": "", + "nameEn": "Slack wax(SW500)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SW500", + "name": "Slack wax(SW500)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1056, + "abbreviation": "SLOP", + "nameKr": "", + "nameEn": "Slop water", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SLOP", + "name": "Slop water", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1057, + "abbreviation": "SLUDG", + "nameKr": "", + "nameEn": "Sludge oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SLUDG", + "name": "Sludge oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1058, + "abbreviation": "SN55", + "nameKr": "", + "nameEn": "SN 55", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SN55", + "name": "SN 55", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1059, + "abbreviation": "SN500", + "nameKr": "", + "nameEn": "SN 500", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SN500", + "name": "SN 500", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1060, + "abbreviation": "SN65", + "nameKr": "", + "nameEn": "SN65", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SN65", + "name": "SN65", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1061, + "abbreviation": "SBRMID", + "nameKr": "", + "nameEn": "Sodium bromide", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SBRMID", + "name": "Sodium bromide", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1062, + "abbreviation": "SLIGNO", + "nameKr": "", + "nameEn": "Sodium lignosulfonate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SLIGNO", + "name": "Sodium lignosulfonate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1063, + "abbreviation": "SODSLIC", + "nameKr": "", + "nameEn": "Sodium silicate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SODSLIC", + "name": "Sodium silicate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1064, + "abbreviation": "SFTNL", + "nameKr": "", + "nameEn": "Softanol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SFTNL", + "name": "Softanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1065, + "abbreviation": "NPTHH", + "nameKr": "", + "nameEn": "Solvent naphtha H", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPTHH", + "name": "Solvent naphtha H", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1066, + "abbreviation": "NPTHL", + "nameKr": "", + "nameEn": "Solvent naphtha L", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPTHL", + "name": "Solvent naphtha L", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1067, + "abbreviation": "NPTHM", + "nameKr": "", + "nameEn": "Solvent naphtha M", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPTHM", + "name": "Solvent naphtha M", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1068, + "abbreviation": "SN60", + "nameKr": "", + "nameEn": "Solvent neutral 60", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SN60", + "name": "Solvent neutral 60", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1069, + "abbreviation": "SL100", + "nameKr": "", + "nameEn": "Solvess 100", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SL100", + "name": "Solvess 100", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1070, + "abbreviation": "SL150", + "nameKr": "", + "nameEn": "Solvess 150", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SL150", + "name": "Solvess 150", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1071, + "abbreviation": "SBTL", + "nameKr": "", + "nameEn": "Sorbitol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SBTL", + "name": "Sorbitol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1072, + "abbreviation": "SOYWY", + "nameKr": "", + "nameEn": "Soyaway water", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SOYWY", + "name": "Soyaway water", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1073, + "abbreviation": "SBO", + "nameKr": "", + "nameEn": "Soybean oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SBO", + "name": "Soybean oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1074, + "abbreviation": "SEFT", + "nameKr": "", + "nameEn": "Special extra fancy tallow", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SEFT", + "name": "Special extra fancy tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1075, + "abbreviation": "SPERM", + "nameKr": "", + "nameEn": "Sperm oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SPERM", + "name": "Sperm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1076, + "abbreviation": "SPFA", + "nameKr": "", + "nameEn": "Split fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SPFA", + "name": "Split fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1077, + "abbreviation": "SHPSFA", + "nameKr": "", + "nameEn": "Split hydrogenated palm stearin fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SHPSFA", + "name": "Split hydrogenated palm stearin fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1078, + "abbreviation": "SPKFA", + "nameKr": "", + "nameEn": "Split palm kernel oil fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SPKFA", + "name": "Split palm kernel oil fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1079, + "abbreviation": "SPSFA", + "nameKr": "", + "nameEn": "Split palm stearin fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SPSFA", + "name": "Split palm stearin fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1080, + "abbreviation": "SSPKFA", + "nameKr": "", + "nameEn": "Split stearin palm kernel fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSPKFA", + "name": "Split stearin palm kernel fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1081, + "abbreviation": "SUPS", + "nameKr": "", + "nameEn": "Splitted undistilled palm stearin", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SUPS", + "name": "Splitted undistilled palm stearin", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1082, + "abbreviation": "SQPO", + "nameKr": "", + "nameEn": "SQ Palm oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SQPO", + "name": "SQ Palm oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1083, + "abbreviation": "SQPL", + "nameKr": "", + "nameEn": "SQ Palm olein", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SQPL", + "name": "SQ Palm olein", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1084, + "abbreviation": "STWAX", + "nameKr": "", + "nameEn": "Stearine wax", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "STWAX", + "name": "Stearine wax", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1085, + "abbreviation": "SUCROSE", + "nameKr": "", + "nameEn": "Sucrose", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SUCROSE", + "name": "Sucrose", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1086, + "abbreviation": "SUGAL", + "nameKr": "", + "nameEn": "Sugar alcohol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SUGAL", + "name": "Sugar alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1087, + "abbreviation": "SULFUR", + "nameKr": "유황", + "nameEn": "Sulfur", + "synonymsEn": "Sulfur / SULPHUR / Sulfur powder / SULPHUR POWDER / Sublimed sulfur / powder coating / Thione / COLLOIDAL SULFUR / Soufre / That / This", + "synonymsKr": "유황 / 벤술포이드 / 솔프릴 / 술푸르 / 술프란 / 술프렉스 / 승화된황 / 아그리-술 / 유황 / 유황-용융 / 유황화 / 황 / 황(SULFUR) / 설퍼클로이드", + "unNumber": "1350", + "casNumber": "7704-34-9", + "transportMethod": "", + "sebc": "", + "usage": "황산 생산, 비료 및 고무 제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SULFUR", + "name": "Sulfur", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1088, + "abbreviation": "FSACID", + "nameKr": "", + "nameEn": "Sulfuric acid (Fuming)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FSACID", + "name": "Sulfuric acid (Fuming)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1089, + "abbreviation": "SUN", + "nameKr": "", + "nameEn": "Sunflower seed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SUN", + "name": "Sunflower seed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1090, + "abbreviation": "STLW", + "nameKr": "", + "nameEn": "Supreme tallow", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "STLW", + "name": "Supreme tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1091, + "abbreviation": "SX50", + "nameKr": "", + "nameEn": "SX-50", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SX50", + "name": "SX-50", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1092, + "abbreviation": "SX70", + "nameKr": "", + "nameEn": "SX-70", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SX70", + "name": "SX-70", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1093, + "abbreviation": "SDEE", + "nameKr": "", + "nameEn": "sym-Dichloroethyl ether", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SDEE", + "name": "sym-Dichloroethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1094, + "abbreviation": "SNP9", + "nameKr": "", + "nameEn": "Synperonic NP-9", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SNP9", + "name": "Synperonic NP-9", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1095, + "abbreviation": "SPNCS", + "nameKr": "", + "nameEn": "Synperonics", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SPNCS", + "name": "Synperonics", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1096, + "abbreviation": "TALL", + "nameKr": "", + "nameEn": "Tall oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TALL", + "name": "Tall oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1097, + "abbreviation": "TOFA", + "nameKr": "", + "nameEn": "Tall oil fatty acid (resin acid less than 20%)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TOFA", + "name": "Tall oil fatty acid (resin acid less than 20%)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1098, + "abbreviation": "TLW", + "nameKr": "", + "nameEn": "Tallow", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TLW", + "name": "Tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1099, + "abbreviation": "TLWAFAT", + "nameKr": "", + "nameEn": "Tallow animal fat", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TLWAFAT", + "name": "Tallow animal fat", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1100, + "abbreviation": "TLWFA", + "nameKr": "", + "nameEn": "Tallow fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TLWFA", + "name": "Tallow fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1101, + "abbreviation": "TLWFAL", + "nameKr": "", + "nameEn": "Tallow fatty alcohol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TLWFAL", + "name": "Tallow fatty alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1102, + "abbreviation": "PGTA1618", + "nameKr": "", + "nameEn": "Tallow fatty alcohol(P&G TA-1618)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PGTA1618", + "name": "Tallow fatty alcohol(P&G TA-1618)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1103, + "abbreviation": "TLWS", + "nameKr": "", + "nameEn": "Tallow sterine", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TLWS", + "name": "Tallow sterine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1104, + "abbreviation": "TARACD", + "nameKr": "", + "nameEn": "Tar acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TARACD", + "name": "Tar acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1105, + "abbreviation": "TBMA", + "nameKr": "", + "nameEn": "t-Butyl methacrylate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TBMA", + "name": "t-Butyl methacrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1106, + "abbreviation": "TEE", + "nameKr": "", + "nameEn": "Tee froth", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TEE", + "name": "Tee froth", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1107, + "abbreviation": "TEEPOL", + "nameKr": "", + "nameEn": "Teepol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TEEPOL", + "name": "Teepol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1108, + "abbreviation": "TSDO", + "nameKr": "", + "nameEn": "Teeseed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TSDO", + "name": "Teeseed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1109, + "abbreviation": "TELON", + "nameKr": "", + "nameEn": "Tellone", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TELON", + "name": "Tellone", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1110, + "abbreviation": "TAACE", + "nameKr": "", + "nameEn": "tert-Amyl acetate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TAACE", + "name": "tert-Amyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1111, + "abbreviation": "TAAL", + "nameKr": "", + "nameEn": "tert-Amyl alcohol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TAAL", + "name": "tert-Amyl alcohol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1112, + "abbreviation": "TBACE", + "nameKr": "", + "nameEn": "tert-Butyl acetate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TBACE", + "name": "tert-Butyl acetate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1113, + "abbreviation": "TBACR", + "nameKr": "", + "nameEn": "tert-Butylacrylate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TBACR", + "name": "tert-Butylacrylate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1114, + "abbreviation": "TTCE", + "nameKr": "", + "nameEn": "Tetrachloroethane", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TTCE", + "name": "Tetrachloroethane", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1115, + "abbreviation": "TCELN", + "nameKr": "", + "nameEn": "Tetrachloroethylene", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TCELN", + "name": "Tetrachloroethylene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1116, + "abbreviation": "TTEG", + "nameKr": "", + "nameEn": "Tetraethylene glycol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TTEG", + "name": "Tetraethylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1117, + "abbreviation": "TPB", + "nameKr": "", + "nameEn": "Tetrapropylene benzene", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TPB", + "name": "Tetrapropylene benzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1118, + "abbreviation": "TLN", + "nameKr": "톨루엔", + "nameEn": "Toluene", + "synonymsEn": "Toluene / TOL / METHYLBENZENE / TOLUNE / TOLUOL / Toluen / JB / PHENYLMETHANE / Methane, phenyl- / tolueno / caswellno859", + "synonymsKr": "톨루엔 / 톨루엔 / 1-메틸벤젠 / 메틸벤젠 / 톨루올 / 메틸벤젠,메틸벤졸 / 페닐메탄 / 톨루엔(TO) / 메틸벤졸", + "unNumber": "1294", + "casNumber": "108-88-3", + "transportMethod": "", + "sebc": "", + "usage": "도료의 용제, 접착제, 잉크, 의약품 용제", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TLN", + "name": "Toluene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1119, + "abbreviation": "TMTSO", + "nameKr": "", + "nameEn": "Tomato seed oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TMTSO", + "name": "Tomato seed oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1120, + "abbreviation": "TPKFA", + "nameKr": "", + "nameEn": "Top palm kernel fatty acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TPKFA", + "name": "Top palm kernel fatty acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1121, + "abbreviation": "TWT", + "nameKr": "", + "nameEn": "Top white beef tallow", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TWT", + "name": "Top white beef tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1122, + "abbreviation": "TDE", + "nameKr": "", + "nameEn": "Trans-Dichloroethylene", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TDE", + "name": "Trans-Dichloroethylene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1123, + "abbreviation": "TFM", + "nameKr": "", + "nameEn": "Transformer oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TFM", + "name": "Transformer oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1124, + "abbreviation": "T2EHT", + "nameKr": "", + "nameEn": "tri-2-Ethylhexyl trimellitate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "T2EHT", + "name": "tri-2-Ethylhexyl trimellitate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1125, + "abbreviation": "TPP", + "nameKr": "", + "nameEn": "Tributyl phosphate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TPP", + "name": "Tributyl phosphate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1126, + "abbreviation": "TCPP", + "nameKr": "", + "nameEn": "Tricresyl phosphate (containing less than 1% ortho-isomer)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TCPP", + "name": "Tricresyl phosphate (containing less than 1% ortho-isomer)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1127, + "abbreviation": "TDA", + "nameKr": "톨루엔디아민", + "nameEn": "TOLUENE DIAMINE", + "synonymsEn": "·BENZENEDIAMINE, AR-METHYL- ·DIAMINOTOLUENE ·METHYLPHENYLENEDIAMINE ·PHENYLENEDIAMINE, AR-METHYL- ·TOLUENE-AR,AR-DIAMINE ·TOLUENEDIAMINE ·TOLYLENEDIAMINE ·RCRA U221", + "synonymsKr": "·벤젠다이아민, AR-메틸- ·다이아미노톨루엔 ·메틸페닐렌다이아민 ·페닐렌다이아민, AR-메틸- ·톨루엔-AR,AR-다이아민 ·톨루엔다이아민 ·토릴렌다이아민", + "unNumber": "-", + "casNumber": "25376-45-8", + "transportMethod": "", + "sebc": "", + "usage": "섬유, 가죽, 모피, 염색제조", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TDA", + "name": "TOLUENE DIAMINE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1128, + "abbreviation": "TETAMN", + "nameKr": "", + "nameEn": "Triethanolamine", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TETAMN", + "name": "Triethanolamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1129, + "abbreviation": "TEAMN", + "nameKr": "", + "nameEn": "Triethylamine", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TEAMN", + "name": "Triethylamine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1130, + "abbreviation": "TEBZN", + "nameKr": "", + "nameEn": "Triethylbenzene", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TEBZN", + "name": "Triethylbenzene", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1131, + "abbreviation": "TEG", + "nameKr": "", + "nameEn": "Triethylene glycol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TEG", + "name": "Triethylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1132, + "abbreviation": "TETTMN", + "nameKr": "", + "nameEn": "Triethylene tetramine", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TETTMN", + "name": "Triethylene tetramine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1133, + "abbreviation": "TPPG", + "nameKr": "", + "nameEn": "Tripropylene glycol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "P", + "ibcShipType": "IMO 3TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "AC", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TPPG", + "name": "Tripropylene glycol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1134, + "abbreviation": "TPPGMME", + "nameKr": "", + "nameEn": "Tripropylene glycol monomethyl ether", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TPPGMME", + "name": "Tripropylene glycol monomethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1135, + "abbreviation": "TXPP", + "nameKr": "", + "nameEn": "Trixylyl phosphate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 1TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TXPP", + "name": "Trixylyl phosphate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1136, + "abbreviation": "TCMO", + "nameKr": "", + "nameEn": "Tucum oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TCMO", + "name": "Tucum oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1137, + "abbreviation": "TUNG", + "nameKr": "", + "nameEn": "Tung oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2(k)TYPE", + "ibcTankType": "2G", + "ibcDetection": "No", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TUNG", + "name": "Tung oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1138, + "abbreviation": "TPTN", + "nameKr": "", + "nameEn": "Turpentine", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TPTN", + "name": "Turpentine", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1139, + "abbreviation": "UNDECA", + "nameKr": "", + "nameEn": "Undecanol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UNDECA", + "name": "Undecanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1140, + "abbreviation": "UVL51", + "nameKr": "", + "nameEn": "UNIVOLT 51", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UVL51", + "name": "UNIVOLT 51", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1141, + "abbreviation": "UND", + "nameKr": "", + "nameEn": "Unneutralized naphthenic distilate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UND", + "name": "Unneutralized naphthenic distilate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1142, + "abbreviation": "UETLW", + "nameKr": "", + "nameEn": "Unsealed edible tallow", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UETLW", + "name": "Unsealed edible tallow", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1143, + "abbreviation": "UAN", + "nameKr": "", + "nameEn": "Urea ammonium nitrate solution", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UAN", + "name": "Urea ammonium nitrate solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1144, + "abbreviation": "UAS", + "nameKr": "", + "nameEn": "Urea ammonium solution", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UAS", + "name": "Urea ammonium solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1145, + "abbreviation": "UFA", + "nameKr": "", + "nameEn": "Urea formaldehyde solution", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UFA", + "name": "Urea formaldehyde solution", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1146, + "abbreviation": "VAR40", + "nameKr": "", + "nameEn": "Varsol 40", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VAR40", + "name": "Varsol 40", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1147, + "abbreviation": "VEO10", + "nameKr": "", + "nameEn": "Veova 10", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VEO10", + "name": "Veova 10", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1148, + "abbreviation": "VER10", + "nameKr": "", + "nameEn": "Versatic 10", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VER10", + "name": "Versatic 10", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1149, + "abbreviation": "VER911", + "nameKr": "", + "nameEn": "Versatic 911", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VER911", + "name": "Versatic 911", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1150, + "abbreviation": "VINEGAR", + "nameKr": "", + "nameEn": "Vinegar", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VINEGAR", + "name": "Vinegar", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1151, + "abbreviation": "VEE", + "nameKr": "", + "nameEn": "Vinyl ethyl ether", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "F", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.4, 15.13, 15.14, 15.19.6, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VEE", + "name": "Vinyl ethyl ether", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1152, + "abbreviation": "VNDECA", + "nameKr": "", + "nameEn": "Vinyl neodecanoate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "T", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VNDECA", + "name": "Vinyl neodecanoate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1153, + "abbreviation": "VDNC", + "nameKr": "", + "nameEn": "Vinylidene chloride", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "IMO 2TYPE", + "ibcTankType": "2G", + "ibcDetection": "FT", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.13, 15.14, 15.17, 15.19, 16.6.1, 16.6.2", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VDNC", + "name": "Vinylidene chloride", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1154, + "abbreviation": "VVT500", + "nameKr": "", + "nameEn": "VIVATEC 500", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VVT500", + "name": "VIVATEC 500", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1155, + "abbreviation": "VNL3010", + "nameKr": "", + "nameEn": "Voranol®3010 polyol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VNL3010", + "name": "Voranol®3010 polyol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1156, + "abbreviation": "WNUTO", + "nameKr": "", + "nameEn": "Walnut oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "WNUTO", + "name": "Walnut oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1157, + "abbreviation": "WATER", + "nameKr": "", + "nameEn": "Water(Ballast/River water)", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "WATER", + "name": "Water(Ballast/River water)", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1158, + "abbreviation": "WSP", + "nameKr": "", + "nameEn": "White spirit", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "WSP", + "name": "White spirit", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1159, + "abbreviation": "X55", + "nameKr": "", + "nameEn": "X-55", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "X55", + "name": "X-55", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1160, + "abbreviation": "X55B", + "nameKr": "", + "nameEn": "X-55B", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "X55B", + "name": "X-55B", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1161, + "abbreviation": "XHVI5.2", + "nameKr": "", + "nameEn": "XHVI 5.2", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "XHVI5.2", + "name": "XHVI 5.2", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1162, + "abbreviation": "EXA9S", + "nameKr": "", + "nameEn": "EXXAL 9S", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXA9S", + "name": "EXXAL 9S", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1163, + "abbreviation": "C12IOLFN", + "nameKr": "", + "nameEn": "C12 ISO OLEFIN", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "C12IOLFN", + "name": "C12 ISO OLEFIN", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1164, + "abbreviation": "DCPN", + "nameKr": "", + "nameEn": "DICHLOROPROPENE", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DCPN", + "name": "DICHLOROPROPENE", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1165, + "abbreviation": "150NS", + "nameKr": "", + "nameEn": "150NS", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "150NS", + "name": "150NS", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1166, + "abbreviation": "HDRS", + "nameKr": "", + "nameEn": "HYDROSEAL", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HDRS", + "name": "HYDROSEAL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1167, + "abbreviation": "BCTOL", + "nameKr": "부틸카비톨", + "nameEn": "Butyl Carbitol", + "synonymsEn": "Diethylene glycol monobutyl ether / DIETHYLENE GLYCOL MONOBUTYL ETHER / DB / BUTYL CARBITOL / BUTYLDIGLYCOL / 2-(2-BUTOXYETHOXY)ETHANOL / Ethanol, 2-(2-butoxyethoxy)- / DIETHYLENE GLYCOL BUTYL ETHER / DGBE / Butoxyethoxyethanol / DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", + "synonymsKr": "부틸글리콜 / 다이에틸렌글라이콜모노-N-뷰틸에테르 / 2-(2-부톡시에톡시)에탄올 / 부톡시디에틸렌글리콜 / 부틸옥시BUTOXYDIGLYCOL / 부틸카르비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 디에틸렌글리콜모노부틸에테르 / 부틸글리콜 / 뷰틸캐비톨 / 부틸카비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 부톡시다이글라이콜 / 다이에틸렌 글라이콜 모노-N-뷰틸 에테르", + "unNumber": "2810", + "casNumber": "112-34-5", + "transportMethod": "", + "sebc": "", + "usage": "용매, 보습제, 유화제 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BCTOL", + "name": "Butyl Carbitol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1168, + "abbreviation": "BCSOL", + "nameKr": "", + "nameEn": "Butyl Cellosolve", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BCSOL", + "name": "Butyl Cellosolve", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1169, + "abbreviation": "CTOLS", + "nameKr": "", + "nameEn": "Carbito / Solvent", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CTOLS", + "name": "Carbito / Solvent", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1170, + "abbreviation": "EPOR331", + "nameKr": "", + "nameEn": "Dow Epoxy Resin/331", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EPOR331", + "name": "Dow Epoxy Resin/331", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1171, + "abbreviation": "EPOR383", + "nameKr": "", + "nameEn": "Dow Epoxy Resin/383", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EPOR383", + "name": "Dow Epoxy Resin/383", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1172, + "abbreviation": "DOWNLDB", + "nameKr": "", + "nameEn": "Dowanols DB", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOWNLDB", + "name": "Dowanols DB", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1173, + "abbreviation": "DOWNLEB", + "nameKr": "", + "nameEn": "Dowanols EB", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOWNLEB", + "name": "Dowanols EB", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1174, + "abbreviation": "DOWNLPM", + "nameKr": "", + "nameEn": "Dowanols PM", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOWNLPM", + "name": "Dowanols PM", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1175, + "abbreviation": "DOWP", + "nameKr": "", + "nameEn": "Dowper", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DOWP", + "name": "Dowper", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1176, + "abbreviation": "ETHA190", + "nameKr": "", + "nameEn": "Ehanol 190 PF Syn SD 40-B", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ETHA190", + "name": "Ehanol 190 PF Syn SD 40-B", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1177, + "abbreviation": "EDXE310", + "nameKr": "", + "nameEn": "Emkadioxol E310", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EDXE310", + "name": "Emkadioxol E310", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1178, + "abbreviation": "IPAHYD", + "nameKr": "아이소프로필알코올", + "nameEn": "Isopropanol anhydrous", + "synonymsEn": "Isopropyl alcohol / IPA / 2-Propanol / Isopropanol / i-PrOH / iPrOH / i-Propanol / Propanol-2 / 2-PROPANOL (IPA) / 67-73-0 / lsopropanol", + "synonymsKr": "이소프로필알코올 / 이소프로필알코올 / 에틸카르비놀 / 이소올 / 제록스필름제거제 / 2-프로판올 / SEC-프로필알코올 / 디메틸카르비놀 / 아이소프로필알코올 / 이소프로판올 / 프로판-2-올 / 프로필알코올 / 아이피에이 / 이소프로필알콜 / 이소프로필알코올 / 아이소프로판올 / 1-메틸에탄올 / 1-메틸에틸알코올 / 2-프로필알코올 / 2-하이드록시프로페인 / n-프로판-2-올", + "unNumber": "1219", + "casNumber": "67-63-0", + "transportMethod": "", + "sebc": "", + "usage": "화잘품, 개인용품, IT부품 세정, 소독 등 사용", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IPAHYD", + "name": "Isopropanol anhydrous", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1179, + "abbreviation": "MCTOL", + "nameKr": "메틸카비톨", + "nameEn": "Methyl Carbitol", + "synonymsEn": "Diethylene glycol monomethyl ether / DM / 2-(2-METHOXYETHOXY)ETHANOL / degme / METHYL CARBITOL / METHYLDIGLYCOL / METHOXYETHOXYETHANOL / Ethanol,2-(2-methoxyethoxy)- / DIETHYLENE GLYCOL METHYL ETHER / 2-(2- / DIEGME", + "synonymsKr": "디에틸렌 글리콜 모노메틸 에테르 / 2-(메톡시에톡시)에탄올DI / 다이에틸렌글리콜모노메틸에테르 / 디에틸렌글리콜모노메틸에테르 / 메틸디글리콜 / 2-(2-메톡시에톡시)에탄올 / 2-(2-메톡시에톡시)에탄올(메톡시디글라이콜) / 다이에틸렌글라이콜모노메틸에터 / 메톡시다이글리콜 / 다이에틸렌글리콜모노메틸에테르 / 다이에틸렌 글리콜 메틸 에테르 / 2-(2-메톡시에톡시에탄올) / 메틸 다이옥시톨 / 메틸 카비톨", + "unNumber": "", + "casNumber": "111-77-3", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MCTOL", + "name": "Methyl Carbitol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1180, + "abbreviation": "MCFA", + "nameKr": "", + "nameEn": "Methyl Cellosolve FA grade", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MCFA", + "name": "Methyl Cellosolve FA grade", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1181, + "abbreviation": "NTS", + "nameKr": "", + "nameEn": "Neu-Tri solvent", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NTS", + "name": "Neu-Tri solvent", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1182, + "abbreviation": "PNOL", + "nameKr": "노말-프로필알콜", + "nameEn": "Propanol", + "synonymsEn": "1-Propanol / PROPANOL / N-PROPANOL / PROPAN-1-OL / Propyl alcohol / N-PROPYL ALCOHOL / Propanol-1 / 1-Propyl alcohol / PROPANE-1-OL / n-Propan-1-ol / n-C3H7OH", + "synonymsKr": "1-프로판올 / 1-프로판올 / n-프로필알코올 / 노말-프로필알콜 / 에틸칼비놀(EthylCarbinol),프로필알콜(PropylAlcohol),프로파놀(Propanol),N-프로파놀(N-Propanol),1-하이드록시프로판(1-Hydroxypropane),1-프로파놀(1-Propanol),프로필릭알콜(PropylicAlcohol),1-프로필알콜(1-PropylAlcohol), / N-프로판올 / 노말프로필알코올 / 프로필알코올 / 노말-프로필알콜", + "unNumber": "1274", + "casNumber": "71-23-8", + "transportMethod": "", + "sebc": "", + "usage": "반도체나 LCD 등 IT 부품 세정액, 페인트나 잉크제거용도", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PNOL", + "name": "Propanol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1183, + "abbreviation": "PPC", + "nameKr": "", + "nameEn": "Propyl Cellosolve", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PPC", + "name": "Propyl Cellosolve", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1184, + "abbreviation": "SES300", + "nameKr": "", + "nameEn": "Solvent ES 300", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SES300", + "name": "Solvent ES 300", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1185, + "abbreviation": "SFX625", + "nameKr": "", + "nameEn": "Specflex*IP 625", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SFX625", + "name": "Specflex*IP 625", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1186, + "abbreviation": "SFX630", + "nameKr": "", + "nameEn": "Specflex*NC 630 Polyol", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SFX630", + "name": "Specflex*NC 630 Polyol", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1187, + "abbreviation": "SFX700", + "nameKr": "", + "nameEn": "Specflex*NC 700", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SFX700", + "name": "Specflex*NC 700", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1188, + "abbreviation": "TGOL10", + "nameKr": "", + "nameEn": "Tergitol NP-10", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TGOL10", + "name": "Tergitol NP-10", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1189, + "abbreviation": "TGOL9", + "nameKr": "", + "nameEn": "Tergitol NP-9", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TGOL9", + "name": "Tergitol NP-9", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1190, + "abbreviation": "TETA", + "nameKr": "", + "nameEn": "TETA", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TETA", + "name": "TETA", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1191, + "abbreviation": "UEEEP", + "nameKr": "", + "nameEn": "Ucar Ester EEP", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "UEEEP", + "name": "Ucar Ester EEP", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1192, + "abbreviation": "VNOL", + "nameKr": "", + "nameEn": "Voranols", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "VNOL", + "name": "Voranols", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1193, + "abbreviation": "HNPTH", + "nameKr": "", + "nameEn": "Heavy Naptha", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HNPTH", + "name": "Heavy Naptha", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1194, + "abbreviation": "SYN4", + "nameKr": "", + "nameEn": "Spectrasyn 4", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SYN4", + "name": "Spectrasyn 4", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1195, + "abbreviation": "NDCORN", + "nameKr": "", + "nameEn": "Neutralized Dewaxed Corn Oil", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NDCORN", + "name": "Neutralized Dewaxed Corn Oil", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1196, + "abbreviation": "OLA249SX", + "nameKr": "", + "nameEn": "OLOA 249SX", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA249SX", + "name": "OLOA 249SX", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1197, + "abbreviation": "OLA16502", + "nameKr": "", + "nameEn": "OLOA 16502", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA16502", + "name": "OLOA 16502", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1198, + "abbreviation": "NN10GB", + "nameKr": "", + "nameEn": "NYNAS NYTRO 10GB INSULATING OIL", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NN10GB", + "name": "NYNAS NYTRO 10GB INSULATING OIL", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1199, + "abbreviation": "EXSD80/100", + "nameKr": "", + "nameEn": "EXXSOL DSP 80/100", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "EXSD80/100", + "name": "EXXSOL DSP 80/100", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1200, + "abbreviation": "OLA9842", + "nameKr": "", + "nameEn": "OLOA 9842", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA9842", + "name": "OLOA 9842", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1201, + "abbreviation": "GLSP1000", + "nameKr": "", + "nameEn": "Glissopal 1000", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "GLSP1000", + "name": "Glissopal 1000", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1202, + "abbreviation": "SSL75", + "nameKr": "", + "nameEn": "Sarasol 75", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SSL75", + "name": "Sarasol 75", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1203, + "abbreviation": "PRW710", + "nameKr": "", + "nameEn": "PROWAX 710", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PRW710", + "name": "PROWAX 710", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1204, + "abbreviation": "SA30", + "nameKr": "", + "nameEn": "Stearic acid 30%", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SA30", + "name": "Stearic acid 30%", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1205, + "abbreviation": "SA60", + "nameKr": "", + "nameEn": "Stearic acid 60%", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SA60", + "name": "Stearic acid 60%", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1206, + "abbreviation": "NO100R", + "nameKr": "", + "nameEn": "Neutral oil 100R", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NO100R", + "name": "Neutral oil 100R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1207, + "abbreviation": "NO220R", + "nameKr": "", + "nameEn": "Neutral oil 220R", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NO220R", + "name": "Neutral oil 220R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1208, + "abbreviation": "NO600R", + "nameKr": "", + "nameEn": "Neutral oil 600R", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NO600R", + "name": "Neutral oil 600R", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1209, + "abbreviation": "SN80E", + "nameKr": "", + "nameEn": "SOLVENT NEUTRAL 80E", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SN80E", + "name": "SOLVENT NEUTRAL 80E", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1210, + "abbreviation": "FAME", + "nameKr": "", + "nameEn": "Fatty acid methyl ester", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "FAME", + "name": "Fatty acid methyl ester", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1211, + "abbreviation": "OLA13000", + "nameKr": "", + "nameEn": "OLOA 13000", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA13000", + "name": "OLOA 13000", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1212, + "abbreviation": "OLA216Q", + "nameKr": "", + "nameEn": "OLOA 216Q", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA216Q", + "name": "OLOA 216Q", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1213, + "abbreviation": "INNACID", + "nameKr": "", + "nameEn": "Isononanoic acid", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "INNACID", + "name": "Isononanoic acid", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1214, + "abbreviation": "TOTM", + "nameKr": "", + "nameEn": "Tri-2-ethylhexyl trimelliate", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TOTM", + "name": "Tri-2-ethylhexyl trimelliate", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1215, + "abbreviation": "MCZW700", + "nameKr": "", + "nameEn": "MONOCIZER W-700", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MCZW700", + "name": "MONOCIZER W-700", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1216, + "abbreviation": "HGLN60", + "nameKr": "", + "nameEn": "Hygolg LN60", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "HGLN60", + "name": "Hygolg LN60", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1217, + "abbreviation": "CE810", + "nameKr": "", + "nameEn": "CE-810", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CE810", + "name": "CE-810", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1218, + "abbreviation": "CE810K", + "nameKr": "", + "nameEn": "CE-810K", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "CE810K", + "name": "CE-810K", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1219, + "abbreviation": "SYN6", + "nameKr": "", + "nameEn": "Spectrasyn 6", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "SYN6", + "name": "Spectrasyn 6", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1220, + "abbreviation": "TXM16342", + "nameKr": "", + "nameEn": "Toluene/Xylene Mix-16342", + "synonymsEn": "", + "synonymsKr": "", + "unNumber": "", + "casNumber": "", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TXM16342", + "name": "Toluene/Xylene Mix-16342", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1221, + "abbreviation": "TDAE", + "nameKr": "정재된 석유 추출물, 중 나프텐 증류 용재", + "nameEn": "TREATED DISTILLATE AROMATIC EXTRACT", + "synonymsEn": "Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent / Aromatische Extrakte / distillates, petroleum, heavy paraffinic, solvent-refined / Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent / Extrakte (Erdoel), durch Losungsmittel aufbereitetes schweres paraffinhaltiges Destillatlosungsmittel / Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent Distillate aromatic extract (treated)", + "synonymsKr": "디메칠설폭사이드(DMSO)로 추출한 성분을 3% 초과하여 함유하고 있는석유 유래물질 (Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Extracts(petroleum),solvent-refinedheavyparaffinicdistillatesolvent) / 석유유래물질(Extracts(petroleum),solvent-refinedheavyparaffinicdistillatesolvent)", + "unNumber": "", + "casNumber": "68783-04-0", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "TDAE", + "name": "TREATED DISTILLATE AROMATIC EXTRACT", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + }, + { + "id": 1222, + "abbreviation": "DAE", + "nameKr": "석유 추출물, 중 나프텐 증류 용재", + "nameEn": "DISTILLATE AROMATIC EXTRACT", + "synonymsEn": "·Mobil 30, Mobil Mobilsol 30 Mobil aromatic oil Mobil rubber extender oil mineral oil petroleum extracts heavy paraffinic distillate solvent", + "synonymsKr": "중 파라핀 증류액 용제 추출물 / 정제유방향족추출물 / 중파라핀증류액용제추출물 / 정제유방향족추출물(DISTILLATEAROMATICEXTRACT) / 석유추출물,heavyparaffinicdistillatesolvent", + "unNumber": "", + "casNumber": "64742-04-7", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DAE", + "name": "DISTILLATE AROMATIC EXTRACT", + "company": "", + "source": "화물적부도" + } + ], + "portFrequency": [] + } +] \ No newline at end of file diff --git a/frontend/src/tabs/aerial/components/CCTVPlayer.tsx b/frontend/src/tabs/aerial/components/CCTVPlayer.tsx new file mode 100644 index 0000000..558de05 --- /dev/null +++ b/frontend/src/tabs/aerial/components/CCTVPlayer.tsx @@ -0,0 +1,250 @@ +import { useRef, useEffect, useState, useCallback, useMemo } from 'react'; +import Hls from 'hls.js'; +import { detectStreamType } from '../utils/streamUtils'; + +interface CCTVPlayerProps { + cameraNm: string; + streamUrl: string | null; + sttsCd: string; + coordDc?: string | null; + sourceNm?: string | null; + cellIndex?: number; +} + +type PlayerState = 'loading' | 'playing' | 'error' | 'offline' | 'no-url'; + +/** 외부 HLS URL을 백엔드 프록시 경유 URL로 변환 */ +function toProxyUrl(url: string): string { + if (url.startsWith('http://') || url.startsWith('https://')) { + return `/api/aerial/cctv/stream-proxy?url=${encodeURIComponent(url)}`; + } + return url; +} + +export function CCTVPlayer({ + cameraNm, + streamUrl, + sttsCd, + coordDc, + sourceNm, + cellIndex = 0, +}: CCTVPlayerProps) { + const videoRef = useRef(null); + const hlsRef = useRef(null); + const [hlsPlayerState, setHlsPlayerState] = useState<'loading' | 'playing' | 'error'>('loading'); + const [retryKey, setRetryKey] = useState(0); + + /** 원본 URL 기반으로 타입 감지, 재생은 프록시 URL 사용 */ + const proxiedUrl = useMemo( + () => (streamUrl ? toProxyUrl(streamUrl) : null), + [streamUrl], + ); + + /** props 기반으로 상태를 동기적으로 파생 */ + const isOffline = sttsCd === 'OFFLINE' || sttsCd === 'MAINT'; + const hasNoUrl = !isOffline && (!streamUrl || !proxiedUrl); + const streamType = useMemo( + () => (streamUrl && !isOffline ? detectStreamType(streamUrl) : null), + [streamUrl, isOffline], + ); + + const playerState: PlayerState = isOffline + ? 'offline' + : hasNoUrl + ? 'no-url' + : (streamType === 'mjpeg' || streamType === 'iframe') + ? 'playing' + : hlsPlayerState; + + const destroyHls = useCallback(() => { + if (hlsRef.current) { + hlsRef.current.destroy(); + hlsRef.current = null; + } + }, []); + + useEffect(() => { + if (isOffline || hasNoUrl || !streamUrl || !proxiedUrl) { + destroyHls(); + return; + } + + const type = detectStreamType(streamUrl); + queueMicrotask(() => setHlsPlayerState('loading')); + + if (type === 'hls') { + const video = videoRef.current; + if (!video) return; + + if (Hls.isSupported()) { + destroyHls(); + const hls = new Hls({ + enableWorker: true, + lowLatencyMode: true, + maxBufferLength: 10, + maxMaxBufferLength: 30, + }); + hlsRef.current = hls; + hls.loadSource(proxiedUrl); + hls.attachMedia(video); + hls.on(Hls.Events.MANIFEST_PARSED, () => { + setHlsPlayerState('playing'); + video.play().catch(() => {}); + }); + hls.on(Hls.Events.ERROR, (_event, data) => { + if (data.fatal) { + setHlsPlayerState('error'); + if (data.type === Hls.ErrorTypes.NETWORK_ERROR) { + setTimeout(() => hls.startLoad(), 3000); + } + } + }); + return () => destroyHls(); + } + + // Safari 네이티브 HLS (프록시 경유) + if (video.canPlayType('application/vnd.apple.mpegurl')) { + video.src = proxiedUrl; + const onLoaded = () => setHlsPlayerState('playing'); + const onError = () => setHlsPlayerState('error'); + video.addEventListener('loadeddata', onLoaded); + video.addEventListener('error', onError); + video.play().catch(() => {}); + return () => { + video.removeEventListener('loadeddata', onLoaded); + video.removeEventListener('error', onError); + }; + } + + queueMicrotask(() => setHlsPlayerState('error')); + return; + } + + if (type === 'mp4') { + const video = videoRef.current; + if (!video) return; + video.src = proxiedUrl; + const onLoaded = () => setHlsPlayerState('playing'); + const onError = () => setHlsPlayerState('error'); + video.addEventListener('loadeddata', onLoaded); + video.addEventListener('error', onError); + video.play().catch(() => {}); + return () => { + video.removeEventListener('loadeddata', onLoaded); + video.removeEventListener('error', onError); + }; + } + + if (type === 'mjpeg' || type === 'iframe') { + return; + } + + queueMicrotask(() => setHlsPlayerState('error')); + return () => destroyHls(); + }, [streamUrl, proxiedUrl, isOffline, hasNoUrl, destroyHls, retryKey]); + + // 오프라인 + if (playerState === 'offline') { + return ( +
+
📹
+
+ {sttsCd === 'MAINT' ? '점검중' : '오프라인'} +
+
{cameraNm}
+
+ ); + } + + // URL 미설정 + if (playerState === 'no-url') { + return ( +
+
📹
+
스트림 URL 미설정
+
{cameraNm}
+
+ ); + } + + // 에러 + if (playerState === 'error') { + return ( +
+
⚠️
+
연결 실패
+
{cameraNm}
+ +
+ ); + } + + return ( + <> + {/* 로딩 오버레이 */} + {playerState === 'loading' && ( +
+
📹
+
연결 중...
+
+ )} + + {/* HLS / MP4 */} + {(streamType === 'hls' || streamType === 'mp4') && ( +