diff --git a/src/assets/file/FiEE, Inc._Audit Committee Charter.pdf b/src/assets/file/FiEE, Inc._Audit Committee Charter.pdf index e78ec9b..d1ee8e5 100644 Binary files a/src/assets/file/FiEE, Inc._Audit Committee Charter.pdf and b/src/assets/file/FiEE, Inc._Audit Committee Charter.pdf differ diff --git a/src/components/customEcharts/size1920Echarts/index.vue b/src/components/customEcharts/size1920Echarts/index.vue index 1708411..8f11abc 100644 --- a/src/components/customEcharts/size1920Echarts/index.vue +++ b/src/components/customEcharts/size1920Echarts/index.vue @@ -76,19 +76,28 @@ const initEcharts = (data) => { }) }) const yAxisData = data.map((item) => item.price) - console.error(xAxisData, yAxisData) + // console.error(xAxisData, yAxisData) // 基于准备好的dom,初始化echarts实例 - myCharts = echarts.init(document.getElementById('myEcharts')) + myCharts = echarts.init(document.getElementById('myEcharts'), null, { + renderer: 'canvas', + useDirtyRect: true + }) // 绘制图表 myCharts.setOption({ + animation: false, + progressive: 500, + progressiveThreshold: 3000, // title: { // text: 'FiEE, Inc. Stock Price History', // }, + grid: { + left: '8%', // 或 '2%',根据实际情况调整 + right: '12%', // 给右侧y轴留空间,数值可根据y轴label宽度调整 + }, tooltip: { trigger: 'axis', axisPointer: { type: 'line', - snap: true, label: { backgroundColor: '#6a7985', }, @@ -97,6 +106,9 @@ const initEcharts = (data) => { const p = params[0] return `${p.axisValue}
Price: ${p.data}` }, + triggerOn: 'mousemove', + confine: true, + hideDelay: 1500 }, xAxis: { data: xAxisData, @@ -111,15 +123,8 @@ const initEcharts = (data) => { axisLabel: { color: '#323232', fontWeight: 'bold', - // formatter: function (value) { - // return value ? value.split('-')[0] : '' - // }, - // interval: function (index, value) { - // if (index === 0) return true; - // const axisData = this && this.axis && this.axis.data ? this.axis.data : []; - // if (!axisData[index - 1]) return true; - // return value.split('-')[0] !== axisData[index - 1].split('-')[0]; - // }, + interval: 'auto', + hideOverlap: true }, }, yAxis: { @@ -169,6 +174,10 @@ const initEcharts = (data) => { symbolSize: 24, data: [], }, + progressive: 500, + progressiveThreshold: 3000, + large: true, + largeThreshold: 2000 }, ], @@ -326,15 +335,15 @@ function findClosestDateIndexDescLeft(data, targetDateStr) { let left = 0, right = data.length - 1 const target = new Date(targetDateStr).getTime() - let res = -1 // 默认返回-1(找不到) + let res = -1 while (left <= right) { const mid = Math.floor((left + right) / 2) const midTime = new Date(data[mid].date).getTime() - if (midTime < target) { - right = mid - 1 // 向左搜索,因为我们要找的是小于等于目标日期的最近一天 + if (midTime > target) { + left = mid + 1 // mid 比目标新,往更旧的方向找 } else { - res = mid // 记录当前找到的索引 - left = mid + 1 // 向右搜索,因为更早的日期在数组后面 + res = mid // mid <= target,记录下来,继续往更新的方向找 + right = mid - 1 } } return res @@ -452,9 +461,9 @@ const changeSearchRange = (range, dateTime) => { } let endValue = endDate if (endDate) { - console.warn(endDate) + // console.warn(endDate) const idx = findClosestDateIndexDescLeft(historicData, endDate) - console.warn(idx) + // console.warn(idx) // 用 historicData[idx].date 格式化为 xAxisData 的格式 endValue = new Date(historicData[idx].date).toLocaleDateString( 'en-US', @@ -464,7 +473,7 @@ const changeSearchRange = (range, dateTime) => { year: 'numeric', }, ) - console.warn(endValue) + // console.warn(endValue) } if (startDate) { @@ -509,7 +518,7 @@ const disablePreviousDate = (date) => { // 切换搜索区间开始日期 const changeSearchRangeStartDate = (date) => { - console.error(date) + // console.error(date) changeSearchRange( 'startDateTime', new Date(date).toLocaleDateString('en-US', { @@ -522,7 +531,7 @@ const changeSearchRangeStartDate = (date) => { // 切换搜索区间结束日期 const changeSearchRangeEndDate = (date) => { - console.error(date) + // console.error(date) changeSearchRange( 'endDateTime', new Date(date).toLocaleDateString('en-US', { diff --git a/src/components/customEcharts/size375Echarts/index.vue b/src/components/customEcharts/size375Echarts/index.vue index dc53cd4..7f8bb6b 100644 --- a/src/components/customEcharts/size375Echarts/index.vue +++ b/src/components/customEcharts/size375Echarts/index.vue @@ -76,14 +76,21 @@ const initEcharts = (data) => { }) }) const yAxisData = data.map((item) => item.price) - console.error(xAxisData, yAxisData) + // console.error(xAxisData, yAxisData) // 基于准备好的dom,初始化echarts实例 myCharts = echarts.init(document.getElementById('myEcharts')) // 绘制图表 myCharts.setOption({ + animation: false, + progressive: 500, + progressiveThreshold: 3000, // title: { // text: 'FiEE, Inc. Stock Price History', // }, + grid: { + left: '8%', // 或 '2%',根据实际情况调整 + right: '15%', // 给右侧y轴留空间,数值可根据y轴label宽度调整 + }, tooltip: { trigger: 'axis', axisPointer: { @@ -97,6 +104,8 @@ const initEcharts = (data) => { const p = params[0] return `${p.axisValue}
Price: ${p.data}` }, + confine: true, + hideDelay: 1500 }, xAxis: { data: xAxisData, @@ -327,15 +336,15 @@ function findClosestDateIndexDescLeft(data, targetDateStr) { let left = 0, right = data.length - 1 const target = new Date(targetDateStr).getTime() - let res = -1 // 默认返回-1(找不到) + let res = -1 while (left <= right) { const mid = Math.floor((left + right) / 2) const midTime = new Date(data[mid].date).getTime() - if (midTime < target) { - right = mid - 1 // 向左搜索,因为我们要找的是小于等于目标日期的最近一天 + if (midTime > target) { + left = mid + 1 // mid 比目标新,往更旧的方向找 } else { - res = mid // 记录当前找到的索引 - left = mid + 1 // 向右搜索,因为更早的日期在数组后面 + res = mid // mid <= target,记录下来,继续往更新的方向找 + right = mid - 1 } } return res @@ -453,9 +462,9 @@ const changeSearchRange = (range, dateTime) => { } let endValue = endDate if (endDate) { - console.warn(endDate) + // console.warn(endDate) const idx = findClosestDateIndexDescLeft(historicData, endDate) - console.warn(idx) + // console.warn(idx) // 用 historicData[idx].date 格式化为 xAxisData 的格式 endValue = new Date(historicData[idx].date).toLocaleDateString( 'en-US', @@ -465,7 +474,7 @@ const changeSearchRange = (range, dateTime) => { year: 'numeric', }, ) - console.warn(endValue) + // console.warn(endValue) } if (startDate) { @@ -510,7 +519,7 @@ const disablePreviousDate = (date) => { // 切换搜索区间开始日期 const changeSearchRangeStartDate = (date) => { - console.error(date) + // console.error(date) changeSearchRange( 'startDateTime', new Date(date).toLocaleDateString('en-US', { @@ -523,7 +532,7 @@ const changeSearchRangeStartDate = (date) => { // 切换搜索区间结束日期 const changeSearchRangeEndDate = (date) => { - console.error(date) + // console.error(date) changeSearchRange( 'endDateTime', new Date(date).toLocaleDateString('en-US', { diff --git a/src/components/customFooter/size1920Footer/index.vue b/src/components/customFooter/size1920Footer/index.vue index cd7d713..918f002 100644 --- a/src/components/customFooter/size1920Footer/index.vue +++ b/src/components/customFooter/size1920Footer/index.vue @@ -21,13 +21,14 @@ import siteMap from "@/assets/file/footer/FiEE, Inc. _ Site Map.pdf"; //点击跳转到对应的链接页面 const handleLink = (link) => { - if (link === "privacyPolicy") { - window.open(privacyPolicy, "_blank"); - } else if (link === "termsOfUse") { - window.open(termsOfUse, "_blank"); - } else if (link === "siteMap") { - window.open(siteMap, "_blank"); - } + // if (link === "privacyPolicy") { + // window.open(privacyPolicy, "_blank"); + // } else if (link === "termsOfUse") { + // window.open(termsOfUse, "_blank"); + // } else if (link === "siteMap") { + // window.open(siteMap, "_blank"); + // } + router.push(link) }; diff --git a/src/components/customFooter/size375Footer/index.vue b/src/components/customFooter/size375Footer/index.vue index 728ffbc..e4ac8d2 100644 --- a/src/components/customFooter/size375Footer/index.vue +++ b/src/components/customFooter/size375Footer/index.vue @@ -22,13 +22,14 @@ import siteMap from "@/assets/file/footer/FiEE, Inc. _ Site Map.pdf"; //点击跳转到对应的链接页面 const handleLink = (link) => { - if (link === "privacyPolicy") { - window.open(privacyPolicy, "_blank"); - } else if (link === "termsOfUse") { - window.open(termsOfUse, "_blank"); - } else if (link === "siteMap") { - window.open(siteMap, "_blank"); - } + // if (link === "privacyPolicy") { + // window.open(privacyPolicy, "_blank"); + // } else if (link === "termsOfUse") { + // window.open(termsOfUse, "_blank"); + // } else if (link === "siteMap") { + // window.open(siteMap, "_blank"); + // } + router.push(link) }; diff --git a/src/components/customFooter/size768Footer/index.vue b/src/components/customFooter/size768Footer/index.vue index b0eda15..33031d1 100644 --- a/src/components/customFooter/size768Footer/index.vue +++ b/src/components/customFooter/size768Footer/index.vue @@ -19,13 +19,14 @@ import siteMap from "@/assets/file/footer/FiEE, Inc. _ Site Map.pdf"; //点击跳转到对应的链接页面 const handleLink = (link) => { - if (link === "privacyPolicy") { - window.open(privacyPolicy, "_blank"); - } else if (link === "termsOfUse") { - window.open(termsOfUse, "_blank"); - } else if (link === "siteMap") { - window.open(siteMap, "_blank"); - } + // if (link === "privacyPolicy") { + // window.open(privacyPolicy, "_blank"); + // } else if (link === "termsOfUse") { + // window.open(termsOfUse, "_blank"); + // } else if (link === "siteMap") { + // window.open(siteMap, "_blank"); + // } + router.push(link) }; diff --git a/src/dict/secFiles.js b/src/dict/secFiles.js index 8a6dc39..06278ea 100644 --- a/src/dict/secFiles.js +++ b/src/dict/secFiles.js @@ -205,6 +205,42 @@ export const fileList = [ ], "idx": 8 }, + { + "filingDate": "2025-05-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003622/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 9 + }, + { + "filingDate": "2025-05-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003622/ownership.xml", + "dataFiles": [], + "idx": 10 + }, + { + "filingDate": "2025-05-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003621/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 11 + }, + { + "filingDate": "2025-05-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003621/ownership.xml", + "dataFiles": [], + "idx": 12 + }, { "filingDate": "2025-05-13", "form": "SCHEDULE 13D/A", @@ -212,7 +248,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003620/xslSCHEDULE_13D_X01/primary_doc.xml", "dataFiles": [], - "idx": 9 + "idx": 13 }, { "filingDate": "2025-05-13", @@ -221,7 +257,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003620/primary_doc.xml", "dataFiles": [], - "idx": 10 + "idx": 14 }, { "filingDate": "2025-05-13", @@ -230,7 +266,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003620/fieeinc_ex1.htm", "dataFiles": [], - "idx": 11 + "idx": 15 }, { "filingDate": "2025-05-12", @@ -256,7 +292,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003580/fiee_8ka_htm.xml" } ], - "idx": 12 + "idx": 16 }, { "filingDate": "2025-05-12", @@ -282,7 +318,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003580/fiee_8ka_htm.xml" } ], - "idx": 13 + "idx": 17 }, { "filingDate": "2025-05-12", @@ -308,7 +344,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003580/fiee_8ka_htm.xml" } ], - "idx": 14 + "idx": 18 }, { "filingDate": "2025-05-12", @@ -334,7 +370,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003580/fiee_8ka_htm.xml" } ], - "idx": 15 + "idx": 19 }, { "filingDate": "2025-05-12", @@ -360,7 +396,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003580/fiee_8ka_htm.xml" } ], - "idx": 16 + "idx": 20 }, { "filingDate": "2025-05-12", @@ -386,7 +422,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003580/fiee_8ka_htm.xml" } ], - "idx": 17 + "idx": 21 }, { "filingDate": "2025-05-12", @@ -412,7 +448,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003580/fiee_8ka_htm.xml" } ], - "idx": 18 + "idx": 22 }, { "filingDate": "2025-05-12", @@ -438,7 +474,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003542/fiee_8k_htm.xml" } ], - "idx": 19 + "idx": 23 }, { "filingDate": "2025-05-12", @@ -464,7 +500,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003542/fiee_8k_htm.xml" } ], - "idx": 20 + "idx": 24 }, { "filingDate": "2025-05-12", @@ -490,7 +526,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003542/fiee_8k_htm.xml" } ], - "idx": 21 + "idx": 25 }, { "filingDate": "2025-05-12", @@ -516,7 +552,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003542/fiee_8k_htm.xml" } ], - "idx": 22 + "idx": 26 }, { "filingDate": "2025-05-12", @@ -542,7 +578,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003542/fiee_8k_htm.xml" } ], - "idx": 23 + "idx": 27 }, { "filingDate": "2025-05-12", @@ -568,7 +604,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003542/fiee_8k_htm.xml" } ], - "idx": 24 + "idx": 28 }, { "filingDate": "2025-05-12", @@ -594,7 +630,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003542/fiee_8k_htm.xml" } ], - "idx": 25 + "idx": 29 }, { "filingDate": "2025-04-30", @@ -624,7 +660,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003214/fieeinc_10ka_htm.xml" } ], - "idx": 26 + "idx": 30 }, { "filingDate": "2025-04-30", @@ -654,7 +690,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003214/fieeinc_10ka_htm.xml" } ], - "idx": 27 + "idx": 31 }, { "filingDate": "2025-04-30", @@ -684,7 +720,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003214/fieeinc_10ka_htm.xml" } ], - "idx": 28 + "idx": 32 }, { "filingDate": "2025-04-30", @@ -710,7 +746,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625003213/fiee_8k_htm.xml" } ], - "idx": 29 + "idx": 33 }, { "filingDate": "2025-04-18", @@ -736,7 +772,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002782/fiee_8ka_htm.xml" } ], - "idx": 30 + "idx": 34 }, { "filingDate": "2025-04-14", @@ -745,7 +781,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002643/xslSCHEDULE_13D_X01/primary_doc.xml", "dataFiles": [], - "idx": 31 + "idx": 35 }, { "filingDate": "2025-04-14", @@ -754,7 +790,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002643/primary_doc.xml", "dataFiles": [], - "idx": 32 + "idx": 36 }, { "filingDate": "2025-04-14", @@ -763,7 +799,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002643/fieeinc_ex1.htm", "dataFiles": [], - "idx": 33 + "idx": 37 }, { "filingDate": "2025-04-14", @@ -772,7 +808,61 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002643/fieeinc_ex99-1.htm", "dataFiles": [], - "idx": 34 + "idx": 38 + }, + { + "filingDate": "2025-04-14", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002639/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 39 + }, + { + "filingDate": "2025-04-14", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002639/ownership.xml", + "dataFiles": [], + "idx": 40 + }, + { + "filingDate": "2025-04-14", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002638/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 41 + }, + { + "filingDate": "2025-04-14", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002638/ownership.xml", + "dataFiles": [], + "idx": 42 + }, + { + "filingDate": "2025-04-14", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002637/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 43 + }, + { + "filingDate": "2025-04-14", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002637/ownership.xml", + "dataFiles": [], + "idx": 44 }, { "filingDate": "2025-04-14", @@ -781,7 +871,25 @@ export const fileList = [ "formDescription": "Statement regarding change in majority of directors [Rule 14f-1]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036125013744/ny20045824x2_sc14f1.htm", "dataFiles": [], - "idx": 35 + "idx": 45 + }, + { + "filingDate": "2025-04-14", + "form": "3/A", + "description": "FORM 3/A", + "formDescription": "[Amend] Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002636/xslF345X02/ownership.xml", + "dataFiles": [], + "idx": 46 + }, + { + "filingDate": "2025-04-14", + "form": "3/A", + "description": "FORM 3/A", + "formDescription": "[Amend] Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002636/ownership.xml", + "dataFiles": [], + "idx": 47 }, { "filingDate": "2025-04-10", @@ -807,7 +915,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002543/fiee_8k_htm.xml" } ], - "idx": 36 + "idx": 48 }, { "filingDate": "2025-04-10", @@ -841,7 +949,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k_htm.xml" } ], - "idx": 37 + "idx": 49 }, { "filingDate": "2025-04-10", @@ -875,7 +983,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k_htm.xml" } ], - "idx": 38 + "idx": 50 }, { "filingDate": "2025-04-10", @@ -909,7 +1017,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k_htm.xml" } ], - "idx": 39 + "idx": 51 }, { "filingDate": "2025-04-10", @@ -943,7 +1051,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k_htm.xml" } ], - "idx": 40 + "idx": 52 }, { "filingDate": "2025-04-10", @@ -977,7 +1085,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k_htm.xml" } ], - "idx": 41 + "idx": 53 }, { "filingDate": "2025-04-10", @@ -1011,7 +1119,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k_htm.xml" } ], - "idx": 42 + "idx": 54 }, { "filingDate": "2025-04-10", @@ -1045,7 +1153,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k_htm.xml" } ], - "idx": 43 + "idx": 55 }, { "filingDate": "2025-04-10", @@ -1079,7 +1187,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002538/fieeinc_10k_htm.xml" } ], - "idx": 44 + "idx": 56 }, { "filingDate": "2025-04-09", @@ -1088,7 +1196,7 @@ export const fileList = [ "formDescription": "[Amend] Notification filed by national security exchange to report the removal from listing and registration of matured, redeemed or retired securities", "fileLink": "https://www.sec.gov/Archives/edgar/data/1354457/000135445725000301/xslF25X02/primary_doc.xml", "dataFiles": [], - "idx": 45 + "idx": 57 }, { "filingDate": "2025-04-09", @@ -1097,7 +1205,7 @@ export const fileList = [ "formDescription": "[Amend] Notification filed by national security exchange to report the removal from listing and registration of matured, redeemed or retired securities", "fileLink": "https://www.sec.gov/Archives/edgar/data/1354457/000135445725000301/primary_doc.xml", "dataFiles": [], - "idx": 46 + "idx": 58 }, { "filingDate": "2025-04-09", @@ -1106,7 +1214,7 @@ export const fileList = [ "formDescription": "[Amend] Notification filed by national security exchange to report the removal from listing and registration of matured, redeemed or retired securities", "fileLink": "https://www.sec.gov/Archives/edgar/data/1354457/000135445725000301/minmamendreason.txt", "dataFiles": [], - "idx": 47 + "idx": 59 }, { "filingDate": "2025-03-31", @@ -1115,7 +1223,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-K 405, 10-K, 10-KSB 405, 10-KSB, 10-KT, or 10-KT405", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002193/fieeinc_nt10k.htm", "dataFiles": [], - "idx": 48 + "idx": 60 }, { "filingDate": "2025-03-31", @@ -1141,7 +1249,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002171/fiee_8k_htm.xml" } ], - "idx": 49 + "idx": 61 }, { "filingDate": "2025-03-31", @@ -1167,7 +1275,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002171/fiee_8k_htm.xml" } ], - "idx": 50 + "idx": 62 }, { "filingDate": "2025-03-25", @@ -1193,7 +1301,25 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625002049/fieeinc_8k_htm.xml" } ], - "idx": 51 + "idx": 63 + }, + { + "filingDate": "2025-03-10", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189525000728/xslF345X05/form412227016_03102025.xml", + "dataFiles": [], + "idx": 64 + }, + { + "filingDate": "2025-03-10", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189525000728/form412227016_03102025.xml", + "dataFiles": [], + "idx": 65 }, { "filingDate": "2025-03-10", @@ -1202,7 +1328,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189525000727/xslSCHEDULE_13D_X01/primary_doc.xml", "dataFiles": [], - "idx": 52 + "idx": 66 }, { "filingDate": "2025-03-10", @@ -1211,7 +1337,25 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189525000727/primary_doc.xml", "dataFiles": [], - "idx": 53 + "idx": 67 + }, + { + "filingDate": "2025-03-05", + "form": "5", + "description": "Annual statement of changes in beneficial ownership of securities", + "formDescription": "Annual statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390025020695/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 68 + }, + { + "filingDate": "2025-03-05", + "form": "5", + "description": "Annual statement of changes in beneficial ownership of securities", + "formDescription": "Annual statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390025020695/ownership.xml", + "dataFiles": [], + "idx": 69 }, { "filingDate": "2025-03-04", @@ -1237,7 +1381,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001410/fieeinc_8k_htm.xml" } ], - "idx": 54 + "idx": 70 }, { "filingDate": "2025-03-03", @@ -1263,7 +1407,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001353/fieeinc_8k_htm.xml" } ], - "idx": 55 + "idx": 71 }, { "filingDate": "2025-03-03", @@ -1289,7 +1433,61 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001353/fieeinc_8k_htm.xml" } ], - "idx": 56 + "idx": 72 + }, + { + "filingDate": "2025-02-28", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001356/xslF345X02/ownership.xml", + "dataFiles": [], + "idx": 73 + }, + { + "filingDate": "2025-02-28", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001356/ownership.xml", + "dataFiles": [], + "idx": 74 + }, + { + "filingDate": "2025-02-28", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001355/xslF345X02/ownership.xml", + "dataFiles": [], + "idx": 75 + }, + { + "filingDate": "2025-02-28", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001355/ownership.xml", + "dataFiles": [], + "idx": 76 + }, + { + "filingDate": "2025-02-28", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001354/xslF345X02/ownership.xml", + "dataFiles": [], + "idx": 77 + }, + { + "filingDate": "2025-02-28", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001354/ownership.xml", + "dataFiles": [], + "idx": 78 }, { "filingDate": "2025-02-25", @@ -1298,7 +1496,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001210/xslSCHEDULE_13D_X01/primary_doc.xml", "dataFiles": [], - "idx": 57 + "idx": 79 }, { "filingDate": "2025-02-25", @@ -1307,7 +1505,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001210/primary_doc.xml", "dataFiles": [], - "idx": 58 + "idx": 80 }, { "filingDate": "2025-02-25", @@ -1316,7 +1514,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001210/miniminc_ex1.htm", "dataFiles": [], - "idx": 59 + "idx": 81 }, { "filingDate": "2025-02-24", @@ -1342,7 +1540,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001187/miniminc_8k_htm.xml" } ], - "idx": 60 + "idx": 82 }, { "filingDate": "2025-02-24", @@ -1368,7 +1566,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001187/miniminc_8k_htm.xml" } ], - "idx": 61 + "idx": 83 }, { "filingDate": "2025-02-24", @@ -1394,7 +1592,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001187/miniminc_8k_htm.xml" } ], - "idx": 62 + "idx": 84 }, { "filingDate": "2025-02-24", @@ -1420,7 +1618,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912625001187/miniminc_8k_htm.xml" } ], - "idx": 63 + "idx": 85 + }, + { + "filingDate": "2025-01-15", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390025003819/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 86 + }, + { + "filingDate": "2025-01-15", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390025003819/ownership.xml", + "dataFiles": [], + "idx": 87 + }, + { + "filingDate": "2025-01-15", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390025003818/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 88 + }, + { + "filingDate": "2025-01-15", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390025003818/ownership.xml", + "dataFiles": [], + "idx": 89 }, { "filingDate": "2025-01-15", @@ -1429,7 +1663,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390025003820/xslSCHEDULE_13D_X01/primary_doc.xml", "dataFiles": [], - "idx": 64 + "idx": 90 }, { "filingDate": "2025-01-15", @@ -1438,7 +1672,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390025003820/primary_doc.xml", "dataFiles": [], - "idx": 65 + "idx": 91 }, { "filingDate": "2024-12-31", @@ -1447,7 +1681,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524003059/xslSCHEDULE_13D_X01/primary_doc.xml", "dataFiles": [], - "idx": 66 + "idx": 92 }, { "filingDate": "2024-12-31", @@ -1456,7 +1690,25 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524003059/primary_doc.xml", "dataFiles": [], - "idx": 67 + "idx": 93 + }, + { + "filingDate": "2024-12-31", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524003050/xslF345X05/form412227016_12312024.xml", + "dataFiles": [], + "idx": 94 + }, + { + "filingDate": "2024-12-31", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524003050/form412227016_12312024.xml", + "dataFiles": [], + "idx": 95 }, { "filingDate": "2024-11-19", @@ -1490,7 +1742,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007675/miniminc_10q_htm.xml" } ], - "idx": 68 + "idx": 96 }, { "filingDate": "2024-11-19", @@ -1524,7 +1776,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007675/miniminc_10q_htm.xml" } ], - "idx": 69 + "idx": 97 }, { "filingDate": "2024-11-19", @@ -1558,7 +1810,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007675/miniminc_10q_htm.xml" } ], - "idx": 70 + "idx": 98 }, { "filingDate": "2024-11-18", @@ -1584,7 +1836,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007637/miniminc_8k_htm.xml" } ], - "idx": 71 + "idx": 99 }, { "filingDate": "2024-11-18", @@ -1610,7 +1862,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007637/miniminc_8k_htm.xml" } ], - "idx": 72 + "idx": 100 }, { "filingDate": "2024-11-18", @@ -1636,7 +1888,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007637/miniminc_8k_htm.xml" } ], - "idx": 73 + "idx": 101 }, { "filingDate": "2024-11-15", @@ -1645,7 +1897,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007598/miniminc_sc13da.htm", "dataFiles": [], - "idx": 74 + "idx": 102 }, { "filingDate": "2024-11-14", @@ -1654,7 +1906,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-Q or 10-QSB", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007530/miniminc_nt10q.htm", "dataFiles": [], - "idx": 75 + "idx": 103 }, { "filingDate": "2024-11-06", @@ -1680,7 +1932,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624007308/miniminc_8k_htm.xml" } ], - "idx": 76 + "idx": 104 }, { "filingDate": "2024-10-25", @@ -1706,7 +1958,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624006997/minim_8k_htm.xml" } ], - "idx": 77 + "idx": 105 }, { "filingDate": "2024-10-24", @@ -1715,7 +1967,7 @@ export const fileList = [ "formDescription": "Notification filed by national security exchange to report the removal from listing and registration of matured, redeemed or retired securities", "fileLink": "https://www.sec.gov/Archives/edgar/data/1354457/000135445724000828/xslF25X02/primary_doc.xml", "dataFiles": [], - "idx": 78 + "idx": 106 }, { "filingDate": "2024-10-24", @@ -1724,7 +1976,7 @@ export const fileList = [ "formDescription": "Notification filed by national security exchange to report the removal from listing and registration of matured, redeemed or retired securities", "fileLink": "https://www.sec.gov/Archives/edgar/data/1354457/000135445724000828/primary_doc.xml", "dataFiles": [], - "idx": 79 + "idx": 107 }, { "filingDate": "2024-10-24", @@ -1733,7 +1985,25 @@ export const fileList = [ "formDescription": "Notification filed by national security exchange to report the removal from listing and registration of matured, redeemed or retired securities", "fileLink": "https://www.sec.gov/Archives/edgar/data/1354457/000135445724000828/minmdelistreason.txt", "dataFiles": [], - "idx": 80 + "idx": 108 + }, + { + "filingDate": "2024-10-22", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002339/xslF345X05/form412227016_10222024.xml", + "dataFiles": [], + "idx": 109 + }, + { + "filingDate": "2024-10-22", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002339/form412227016_10222024.xml", + "dataFiles": [], + "idx": 110 }, { "filingDate": "2024-10-10", @@ -1759,7 +2029,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624006749/minim_8k_htm.xml" } ], - "idx": 81 + "idx": 111 }, { "filingDate": "2024-10-10", @@ -1785,7 +2055,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624006749/minim_8k_htm.xml" } ], - "idx": 82 + "idx": 112 }, { "filingDate": "2024-10-10", @@ -1811,7 +2081,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624006749/minim_8k_htm.xml" } ], - "idx": 83 + "idx": 113 }, { "filingDate": "2024-10-10", @@ -1837,7 +2107,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624006749/minim_8k_htm.xml" } ], - "idx": 84 + "idx": 114 }, { "filingDate": "2024-10-09", @@ -1863,7 +2133,97 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624006724/minim_8k_htm.xml" } ], - "idx": 85 + "idx": 115 + }, + { + "filingDate": "2024-10-09", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002268/xslF345X05/form412227016riv_10082024.xml", + "dataFiles": [], + "idx": 116 + }, + { + "filingDate": "2024-10-09", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002268/form412227016riv_10082024.xml", + "dataFiles": [], + "idx": 117 + }, + { + "filingDate": "2024-10-08", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002266/xslF345X05/form412227016pap_10082024.xml", + "dataFiles": [], + "idx": 118 + }, + { + "filingDate": "2024-10-08", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002266/form412227016pap_10082024.xml", + "dataFiles": [], + "idx": 119 + }, + { + "filingDate": "2024-10-01", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002201/xslF345X05/form412227016ben_10012024.xml", + "dataFiles": [], + "idx": 120 + }, + { + "filingDate": "2024-10-01", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002201/form412227016ben_10012024.xml", + "dataFiles": [], + "idx": 121 + }, + { + "filingDate": "2024-10-01", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002198/xslF345X05/form412227016mcm_10012024.xml", + "dataFiles": [], + "idx": 122 + }, + { + "filingDate": "2024-10-01", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524002198/form412227016mcm_10012024.xml", + "dataFiles": [], + "idx": 123 + }, + { + "filingDate": "2024-10-01", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1253108/000092189524002197/xslF345X05/form412227016nat_10012024.xml", + "dataFiles": [], + "idx": 124 + }, + { + "filingDate": "2024-10-01", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1253108/000092189524002197/form412227016nat_10012024.xml", + "dataFiles": [], + "idx": 125 }, { "filingDate": "2024-09-09", @@ -1889,7 +2249,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624006168/minim_8k_htm.xml" } ], - "idx": 86 + "idx": 126 }, { "filingDate": "2024-08-26", @@ -1915,7 +2275,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624005843/miniminc_8k_htm.xml" } ], - "idx": 87 + "idx": 127 }, { "filingDate": "2024-08-20", @@ -1949,7 +2309,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624005670/miniminc_10q_htm.xml" } ], - "idx": 88 + "idx": 128 }, { "filingDate": "2024-08-20", @@ -1983,7 +2343,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624005670/miniminc_10q_htm.xml" } ], - "idx": 89 + "idx": 129 }, { "filingDate": "2024-08-20", @@ -2017,7 +2377,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624005670/miniminc_10q_htm.xml" } ], - "idx": 90 + "idx": 130 }, { "filingDate": "2024-08-14", @@ -2026,7 +2386,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-Q or 10-QSB", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624005483/miniminc_nt10q.htm", "dataFiles": [], - "idx": 91 + "idx": 131 }, { "filingDate": "2024-08-06", @@ -2035,7 +2395,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390024065838/ea0210728-13da24hitch_minim.htm", "dataFiles": [], - "idx": 92 + "idx": 132 }, { "filingDate": "2024-08-06", @@ -2061,7 +2421,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624005246/miniminc_8k_htm.xml" } ], - "idx": 93 + "idx": 133 }, { "filingDate": "2024-08-06", @@ -2087,7 +2447,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624005246/miniminc_8k_htm.xml" } ], - "idx": 94 + "idx": 134 }, { "filingDate": "2024-07-25", @@ -2113,7 +2473,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004965/miniminc_8k_htm.xml" } ], - "idx": 95 + "idx": 135 }, { "filingDate": "2024-07-25", @@ -2139,7 +2499,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004965/miniminc_8k_htm.xml" } ], - "idx": 96 + "idx": 136 }, { "filingDate": "2024-07-24", @@ -2148,7 +2508,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004962/miniminc_sc13da.htm", "dataFiles": [], - "idx": 97 + "idx": 137 }, { "filingDate": "2024-07-24", @@ -2157,7 +2517,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004962/miniminc_ex99-4.htm", "dataFiles": [], - "idx": 98 + "idx": 138 }, { "filingDate": "2024-07-24", @@ -2166,7 +2526,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004962/miniminc_ex99-5.htm", "dataFiles": [], - "idx": 99 + "idx": 139 }, { "filingDate": "2024-07-02", @@ -2192,7 +2552,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004567/miniminc_8k_htm.xml" } ], - "idx": 100 + "idx": 140 }, { "filingDate": "2024-07-02", @@ -2218,7 +2578,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004567/miniminc_8k_htm.xml" } ], - "idx": 101 + "idx": 141 }, { "filingDate": "2024-06-21", @@ -2244,7 +2604,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004371/miniminc_8k_htm.xml" } ], - "idx": 102 + "idx": 142 }, { "filingDate": "2024-06-21", @@ -2270,7 +2630,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624004371/miniminc_8k_htm.xml" } ], - "idx": 103 + "idx": 143 }, { "filingDate": "2024-05-20", @@ -2304,7 +2664,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624003547/miniminc_10q_htm.xml" } ], - "idx": 104 + "idx": 144 }, { "filingDate": "2024-05-20", @@ -2338,7 +2698,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624003547/miniminc_10q_htm.xml" } ], - "idx": 105 + "idx": 145 }, { "filingDate": "2024-05-20", @@ -2372,7 +2732,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624003547/miniminc_10q_htm.xml" } ], - "idx": 106 + "idx": 146 }, { "filingDate": "2024-05-15", @@ -2381,7 +2741,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-Q or 10-QSB", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624003354/miniminc_nt10q.htm", "dataFiles": [], - "idx": 107 + "idx": 147 }, { "filingDate": "2024-05-07", @@ -2407,7 +2767,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624003145/miniminc_8k_htm.xml" } ], - "idx": 108 + "idx": 148 }, { "filingDate": "2024-04-29", @@ -2433,7 +2793,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002836/miniminc_10ka_htm.xml" } ], - "idx": 109 + "idx": 149 }, { "filingDate": "2024-04-29", @@ -2459,7 +2819,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002836/miniminc_10ka_htm.xml" } ], - "idx": 110 + "idx": 150 }, { "filingDate": "2024-04-12", @@ -2493,7 +2853,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 111 + "idx": 151 }, { "filingDate": "2024-04-12", @@ -2527,7 +2887,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 112 + "idx": 152 }, { "filingDate": "2024-04-12", @@ -2561,7 +2921,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 113 + "idx": 153 }, { "filingDate": "2024-04-12", @@ -2595,7 +2955,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 114 + "idx": 154 }, { "filingDate": "2024-04-12", @@ -2629,7 +2989,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 115 + "idx": 155 }, { "filingDate": "2024-04-12", @@ -2663,7 +3023,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 116 + "idx": 156 }, { "filingDate": "2024-04-12", @@ -2697,7 +3057,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 117 + "idx": 157 }, { "filingDate": "2024-04-12", @@ -2731,7 +3091,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 118 + "idx": 158 }, { "filingDate": "2024-04-12", @@ -2765,7 +3125,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 119 + "idx": 159 }, { "filingDate": "2024-04-12", @@ -2799,7 +3159,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 120 + "idx": 160 }, { "filingDate": "2024-04-12", @@ -2833,7 +3193,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002449/miniminc_10k_htm.xml" } ], - "idx": 121 + "idx": 161 }, { "filingDate": "2024-04-05", @@ -2842,7 +3202,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002249/miniminc_425.htm", "dataFiles": [], - "idx": 122 + "idx": 162 }, { "filingDate": "2024-04-05", @@ -2851,7 +3211,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002249/img_001.jpg", "dataFiles": [], - "idx": 123 + "idx": 163 }, { "filingDate": "2024-04-05", @@ -2860,7 +3220,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002249/img_002.jpg", "dataFiles": [], - "idx": 124 + "idx": 164 }, { "filingDate": "2024-03-29", @@ -2869,7 +3229,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-K 405, 10-K, 10-KSB 405, 10-KSB, 10-KT, or 10-KT405", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624002028/miniminc_nt10k.htm", "dataFiles": [], - "idx": 125 + "idx": 165 }, { "filingDate": "2024-03-18", @@ -2878,7 +3238,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001675/miniminc_425.htm", "dataFiles": [], - "idx": 126 + "idx": 166 }, { "filingDate": "2024-03-18", @@ -2887,7 +3247,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001675/miniminc_ex2-1.htm", "dataFiles": [], - "idx": 127 + "idx": 167 }, { "filingDate": "2024-03-18", @@ -2896,7 +3256,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001675/miniminc_ex2-2.htm", "dataFiles": [], - "idx": 128 + "idx": 168 }, { "filingDate": "2024-03-18", @@ -2905,7 +3265,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001675/miniminc_ex2-3.htm", "dataFiles": [], - "idx": 129 + "idx": 169 }, { "filingDate": "2024-03-18", @@ -2931,7 +3291,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001674/miniminc_8k_htm.xml" } ], - "idx": 130 + "idx": 170 }, { "filingDate": "2024-03-18", @@ -2957,7 +3317,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001674/miniminc_8k_htm.xml" } ], - "idx": 131 + "idx": 171 }, { "filingDate": "2024-03-18", @@ -2983,7 +3343,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001674/miniminc_8k_htm.xml" } ], - "idx": 132 + "idx": 172 }, { "filingDate": "2024-03-18", @@ -3009,7 +3369,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001674/miniminc_8k_htm.xml" } ], - "idx": 133 + "idx": 173 }, { "filingDate": "2024-03-15", @@ -3035,7 +3395,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001604/miniminc_8k_htm.xml" } ], - "idx": 134 + "idx": 174 }, { "filingDate": "2024-03-13", @@ -3044,7 +3404,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001553/miniminc_425.htm", "dataFiles": [], - "idx": 135 + "idx": 175 }, { "filingDate": "2024-03-13", @@ -3053,7 +3413,7 @@ export const fileList = [ "formDescription": "Prospectuses and communications, business combinations", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001553/img_001.jpg", "dataFiles": [], - "idx": 136 + "idx": 176 }, { "filingDate": "2024-03-11", @@ -3079,7 +3439,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001518/miniminc_8k_htm.xml" } ], - "idx": 137 + "idx": 177 }, { "filingDate": "2024-03-11", @@ -3105,7 +3465,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001518/miniminc_8k_htm.xml" } ], - "idx": 138 + "idx": 178 }, { "filingDate": "2024-03-11", @@ -3131,7 +3491,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001518/miniminc_8k_htm.xml" } ], - "idx": 139 + "idx": 179 }, { "filingDate": "2024-03-11", @@ -3157,7 +3517,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001518/miniminc_8k_htm.xml" } ], - "idx": 140 + "idx": 180 }, { "filingDate": "2024-03-01", @@ -3183,7 +3543,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 141 + "idx": 181 }, { "filingDate": "2024-03-01", @@ -3209,7 +3569,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 142 + "idx": 182 }, { "filingDate": "2024-03-01", @@ -3235,7 +3595,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 143 + "idx": 183 }, { "filingDate": "2024-03-01", @@ -3261,7 +3621,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 144 + "idx": 184 }, { "filingDate": "2024-03-01", @@ -3287,7 +3647,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 145 + "idx": 185 }, { "filingDate": "2024-03-01", @@ -3313,7 +3673,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 146 + "idx": 186 }, { "filingDate": "2024-03-01", @@ -3339,7 +3699,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 147 + "idx": 187 }, { "filingDate": "2024-03-01", @@ -3365,7 +3725,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 148 + "idx": 188 }, { "filingDate": "2024-03-01", @@ -3391,7 +3751,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 149 + "idx": 189 }, { "filingDate": "2024-03-01", @@ -3417,7 +3777,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 150 + "idx": 190 }, { "filingDate": "2024-03-01", @@ -3443,7 +3803,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 151 + "idx": 191 }, { "filingDate": "2024-03-01", @@ -3469,7 +3829,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 152 + "idx": 192 }, { "filingDate": "2024-03-01", @@ -3495,7 +3855,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 153 + "idx": 193 }, { "filingDate": "2024-03-01", @@ -3521,7 +3881,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 154 + "idx": 194 }, { "filingDate": "2024-03-01", @@ -3547,7 +3907,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 155 + "idx": 195 }, { "filingDate": "2024-03-01", @@ -3573,7 +3933,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 156 + "idx": 196 }, { "filingDate": "2024-03-01", @@ -3599,7 +3959,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 157 + "idx": 197 }, { "filingDate": "2024-03-01", @@ -3625,7 +3985,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224008421/form8-k_htm.xml" } ], - "idx": 158 + "idx": 198 }, { "filingDate": "2024-02-29", @@ -3634,7 +3994,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624001217/miniminc_sc13da.htm", "dataFiles": [], - "idx": 159 + "idx": 199 }, { "filingDate": "2024-02-21", @@ -3660,7 +4020,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224007344/form8-k_htm.xml" } ], - "idx": 160 + "idx": 200 }, { "filingDate": "2024-02-21", @@ -3686,7 +4046,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224007344/form8-k_htm.xml" } ], - "idx": 161 + "idx": 201 }, { "filingDate": "2024-02-09", @@ -3695,7 +4055,133 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224005562/formdef14a.htm", "dataFiles": [], - "idx": 162 + "idx": 202 + }, + { + "filingDate": "2024-02-02", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004734/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 203 + }, + { + "filingDate": "2024-02-02", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004734/ownership.xml", + "dataFiles": [], + "idx": 204 + }, + { + "filingDate": "2024-02-02", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004732/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 205 + }, + { + "filingDate": "2024-02-02", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004732/ownership.xml", + "dataFiles": [], + "idx": 206 + }, + { + "filingDate": "2024-02-02", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004730/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 207 + }, + { + "filingDate": "2024-02-02", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004730/ownership.xml", + "dataFiles": [], + "idx": 208 + }, + { + "filingDate": "2024-02-02", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004728/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 209 + }, + { + "filingDate": "2024-02-02", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004728/ownership.xml", + "dataFiles": [], + "idx": 210 + }, + { + "filingDate": "2024-01-31", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000169/xslF345X05/form412227016_01312024.xml", + "dataFiles": [], + "idx": 211 + }, + { + "filingDate": "2024-01-31", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000169/form412227016_01312024.xml", + "dataFiles": [], + "idx": 212 + }, + { + "filingDate": "2024-01-31", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004449/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 213 + }, + { + "filingDate": "2024-01-31", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004449/ownership.xml", + "dataFiles": [], + "idx": 214 + }, + { + "filingDate": "2024-01-31", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004448/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 215 + }, + { + "filingDate": "2024-01-31", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004448/ownership.xml", + "dataFiles": [], + "idx": 216 }, { "filingDate": "2024-01-30", @@ -3704,7 +4190,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624000567/miniminc_sc13d.htm", "dataFiles": [], - "idx": 163 + "idx": 217 }, { "filingDate": "2024-01-30", @@ -3713,7 +4199,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624000567/miniminc_ex99-1.htm", "dataFiles": [], - "idx": 164 + "idx": 218 }, { "filingDate": "2024-01-30", @@ -3722,7 +4208,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000182912624000567/miniminc_ex99-3.htm", "dataFiles": [], - "idx": 165 + "idx": 219 }, { "filingDate": "2024-01-29", @@ -3731,7 +4217,43 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224004022/formpre14a.htm", "dataFiles": [], - "idx": 166 + "idx": 220 + }, + { + "filingDate": "2024-01-26", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003924/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 221 + }, + { + "filingDate": "2024-01-26", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003924/ownership.xml", + "dataFiles": [], + "idx": 222 + }, + { + "filingDate": "2024-01-26", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003923/xslF345X02/ownership.xml", + "dataFiles": [], + "idx": 223 + }, + { + "filingDate": "2024-01-26", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003923/ownership.xml", + "dataFiles": [], + "idx": 224 }, { "filingDate": "2024-01-26", @@ -3757,7 +4279,25 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003910/form8-ka_htm.xml" } ], - "idx": 167 + "idx": 225 + }, + { + "filingDate": "2024-01-25", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003754/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 226 + }, + { + "filingDate": "2024-01-25", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003754/ownership.xml", + "dataFiles": [], + "idx": 227 }, { "filingDate": "2024-01-25", @@ -3783,7 +4323,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003710/form8-k_htm.xml" } ], - "idx": 168 + "idx": 228 }, { "filingDate": "2024-01-25", @@ -3809,7 +4349,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003710/form8-k_htm.xml" } ], - "idx": 169 + "idx": 229 }, { "filingDate": "2024-01-25", @@ -3835,7 +4375,97 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224003710/form8-k_htm.xml" } ], - "idx": 170 + "idx": 230 + }, + { + "filingDate": "2024-01-24", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1253108/000092189524000129/xslF345X05/form412227016nat_01242024.xml", + "dataFiles": [], + "idx": 231 + }, + { + "filingDate": "2024-01-24", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1253108/000092189524000129/form412227016nat_01242024.xml", + "dataFiles": [], + "idx": 232 + }, + { + "filingDate": "2024-01-24", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000128/xslF345X05/form412227016mcm_01242024.xml", + "dataFiles": [], + "idx": 233 + }, + { + "filingDate": "2024-01-24", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000128/form412227016mcm_01242024.xml", + "dataFiles": [], + "idx": 234 + }, + { + "filingDate": "2024-01-24", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000127/xslF345X05/form412227016laz_01242024.xml", + "dataFiles": [], + "idx": 235 + }, + { + "filingDate": "2024-01-24", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000127/form412227016laz_01242024.xml", + "dataFiles": [], + "idx": 236 + }, + { + "filingDate": "2024-01-24", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000126/xslF345X05/form412227016ben_01242024.xml", + "dataFiles": [], + "idx": 237 + }, + { + "filingDate": "2024-01-24", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000126/form412227016ben_01242024.xml", + "dataFiles": [], + "idx": 238 + }, + { + "filingDate": "2024-01-24", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1253108/000092189524000125/xslF345X02/form312227016_01242024.xml", + "dataFiles": [], + "idx": 239 + }, + { + "filingDate": "2024-01-24", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1253108/000092189524000125/form312227016_01242024.xml", + "dataFiles": [], + "idx": 240 }, { "filingDate": "2024-01-12", @@ -3861,7 +4491,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224002211/form8-k_htm.xml" } ], - "idx": 171 + "idx": 241 }, { "filingDate": "2024-01-08", @@ -3895,7 +4525,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224001659/form10-q_htm.xml" } ], - "idx": 172 + "idx": 242 }, { "filingDate": "2024-01-08", @@ -3929,7 +4559,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224001659/form10-q_htm.xml" } ], - "idx": 173 + "idx": 243 }, { "filingDate": "2024-01-08", @@ -3963,7 +4593,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224001659/form10-q_htm.xml" } ], - "idx": 174 + "idx": 244 }, { "filingDate": "2024-01-08", @@ -3997,7 +4627,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224001659/form10-q_htm.xml" } ], - "idx": 175 + "idx": 245 }, { "filingDate": "2024-01-08", @@ -4031,7 +4661,61 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315224001659/form10-q_htm.xml" } ], - "idx": 176 + "idx": 246 + }, + { + "filingDate": "2024-01-04", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000051/xslF345X02/form312227001mcm_01042024.xml", + "dataFiles": [], + "idx": 247 + }, + { + "filingDate": "2024-01-04", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000051/form312227001mcm_01042024.xml", + "dataFiles": [], + "idx": 248 + }, + { + "filingDate": "2024-01-04", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000050/xslF345X02/form312227001laz_01042024.xml", + "dataFiles": [], + "idx": 249 + }, + { + "filingDate": "2024-01-04", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000050/form312227001laz_01042024.xml", + "dataFiles": [], + "idx": 250 + }, + { + "filingDate": "2024-01-04", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000049/xslF345X02/form312227001ben_01042024.xml", + "dataFiles": [], + "idx": 251 + }, + { + "filingDate": "2024-01-04", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000092189524000049/form312227001ben_01042024.xml", + "dataFiles": [], + "idx": 252 }, { "filingDate": "2024-01-02", @@ -4040,7 +4724,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023100205/ea190461-13da23hitchco_minim.htm", "dataFiles": [], - "idx": 177 + "idx": 253 }, { "filingDate": "2024-01-02", @@ -4049,7 +4733,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023100205/ea190461ex99-2_minim.htm", "dataFiles": [], - "idx": 178 + "idx": 254 }, { "filingDate": "2023-12-29", @@ -4075,7 +4759,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223046589/form8-k_htm.xml" } ], - "idx": 179 + "idx": 255 }, { "filingDate": "2023-12-21", @@ -4101,7 +4785,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223045732/form8-k_htm.xml" } ], - "idx": 180 + "idx": 256 }, { "filingDate": "2023-12-13", @@ -4127,7 +4811,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223044651/form8-k_htm.xml" } ], - "idx": 181 + "idx": 257 }, { "filingDate": "2023-12-13", @@ -4153,7 +4837,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223044651/form8-k_htm.xml" } ], - "idx": 182 + "idx": 258 }, { "filingDate": "2023-12-11", @@ -4162,7 +4846,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023094494/ea189763-13da22hitchco_minim.htm", "dataFiles": [], - "idx": 183 + "idx": 259 }, { "filingDate": "2023-12-11", @@ -4171,7 +4855,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023094494/ea189763ex99-1_minim.htm", "dataFiles": [], - "idx": 184 + "idx": 260 }, { "filingDate": "2023-12-11", @@ -4180,7 +4864,43 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023094494/ea189763ex99-2_minim.htm", "dataFiles": [], - "idx": 185 + "idx": 261 + }, + { + "filingDate": "2023-12-08", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023094498/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 262 + }, + { + "filingDate": "2023-12-08", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023094498/ownership.xml", + "dataFiles": [], + "idx": 263 + }, + { + "filingDate": "2023-12-08", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023094496/xslF345X05/ownership.xml", + "dataFiles": [], + "idx": 264 + }, + { + "filingDate": "2023-12-08", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000121390023094496/ownership.xml", + "dataFiles": [], + "idx": 265 }, { "filingDate": "2023-12-04", @@ -4206,7 +4926,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223043566/form8-k_htm.xml" } ], - "idx": 186 + "idx": 266 }, { "filingDate": "2023-11-30", @@ -4232,7 +4952,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223043223/form8-k_htm.xml" } ], - "idx": 187 + "idx": 267 }, { "filingDate": "2023-11-20", @@ -4258,7 +4978,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223042122/form8-k_htm.xml" } ], - "idx": 188 + "idx": 268 }, { "filingDate": "2023-11-15", @@ -4267,7 +4987,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-Q or 10-QSB", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223041506/formnt10q.htm", "dataFiles": [], - "idx": 189 + "idx": 269 }, { "filingDate": "2023-11-13", @@ -4301,7 +5021,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040279/form10-q_htm.xml" } ], - "idx": 190 + "idx": 270 }, { "filingDate": "2023-11-13", @@ -4335,7 +5055,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040279/form10-q_htm.xml" } ], - "idx": 191 + "idx": 271 }, { "filingDate": "2023-11-13", @@ -4369,7 +5089,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040279/form10-q_htm.xml" } ], - "idx": 192 + "idx": 272 }, { "filingDate": "2023-11-13", @@ -4403,7 +5123,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040279/form10-q_htm.xml" } ], - "idx": 193 + "idx": 273 }, { "filingDate": "2023-11-13", @@ -4437,7 +5157,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040279/form10-q_htm.xml" } ], - "idx": 194 + "idx": 274 }, { "filingDate": "2023-11-13", @@ -4471,7 +5191,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040237/form10-q_htm.xml" } ], - "idx": 195 + "idx": 275 }, { "filingDate": "2023-11-13", @@ -4505,7 +5225,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040237/form10-q_htm.xml" } ], - "idx": 196 + "idx": 276 }, { "filingDate": "2023-11-13", @@ -4539,7 +5259,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040237/form10-q_htm.xml" } ], - "idx": 197 + "idx": 277 }, { "filingDate": "2023-11-13", @@ -4573,7 +5293,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040237/form10-q_htm.xml" } ], - "idx": 198 + "idx": 278 }, { "filingDate": "2023-11-13", @@ -4607,7 +5327,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223040237/form10-q_htm.xml" } ], - "idx": 199 + "idx": 279 }, { "filingDate": "2023-11-08", @@ -4633,7 +5353,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223039946/form8-k_htm.xml" } ], - "idx": 200 + "idx": 280 }, { "filingDate": "2023-10-23", @@ -4659,7 +5379,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223038004/form8-k_htm.xml" } ], - "idx": 201 + "idx": 281 }, { "filingDate": "2023-10-13", @@ -4685,7 +5405,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223037218/form8-k_htm.xml" } ], - "idx": 202 + "idx": 282 }, { "filingDate": "2023-10-11", @@ -4711,7 +5431,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223036940/form8-k_htm.xml" } ], - "idx": 203 + "idx": 283 }, { "filingDate": "2023-10-11", @@ -4720,7 +5440,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000101376223003260/ea186618-13da21hitchco_minim.htm", "dataFiles": [], - "idx": 204 + "idx": 284 }, { "filingDate": "2023-09-27", @@ -4746,7 +5466,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223033790/form8-k_htm.xml" } ], - "idx": 205 + "idx": 285 }, { "filingDate": "2023-09-07", @@ -4772,7 +5492,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223031998/form8-k_htm.xml" } ], - "idx": 206 + "idx": 286 }, { "filingDate": "2023-08-29", @@ -4798,7 +5518,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223030543/form8-ka_htm.xml" } ], - "idx": 207 + "idx": 287 }, { "filingDate": "2023-08-29", @@ -4824,7 +5544,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223030543/form8-ka_htm.xml" } ], - "idx": 208 + "idx": 288 }, { "filingDate": "2023-08-29", @@ -4850,7 +5570,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223030543/form8-ka_htm.xml" } ], - "idx": 209 + "idx": 289 }, { "filingDate": "2023-08-28", @@ -4876,7 +5596,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223030333/form8-k_htm.xml" } ], - "idx": 210 + "idx": 290 }, { "filingDate": "2023-08-23", @@ -4902,7 +5622,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223029926/form8-k_htm.xml" } ], - "idx": 211 + "idx": 291 }, { "filingDate": "2023-08-14", @@ -4911,7 +5631,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-Q or 10-QSB", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223028526/formnt10-q.htm", "dataFiles": [], - "idx": 212 + "idx": 292 }, { "filingDate": "2023-08-10", @@ -4937,7 +5657,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223027574/form8-k_htm.xml" } ], - "idx": 213 + "idx": 293 }, { "filingDate": "2023-08-10", @@ -4963,7 +5683,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223027574/form8-k_htm.xml" } ], - "idx": 214 + "idx": 294 }, { "filingDate": "2023-08-10", @@ -4989,7 +5709,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223027574/form8-k_htm.xml" } ], - "idx": 215 + "idx": 295 }, { "filingDate": "2023-08-10", @@ -5015,7 +5735,34 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223027574/form8-k_htm.xml" } ], - "idx": 216 + "idx": 296 + }, + { + "filingDate": "2023-08-10", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000089706923001142/xslF345X02/form3.xml", + "dataFiles": [], + "idx": 297 + }, + { + "filingDate": "2023-08-10", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000089706923001142/form3.xml", + "dataFiles": [], + "idx": 298 + }, + { + "filingDate": "2023-08-10", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000089706923001142/poa.htm", + "dataFiles": [], + "idx": 299 }, { "filingDate": "2023-08-01", @@ -5041,7 +5788,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223026279/form8-k_htm.xml" } ], - "idx": 217 + "idx": 300 }, { "filingDate": "2023-05-24", @@ -5067,7 +5814,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223018918/form8-k_htm.xml" } ], - "idx": 218 + "idx": 301 }, { "filingDate": "2023-05-24", @@ -5076,7 +5823,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223018917/formsd.htm", "dataFiles": [], - "idx": 219 + "idx": 302 }, { "filingDate": "2023-05-24", @@ -5085,7 +5832,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223018917/ex1-01.htm", "dataFiles": [], - "idx": 220 + "idx": 303 }, { "filingDate": "2023-05-15", @@ -5094,7 +5841,43 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-Q or 10-QSB", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223017373/formnt10-q.htm", "dataFiles": [], - "idx": 221 + "idx": 304 + }, + { + "filingDate": "2023-04-14", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223012212/xslF345X04/ownership.xml", + "dataFiles": [], + "idx": 305 + }, + { + "filingDate": "2023-04-14", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223012212/ownership.xml", + "dataFiles": [], + "idx": 306 + }, + { + "filingDate": "2023-04-14", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223012211/xslF345X04/ownership.xml", + "dataFiles": [], + "idx": 307 + }, + { + "filingDate": "2023-04-14", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223012211/ownership.xml", + "dataFiles": [], + "idx": 308 }, { "filingDate": "2023-04-11", @@ -5103,7 +5886,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123017606/brhc10051232_sc13da.htm", "dataFiles": [], - "idx": 222 + "idx": 309 }, { "filingDate": "2023-04-11", @@ -5112,7 +5895,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123017606/brhc10051232_ex99-2.htm", "dataFiles": [], - "idx": 223 + "idx": 310 }, { "filingDate": "2023-04-11", @@ -5121,7 +5904,25 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123017606/brhc10051232_ex99-3.htm", "dataFiles": [], - "idx": 224 + "idx": 311 + }, + { + "filingDate": "2023-04-10", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223011707/xslF345X04/ownership.xml", + "dataFiles": [], + "idx": 312 + }, + { + "filingDate": "2023-04-10", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223011707/ownership.xml", + "dataFiles": [], + "idx": 313 }, { "filingDate": "2023-04-07", @@ -5147,7 +5948,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223011569/form8-k_htm.xml" } ], - "idx": 225 + "idx": 314 }, { "filingDate": "2023-04-07", @@ -5173,7 +5974,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223011569/form8-k_htm.xml" } ], - "idx": 226 + "idx": 315 }, { "filingDate": "2023-04-07", @@ -5199,7 +6000,79 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223011569/form8-k_htm.xml" } ], - "idx": 227 + "idx": 316 + }, + { + "filingDate": "2023-04-05", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123016675/xslF345X04/form4.xml", + "dataFiles": [], + "idx": 317 + }, + { + "filingDate": "2023-04-05", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123016675/form4.xml", + "dataFiles": [], + "idx": 318 + }, + { + "filingDate": "2023-04-04", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123016495/xslF345X04/form4.xml", + "dataFiles": [], + "idx": 319 + }, + { + "filingDate": "2023-04-04", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123016495/form4.xml", + "dataFiles": [], + "idx": 320 + }, + { + "filingDate": "2023-04-04", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010818/xslF345X04/ownership.xml", + "dataFiles": [], + "idx": 321 + }, + { + "filingDate": "2023-04-04", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010818/ownership.xml", + "dataFiles": [], + "idx": 322 + }, + { + "filingDate": "2023-04-04", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010817/xslF345X04/ownership.xml", + "dataFiles": [], + "idx": 323 + }, + { + "filingDate": "2023-04-04", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010817/ownership.xml", + "dataFiles": [], + "idx": 324 }, { "filingDate": "2023-03-31", @@ -5233,7 +6106,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010335/form10-k_htm.xml" } ], - "idx": 228 + "idx": 325 }, { "filingDate": "2023-03-31", @@ -5267,7 +6140,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010335/form10-k_htm.xml" } ], - "idx": 229 + "idx": 326 }, { "filingDate": "2023-03-31", @@ -5301,7 +6174,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010335/form10-k_htm.xml" } ], - "idx": 230 + "idx": 327 }, { "filingDate": "2023-03-31", @@ -5335,7 +6208,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010335/form10-k_htm.xml" } ], - "idx": 231 + "idx": 328 }, { "filingDate": "2023-03-31", @@ -5369,7 +6242,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010335/form10-k_htm.xml" } ], - "idx": 232 + "idx": 329 }, { "filingDate": "2023-03-31", @@ -5403,7 +6276,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010335/form10-k_htm.xml" } ], - "idx": 233 + "idx": 330 }, { "filingDate": "2023-03-31", @@ -5437,7 +6310,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010335/form10-k_htm.xml" } ], - "idx": 234 + "idx": 331 }, { "filingDate": "2023-03-31", @@ -5463,7 +6336,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010286/form8-k_htm.xml" } ], - "idx": 235 + "idx": 332 }, { "filingDate": "2023-03-31", @@ -5489,7 +6362,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010286/form8-k_htm.xml" } ], - "idx": 236 + "idx": 333 }, { "filingDate": "2023-03-31", @@ -5515,7 +6388,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223010286/form8-k_htm.xml" } ], - "idx": 237 + "idx": 334 }, { "filingDate": "2023-03-31", @@ -5541,7 +6414,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223009958/form8-k_htm.xml" } ], - "idx": 238 + "idx": 335 }, { "filingDate": "2023-03-29", @@ -5567,7 +6440,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223009383/form8-k_htm.xml" } ], - "idx": 239 + "idx": 336 }, { "filingDate": "2023-03-29", @@ -5593,7 +6466,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223009383/form8-k_htm.xml" } ], - "idx": 240 + "idx": 337 }, { "filingDate": "2023-03-21", @@ -5602,7 +6475,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000023002815/filename1.pdf", "dataFiles": [], - "idx": 241 + "idx": 338 }, { "filingDate": "2023-03-21", @@ -5611,7 +6484,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000023002815/filename2.txt", "dataFiles": [], - "idx": 242 + "idx": 339 }, { "filingDate": "2023-03-17", @@ -5637,7 +6510,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008088/form10-qa_htm.xml" } ], - "idx": 243 + "idx": 340 }, { "filingDate": "2023-03-17", @@ -5663,7 +6536,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008088/form10-qa_htm.xml" } ], - "idx": 244 + "idx": 341 }, { "filingDate": "2023-03-17", @@ -5689,7 +6562,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008088/form10-qa_htm.xml" } ], - "idx": 245 + "idx": 342 }, { "filingDate": "2023-03-17", @@ -5715,7 +6588,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008088/form10-qa_htm.xml" } ], - "idx": 246 + "idx": 343 }, { "filingDate": "2023-03-17", @@ -5741,7 +6614,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008088/form10-qa_htm.xml" } ], - "idx": 247 + "idx": 344 }, { "filingDate": "2023-03-17", @@ -5767,7 +6640,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008085/form10-qa_htm.xml" } ], - "idx": 248 + "idx": 345 }, { "filingDate": "2023-03-17", @@ -5793,7 +6666,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008085/form10-qa_htm.xml" } ], - "idx": 249 + "idx": 346 }, { "filingDate": "2023-03-17", @@ -5819,7 +6692,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008085/form10-qa_htm.xml" } ], - "idx": 250 + "idx": 347 }, { "filingDate": "2023-03-17", @@ -5845,7 +6718,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008085/form10-qa_htm.xml" } ], - "idx": 251 + "idx": 348 }, { "filingDate": "2023-03-17", @@ -5871,7 +6744,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223008085/form10-qa_htm.xml" } ], - "idx": 252 + "idx": 349 }, { "filingDate": "2023-03-14", @@ -5880,7 +6753,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123011651/brhc10049724_sc13da.htm", "dataFiles": [], - "idx": 253 + "idx": 350 }, { "filingDate": "2023-03-14", @@ -5889,7 +6762,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123011648/ny20007387x2_def14a.htm", "dataFiles": [], - "idx": 254 + "idx": 351 }, { "filingDate": "2023-03-14", @@ -5898,7 +6771,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123011648/ny20007387x2_pc01.jpg", "dataFiles": [], - "idx": 255 + "idx": 352 }, { "filingDate": "2023-03-14", @@ -5907,7 +6780,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123011648/ny20007387x2_pc02.jpg", "dataFiles": [], - "idx": 256 + "idx": 353 }, { "filingDate": "2023-03-14", @@ -5916,7 +6789,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123011648/sig_mehulpatel.jpg", "dataFiles": [], - "idx": 257 + "idx": 354 }, { "filingDate": "2023-03-10", @@ -5942,7 +6815,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223007243/form8-k_htm.xml" } ], - "idx": 258 + "idx": 355 }, { "filingDate": "2023-03-03", @@ -5951,7 +6824,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123010081/ny20007387x1_pre14a.htm", "dataFiles": [], - "idx": 259 + "idx": 356 }, { "filingDate": "2023-03-03", @@ -5960,7 +6833,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123010081/ny20007387x1_pc01.jpg", "dataFiles": [], - "idx": 260 + "idx": 357 }, { "filingDate": "2023-03-03", @@ -5969,7 +6842,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123010081/ny20007387x1_pc02.jpg", "dataFiles": [], - "idx": 261 + "idx": 358 }, { "filingDate": "2023-02-14", @@ -5978,7 +6851,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223004740/filename1.htm", "dataFiles": [], - "idx": 262 + "idx": 359 }, { "filingDate": "2023-02-14", @@ -5987,7 +6860,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223004740/corresp_001.jpg", "dataFiles": [], - "idx": 263 + "idx": 360 }, { "filingDate": "2023-02-14", @@ -5996,7 +6869,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223004740/corresp_002.jpg", "dataFiles": [], - "idx": 264 + "idx": 361 }, { "filingDate": "2023-02-08", @@ -6005,7 +6878,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123005147/brhc10047650_sc13da.htm", "dataFiles": [], - "idx": 265 + "idx": 362 }, { "filingDate": "2023-02-08", @@ -6014,7 +6887,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123005147/brhc10047650_ex99-2.htm", "dataFiles": [], - "idx": 266 + "idx": 363 }, { "filingDate": "2023-02-06", @@ -6040,7 +6913,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223003708/form8-k_htm.xml" } ], - "idx": 267 + "idx": 364 + }, + { + "filingDate": "2023-02-03", + "form": "5", + "description": "Annual statement of changes in beneficial ownership of securities", + "formDescription": "Annual statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123004352/xslF345X03/form5.xml", + "dataFiles": [], + "idx": 365 + }, + { + "filingDate": "2023-02-03", + "form": "5", + "description": "Annual statement of changes in beneficial ownership of securities", + "formDescription": "Annual statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123004352/form5.xml", + "dataFiles": [], + "idx": 366 + }, + { + "filingDate": "2023-02-03", + "form": "5", + "description": "Annual statement of changes in beneficial ownership of securities", + "formDescription": "Annual statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123004350/xslF345X03/form5.xml", + "dataFiles": [], + "idx": 367 + }, + { + "filingDate": "2023-02-03", + "form": "5", + "description": "Annual statement of changes in beneficial ownership of securities", + "formDescription": "Annual statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036123004350/form5.xml", + "dataFiles": [], + "idx": 368 }, { "filingDate": "2023-02-02", @@ -6049,7 +6958,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000023001115/filename1.pdf", "dataFiles": [], - "idx": 268 + "idx": 369 }, { "filingDate": "2023-02-02", @@ -6058,7 +6967,79 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000023001115/filename2.txt", "dataFiles": [], - "idx": 269 + "idx": 370 + }, + { + "filingDate": "2023-01-12", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001302/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 371 + }, + { + "filingDate": "2023-01-12", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001302/ownership.xml", + "dataFiles": [], + "idx": 372 + }, + { + "filingDate": "2023-01-12", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001277/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 373 + }, + { + "filingDate": "2023-01-12", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001277/ownership.xml", + "dataFiles": [], + "idx": 374 + }, + { + "filingDate": "2023-01-12", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1197847/000149315223001275/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 375 + }, + { + "filingDate": "2023-01-12", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1197847/000149315223001275/ownership.xml", + "dataFiles": [], + "idx": 376 + }, + { + "filingDate": "2023-01-12", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001273/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 377 + }, + { + "filingDate": "2023-01-12", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001273/ownership.xml", + "dataFiles": [], + "idx": 378 }, { "filingDate": "2023-01-11", @@ -6067,7 +7048,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001169/filename1.htm", "dataFiles": [], - "idx": 270 + "idx": 379 }, { "filingDate": "2023-01-11", @@ -6076,7 +7057,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001169/formcorresp_001.jpg", "dataFiles": [], - "idx": 271 + "idx": 380 }, { "filingDate": "2023-01-11", @@ -6085,7 +7066,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315223001169/formcorresp_002.jpg", "dataFiles": [], - "idx": 272 + "idx": 381 }, { "filingDate": "2022-12-21", @@ -6094,7 +7075,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000022013777/filename1.pdf", "dataFiles": [], - "idx": 273 + "idx": 382 }, { "filingDate": "2022-12-21", @@ -6103,7 +7084,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000022013777/filename2.txt", "dataFiles": [], - "idx": 274 + "idx": 383 }, { "filingDate": "2022-12-19", @@ -6112,7 +7093,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122046099/brhc10045616_sc13da.htm", "dataFiles": [], - "idx": 275 + "idx": 384 }, { "filingDate": "2022-12-16", @@ -6138,7 +7119,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222035758/form8-k_htm.xml" } ], - "idx": 276 + "idx": 385 }, { "filingDate": "2022-12-16", @@ -6164,7 +7145,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222035758/form8-k_htm.xml" } ], - "idx": 277 + "idx": 386 }, { "filingDate": "2022-12-05", @@ -6190,7 +7171,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222034475/form8-k_htm.xml" } ], - "idx": 278 + "idx": 387 }, { "filingDate": "2022-12-05", @@ -6216,7 +7197,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222034475/form8-k_htm.xml" } ], - "idx": 279 + "idx": 388 }, { "filingDate": "2022-12-05", @@ -6242,7 +7223,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222034475/form8-k_htm.xml" } ], - "idx": 280 + "idx": 389 }, { "filingDate": "2022-12-05", @@ -6268,7 +7249,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222034475/form8-k_htm.xml" } ], - "idx": 281 + "idx": 390 }, { "filingDate": "2022-12-01", @@ -6277,7 +7258,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122043866/brhc10044934_sc13da.htm", "dataFiles": [], - "idx": 282 + "idx": 391 }, { "filingDate": "2022-12-01", @@ -6286,7 +7267,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122043866/brhc10044934_ex99-2.htm", "dataFiles": [], - "idx": 283 + "idx": 392 }, { "filingDate": "2022-12-01", @@ -6295,7 +7276,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122043866/brhc10044934_ex99-3.htm", "dataFiles": [], - "idx": 284 + "idx": 393 }, { "filingDate": "2022-12-01", @@ -6304,7 +7285,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122043866/brhc10044934_ex99-4.htm", "dataFiles": [], - "idx": 285 + "idx": 394 }, { "filingDate": "2022-12-01", @@ -6313,7 +7294,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122043866/brhc10044934_ex99-5.htm", "dataFiles": [], - "idx": 286 + "idx": 395 }, { "filingDate": "2022-12-01", @@ -6322,7 +7303,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122043866/brhc10044934_ex99-6.htm", "dataFiles": [], - "idx": 287 + "idx": 396 }, { "filingDate": "2022-12-01", @@ -6331,7 +7312,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122043866/brhc10044934_ex99-7.htm", "dataFiles": [], - "idx": 288 + "idx": 397 }, { "filingDate": "2022-11-30", @@ -6357,7 +7338,25 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222034033/form8-k_htm.xml" } ], - "idx": 289 + "idx": 398 + }, + { + "filingDate": "2022-11-28", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465922122410/xslF345X03/tm2231479-1_4seq1.xml", + "dataFiles": [], + "idx": 399 + }, + { + "filingDate": "2022-11-28", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465922122410/tm2231479-1_4seq1.xml", + "dataFiles": [], + "idx": 400 }, { "filingDate": "2022-11-22", @@ -6366,7 +7365,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122042769/brhc10044549_sc13da.htm", "dataFiles": [], - "idx": 290 + "idx": 401 }, { "filingDate": "2022-11-14", @@ -6400,7 +7399,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222032126/form10-q_htm.xml" } ], - "idx": 291 + "idx": 402 }, { "filingDate": "2022-11-14", @@ -6434,7 +7433,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222032126/form10-q_htm.xml" } ], - "idx": 292 + "idx": 403 }, { "filingDate": "2022-11-14", @@ -6468,7 +7467,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222032126/form10-q_htm.xml" } ], - "idx": 293 + "idx": 404 }, { "filingDate": "2022-11-14", @@ -6502,7 +7501,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222032126/form10-q_htm.xml" } ], - "idx": 294 + "idx": 405 }, { "filingDate": "2022-11-14", @@ -6536,7 +7535,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222032126/form10-q_htm.xml" } ], - "idx": 295 + "idx": 406 }, { "filingDate": "2022-11-10", @@ -6562,7 +7561,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222031222/form8-k_htm.xml" } ], - "idx": 296 + "idx": 407 }, { "filingDate": "2022-11-10", @@ -6588,7 +7587,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222031222/form8-k_htm.xml" } ], - "idx": 297 + "idx": 408 + }, + { + "filingDate": "2022-09-13", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222025786/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 409 + }, + { + "filingDate": "2022-09-13", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222025786/ownership.xml", + "dataFiles": [], + "idx": 410 + }, + { + "filingDate": "2022-08-30", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222024425/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 411 + }, + { + "filingDate": "2022-08-30", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222024425/ownership.xml", + "dataFiles": [], + "idx": 412 }, { "filingDate": "2022-08-19", @@ -6622,7 +7657,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023614/form10-q_htm.xml" } ], - "idx": 298 + "idx": 413 }, { "filingDate": "2022-08-19", @@ -6656,7 +7691,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023614/form10-q_htm.xml" } ], - "idx": 299 + "idx": 414 }, { "filingDate": "2022-08-19", @@ -6690,7 +7725,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023614/form10-q_htm.xml" } ], - "idx": 300 + "idx": 415 }, { "filingDate": "2022-08-19", @@ -6724,7 +7759,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023614/form10-q_htm.xml" } ], - "idx": 301 + "idx": 416 }, { "filingDate": "2022-08-19", @@ -6758,7 +7793,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023614/form10-q_htm.xml" } ], - "idx": 302 + "idx": 417 }, { "filingDate": "2022-08-19", @@ -6792,7 +7827,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023613/form10-qa_htm.xml" } ], - "idx": 303 + "idx": 418 }, { "filingDate": "2022-08-19", @@ -6826,7 +7861,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023613/form10-qa_htm.xml" } ], - "idx": 304 + "idx": 419 }, { "filingDate": "2022-08-19", @@ -6860,7 +7895,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023613/form10-qa_htm.xml" } ], - "idx": 305 + "idx": 420 }, { "filingDate": "2022-08-19", @@ -6894,7 +7929,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023613/form10-qa_htm.xml" } ], - "idx": 306 + "idx": 421 }, { "filingDate": "2022-08-19", @@ -6928,7 +7963,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023613/form10-qa_htm.xml" } ], - "idx": 307 + "idx": 422 }, { "filingDate": "2022-08-19", @@ -6962,7 +7997,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023610/form10ka_htm.xml" } ], - "idx": 308 + "idx": 423 }, { "filingDate": "2022-08-19", @@ -6996,7 +8031,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023610/form10ka_htm.xml" } ], - "idx": 309 + "idx": 424 }, { "filingDate": "2022-08-19", @@ -7030,7 +8065,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023610/form10ka_htm.xml" } ], - "idx": 310 + "idx": 425 }, { "filingDate": "2022-08-19", @@ -7064,7 +8099,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023610/form10ka_htm.xml" } ], - "idx": 311 + "idx": 426 }, { "filingDate": "2022-08-19", @@ -7098,7 +8133,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023610/form10ka_htm.xml" } ], - "idx": 312 + "idx": 427 }, { "filingDate": "2022-08-19", @@ -7132,7 +8167,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023610/form10ka_htm.xml" } ], - "idx": 313 + "idx": 428 }, { "filingDate": "2022-08-19", @@ -7166,7 +8201,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023610/form10ka_htm.xml" } ], - "idx": 314 + "idx": 429 }, { "filingDate": "2022-08-19", @@ -7200,7 +8235,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023610/form10ka_htm.xml" } ], - "idx": 315 + "idx": 430 }, { "filingDate": "2022-08-18", @@ -7226,7 +8261,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023408/form8-k_htm.xml" } ], - "idx": 316 + "idx": 431 }, { "filingDate": "2022-08-18", @@ -7252,7 +8287,61 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023408/form8-k_htm.xml" } ], - "idx": 317 + "idx": 432 + }, + { + "filingDate": "2022-08-17", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023391/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 433 + }, + { + "filingDate": "2022-08-17", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023391/ownership.xml", + "dataFiles": [], + "idx": 434 + }, + { + "filingDate": "2022-08-17", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023330/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 435 + }, + { + "filingDate": "2022-08-17", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023330/ownership.xml", + "dataFiles": [], + "idx": 436 + }, + { + "filingDate": "2022-08-17", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023326/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 437 + }, + { + "filingDate": "2022-08-17", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023326/ownership.xml", + "dataFiles": [], + "idx": 438 }, { "filingDate": "2022-08-16", @@ -7278,7 +8367,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023219/form8-k_htm.xml" } ], - "idx": 318 + "idx": 439 }, { "filingDate": "2022-08-16", @@ -7304,7 +8393,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023219/form8-k_htm.xml" } ], - "idx": 319 + "idx": 440 }, { "filingDate": "2022-08-16", @@ -7330,7 +8419,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023219/form8-k_htm.xml" } ], - "idx": 320 + "idx": 441 }, { "filingDate": "2022-08-16", @@ -7356,7 +8445,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023219/form8-k_htm.xml" } ], - "idx": 321 + "idx": 442 }, { "filingDate": "2022-08-16", @@ -7382,7 +8471,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023219/form8-k_htm.xml" } ], - "idx": 322 + "idx": 443 }, { "filingDate": "2022-08-16", @@ -7408,7 +8497,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023219/form8-k_htm.xml" } ], - "idx": 323 + "idx": 444 }, { "filingDate": "2022-08-16", @@ -7434,7 +8523,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023219/form8-k_htm.xml" } ], - "idx": 324 + "idx": 445 }, { "filingDate": "2022-08-16", @@ -7460,7 +8549,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222023219/form8-k_htm.xml" } ], - "idx": 325 + "idx": 446 }, { "filingDate": "2022-08-04", @@ -7486,7 +8575,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222021340/form8-k_htm.xml" } ], - "idx": 326 + "idx": 447 }, { "filingDate": "2022-08-04", @@ -7512,7 +8601,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222021340/form8-k_htm.xml" } ], - "idx": 327 + "idx": 448 }, { "filingDate": "2022-08-04", @@ -7521,7 +8610,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-Q or 10-QSB", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222021345/formnt10-q.htm", "dataFiles": [], - "idx": 328 + "idx": 449 }, { "filingDate": "2022-07-08", @@ -7547,7 +8636,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222018898/form8-k_htm.xml" } ], - "idx": 329 + "idx": 450 }, { "filingDate": "2022-07-08", @@ -7573,7 +8662,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222018898/form8-k_htm.xml" } ], - "idx": 330 + "idx": 451 }, { "filingDate": "2022-07-08", @@ -7599,7 +8688,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222018898/form8-k_htm.xml" } ], - "idx": 331 + "idx": 452 }, { "filingDate": "2022-07-08", @@ -7625,7 +8714,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222018898/form8-k_htm.xml" } ], - "idx": 332 + "idx": 453 }, { "filingDate": "2022-06-09", @@ -7651,7 +8740,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016272/form8-k_htm.xml" } ], - "idx": 333 + "idx": 454 }, { "filingDate": "2022-06-09", @@ -7677,7 +8766,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 334 + "idx": 455 }, { "filingDate": "2022-06-09", @@ -7703,7 +8792,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 335 + "idx": 456 }, { "filingDate": "2022-06-09", @@ -7729,7 +8818,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 336 + "idx": 457 }, { "filingDate": "2022-06-09", @@ -7755,7 +8844,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 337 + "idx": 458 }, { "filingDate": "2022-06-09", @@ -7781,7 +8870,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 338 + "idx": 459 }, { "filingDate": "2022-06-09", @@ -7807,7 +8896,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 339 + "idx": 460 }, { "filingDate": "2022-06-09", @@ -7833,7 +8922,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 340 + "idx": 461 }, { "filingDate": "2022-06-09", @@ -7859,7 +8948,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 341 + "idx": 462 }, { "filingDate": "2022-06-09", @@ -7885,7 +8974,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 342 + "idx": 463 }, { "filingDate": "2022-06-09", @@ -7911,7 +9000,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 343 + "idx": 464 }, { "filingDate": "2022-06-09", @@ -7937,7 +9026,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 344 + "idx": 465 }, { "filingDate": "2022-06-09", @@ -7963,7 +9052,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 345 + "idx": 466 }, { "filingDate": "2022-06-09", @@ -7989,7 +9078,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 346 + "idx": 467 }, { "filingDate": "2022-06-09", @@ -8015,7 +9104,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 347 + "idx": 468 }, { "filingDate": "2022-06-09", @@ -8041,7 +9130,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 348 + "idx": 469 }, { "filingDate": "2022-06-09", @@ -8067,7 +9156,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 349 + "idx": 470 }, { "filingDate": "2022-06-09", @@ -8093,7 +9182,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 350 + "idx": 471 }, { "filingDate": "2022-06-09", @@ -8119,7 +9208,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 351 + "idx": 472 }, { "filingDate": "2022-06-09", @@ -8145,7 +9234,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 352 + "idx": 473 }, { "filingDate": "2022-06-09", @@ -8171,7 +9260,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 353 + "idx": 474 }, { "filingDate": "2022-06-09", @@ -8197,7 +9286,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 354 + "idx": 475 }, { "filingDate": "2022-06-09", @@ -8223,7 +9312,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 355 + "idx": 476 }, { "filingDate": "2022-06-09", @@ -8249,7 +9338,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 356 + "idx": 477 }, { "filingDate": "2022-06-09", @@ -8275,7 +9364,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 357 + "idx": 478 }, { "filingDate": "2022-06-09", @@ -8301,7 +9390,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 358 + "idx": 479 }, { "filingDate": "2022-06-09", @@ -8327,7 +9416,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 359 + "idx": 480 }, { "filingDate": "2022-06-09", @@ -8353,7 +9442,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 360 + "idx": 481 }, { "filingDate": "2022-06-09", @@ -8379,7 +9468,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 361 + "idx": 482 }, { "filingDate": "2022-06-09", @@ -8405,7 +9494,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 362 + "idx": 483 }, { "filingDate": "2022-06-09", @@ -8431,7 +9520,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 363 + "idx": 484 }, { "filingDate": "2022-06-09", @@ -8457,7 +9546,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 364 + "idx": 485 }, { "filingDate": "2022-06-09", @@ -8483,7 +9572,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 365 + "idx": 486 }, { "filingDate": "2022-06-09", @@ -8509,7 +9598,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 366 + "idx": 487 }, { "filingDate": "2022-06-09", @@ -8535,7 +9624,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 367 + "idx": 488 }, { "filingDate": "2022-06-09", @@ -8561,7 +9650,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 368 + "idx": 489 }, { "filingDate": "2022-06-09", @@ -8587,7 +9676,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 369 + "idx": 490 }, { "filingDate": "2022-06-09", @@ -8613,7 +9702,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 370 + "idx": 491 }, { "filingDate": "2022-06-09", @@ -8639,7 +9728,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 371 + "idx": 492 }, { "filingDate": "2022-06-09", @@ -8665,7 +9754,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 372 + "idx": 493 }, { "filingDate": "2022-06-09", @@ -8691,7 +9780,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 373 + "idx": 494 }, { "filingDate": "2022-06-09", @@ -8717,7 +9806,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 374 + "idx": 495 }, { "filingDate": "2022-06-09", @@ -8743,7 +9832,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 375 + "idx": 496 }, { "filingDate": "2022-06-09", @@ -8769,7 +9858,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 376 + "idx": 497 }, { "filingDate": "2022-06-09", @@ -8795,7 +9884,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 377 + "idx": 498 }, { "filingDate": "2022-06-09", @@ -8821,7 +9910,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 378 + "idx": 499 }, { "filingDate": "2022-06-09", @@ -8847,7 +9936,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 379 + "idx": 500 }, { "filingDate": "2022-06-09", @@ -8873,7 +9962,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 380 + "idx": 501 }, { "filingDate": "2022-06-09", @@ -8899,7 +9988,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 381 + "idx": 502 }, { "filingDate": "2022-06-09", @@ -8925,7 +10014,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222016254/form8-k_htm.xml" } ], - "idx": 382 + "idx": 503 }, { "filingDate": "2022-05-31", @@ -8934,7 +10023,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015441/formsd.htm", "dataFiles": [], - "idx": 383 + "idx": 504 }, { "filingDate": "2022-05-31", @@ -8943,7 +10032,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015441/ex1-01.htm", "dataFiles": [], - "idx": 384 + "idx": 505 }, { "filingDate": "2022-05-31", @@ -8952,7 +10041,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015441/ex1-01_001.jpg", "dataFiles": [], - "idx": 385 + "idx": 506 }, { "filingDate": "2022-05-25", @@ -8978,7 +10067,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 386 + "idx": 507 }, { "filingDate": "2022-05-25", @@ -9004,7 +10093,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 387 + "idx": 508 }, { "filingDate": "2022-05-25", @@ -9030,7 +10119,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 388 + "idx": 509 }, { "filingDate": "2022-05-25", @@ -9056,7 +10145,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 389 + "idx": 510 }, { "filingDate": "2022-05-25", @@ -9082,7 +10171,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 390 + "idx": 511 }, { "filingDate": "2022-05-25", @@ -9108,7 +10197,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 391 + "idx": 512 }, { "filingDate": "2022-05-25", @@ -9134,7 +10223,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 392 + "idx": 513 }, { "filingDate": "2022-05-25", @@ -9160,7 +10249,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 393 + "idx": 514 }, { "filingDate": "2022-05-25", @@ -9186,7 +10275,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 394 + "idx": 515 }, { "filingDate": "2022-05-25", @@ -9212,7 +10301,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 395 + "idx": 516 }, { "filingDate": "2022-05-25", @@ -9238,7 +10327,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 396 + "idx": 517 }, { "filingDate": "2022-05-25", @@ -9264,7 +10353,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 397 + "idx": 518 }, { "filingDate": "2022-05-25", @@ -9290,7 +10379,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 398 + "idx": 519 }, { "filingDate": "2022-05-25", @@ -9316,7 +10405,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 399 + "idx": 520 }, { "filingDate": "2022-05-25", @@ -9342,7 +10431,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 400 + "idx": 521 }, { "filingDate": "2022-05-25", @@ -9368,7 +10457,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 401 + "idx": 522 }, { "filingDate": "2022-05-25", @@ -9394,7 +10483,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 402 + "idx": 523 }, { "filingDate": "2022-05-25", @@ -9420,7 +10509,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 403 + "idx": 524 }, { "filingDate": "2022-05-25", @@ -9446,7 +10535,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 404 + "idx": 525 }, { "filingDate": "2022-05-25", @@ -9472,7 +10561,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 405 + "idx": 526 }, { "filingDate": "2022-05-25", @@ -9498,7 +10587,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 406 + "idx": 527 }, { "filingDate": "2022-05-25", @@ -9524,7 +10613,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 407 + "idx": 528 }, { "filingDate": "2022-05-25", @@ -9550,7 +10639,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 408 + "idx": 529 }, { "filingDate": "2022-05-25", @@ -9576,7 +10665,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 409 + "idx": 530 }, { "filingDate": "2022-05-25", @@ -9602,7 +10691,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222015005/form8-k_htm.xml" } ], - "idx": 410 + "idx": 531 }, { "filingDate": "2022-05-12", @@ -9636,7 +10725,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222013026/form10-q_htm.xml" } ], - "idx": 411 + "idx": 532 }, { "filingDate": "2022-05-12", @@ -9670,7 +10759,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222013026/form10-q_htm.xml" } ], - "idx": 412 + "idx": 533 }, { "filingDate": "2022-05-12", @@ -9704,7 +10793,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222013026/form10-q_htm.xml" } ], - "idx": 413 + "idx": 534 }, { "filingDate": "2022-05-12", @@ -9738,7 +10827,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222013026/form10-q_htm.xml" } ], - "idx": 414 + "idx": 535 }, { "filingDate": "2022-05-12", @@ -9772,7 +10861,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222013026/form10-q_htm.xml" } ], - "idx": 415 + "idx": 536 }, { "filingDate": "2022-05-11", @@ -9798,7 +10887,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222012777/form8-k_htm.xml" } ], - "idx": 416 + "idx": 537 }, { "filingDate": "2022-05-11", @@ -9824,7 +10913,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222012777/form8-k_htm.xml" } ], - "idx": 417 + "idx": 538 }, { "filingDate": "2022-05-02", @@ -9833,7 +10922,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122017133/ny20002731x2_defa14a.htm", "dataFiles": [], - "idx": 418 + "idx": 539 }, { "filingDate": "2022-05-02", @@ -9842,7 +10931,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122017133/ny20002731x2_pc01.jpg", "dataFiles": [], - "idx": 419 + "idx": 540 }, { "filingDate": "2022-05-02", @@ -9851,7 +10940,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122017133/ny20002731x2_pc02.jpg", "dataFiles": [], - "idx": 420 + "idx": 541 }, { "filingDate": "2022-05-02", @@ -9860,7 +10949,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122017131/ny20002731x1_def14a.htm", "dataFiles": [], - "idx": 421 + "idx": 542 }, { "filingDate": "2022-05-02", @@ -9869,7 +10958,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122017131/ny20002731x1_pc01.jpg", "dataFiles": [], - "idx": 422 + "idx": 543 }, { "filingDate": "2022-05-02", @@ -9878,7 +10967,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122017131/ny20002731x1_pc02.jpg", "dataFiles": [], - "idx": 423 + "idx": 544 }, { "filingDate": "2022-05-02", @@ -9887,7 +10976,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036122017131/sig_grahamchynoweth.jpg", "dataFiles": [], - "idx": 424 + "idx": 545 }, { "filingDate": "2022-04-28", @@ -9913,7 +11002,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222011369/form8-k_htm.xml" } ], - "idx": 425 + "idx": 546 }, { "filingDate": "2022-04-15", @@ -9939,7 +11028,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222009989/form8-k_htm.xml" } ], - "idx": 426 + "idx": 547 }, { "filingDate": "2022-04-15", @@ -9965,7 +11054,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222009989/form8-k_htm.xml" } ], - "idx": 427 + "idx": 548 + }, + { + "filingDate": "2022-04-01", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008805/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 549 + }, + { + "filingDate": "2022-04-01", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008805/ownership.xml", + "dataFiles": [], + "idx": 550 + }, + { + "filingDate": "2022-04-01", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008804/xslF345X02/ownership.xml", + "dataFiles": [], + "idx": 551 + }, + { + "filingDate": "2022-04-01", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008804/ownership.xml", + "dataFiles": [], + "idx": 552 }, { "filingDate": "2022-03-31", @@ -9999,7 +11124,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008365/form10-k_htm.xml" } ], - "idx": 428 + "idx": 553 }, { "filingDate": "2022-03-31", @@ -10033,7 +11158,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008365/form10-k_htm.xml" } ], - "idx": 429 + "idx": 554 }, { "filingDate": "2022-03-31", @@ -10067,7 +11192,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008365/form10-k_htm.xml" } ], - "idx": 430 + "idx": 555 }, { "filingDate": "2022-03-31", @@ -10101,7 +11226,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008365/form10-k_htm.xml" } ], - "idx": 431 + "idx": 556 }, { "filingDate": "2022-03-31", @@ -10135,7 +11260,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008365/form10-k_htm.xml" } ], - "idx": 432 + "idx": 557 }, { "filingDate": "2022-03-31", @@ -10169,7 +11294,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008365/form10-k_htm.xml" } ], - "idx": 433 + "idx": 558 }, { "filingDate": "2022-03-31", @@ -10203,7 +11328,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008365/form10-k_htm.xml" } ], - "idx": 434 + "idx": 559 }, { "filingDate": "2022-03-31", @@ -10237,7 +11362,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008365/form10-k_htm.xml" } ], - "idx": 435 + "idx": 560 }, { "filingDate": "2022-03-31", @@ -10263,7 +11388,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008250/form8-k_htm.xml" } ], - "idx": 436 + "idx": 561 }, { "filingDate": "2022-03-31", @@ -10289,7 +11414,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222008250/form8-k_htm.xml" } ], - "idx": 437 + "idx": 562 }, { "filingDate": "2022-03-24", @@ -10315,7 +11440,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222007702/form8-ka_htm.xml" } ], - "idx": 438 + "idx": 563 }, { "filingDate": "2022-03-24", @@ -10341,7 +11466,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222007702/form8-ka_htm.xml" } ], - "idx": 439 + "idx": 564 }, { "filingDate": "2022-03-04", @@ -10367,7 +11492,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222006095/form8-k_htm.xml" } ], - "idx": 440 + "idx": 565 }, { "filingDate": "2022-03-04", @@ -10393,7 +11518,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222006095/form8-k_htm.xml" } ], - "idx": 441 + "idx": 566 }, { "filingDate": "2022-03-04", @@ -10419,7 +11544,25 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222006095/form8-k_htm.xml" } ], - "idx": 442 + "idx": 567 + }, + { + "filingDate": "2022-03-03", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005962/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 568 + }, + { + "filingDate": "2022-03-03", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005962/ownership.xml", + "dataFiles": [], + "idx": 569 }, { "filingDate": "2022-02-28", @@ -10445,7 +11588,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005603/form8-k_htm.xml" } ], - "idx": 443 + "idx": 570 }, { "filingDate": "2022-02-28", @@ -10471,7 +11614,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005603/form8-k_htm.xml" } ], - "idx": 444 + "idx": 571 }, { "filingDate": "2022-02-28", @@ -10497,7 +11640,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005603/form8-k_htm.xml" } ], - "idx": 445 + "idx": 572 }, { "filingDate": "2022-02-28", @@ -10523,7 +11666,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005554/form8-k_htm.xml" } ], - "idx": 446 + "idx": 573 }, { "filingDate": "2022-02-28", @@ -10549,7 +11692,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005554/form8-k_htm.xml" } ], - "idx": 447 + "idx": 574 }, { "filingDate": "2022-02-28", @@ -10575,7 +11718,61 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005554/form8-k_htm.xml" } ], - "idx": 448 + "idx": 575 + }, + { + "filingDate": "2022-02-22", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005112/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 576 + }, + { + "filingDate": "2022-02-22", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005112/ownership.xml", + "dataFiles": [], + "idx": 577 + }, + { + "filingDate": "2022-02-22", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005111/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 578 + }, + { + "filingDate": "2022-02-22", + "form": "4/A", + "description": "[Amend] Statement of changes in beneficial ownership of securities", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005111/ownership.xml", + "dataFiles": [], + "idx": 579 + }, + { + "filingDate": "2022-02-22", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005110/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 580 + }, + { + "filingDate": "2022-02-22", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005110/ownership.xml", + "dataFiles": [], + "idx": 581 }, { "filingDate": "2022-02-22", @@ -10601,7 +11798,25 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315222005109/form8-k_htm.xml" } ], - "idx": 449 + "idx": 582 + }, + { + "filingDate": "2021-12-30", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221032737/xslF345X02/ownership.xml", + "dataFiles": [], + "idx": 583 + }, + { + "filingDate": "2021-12-30", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221032737/ownership.xml", + "dataFiles": [], + "idx": 584 }, { "filingDate": "2021-12-22", @@ -10627,7 +11842,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221032277/form8-k_htm.xml" } ], - "idx": 450 + "idx": 585 }, { "filingDate": "2021-12-22", @@ -10653,7 +11868,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221032277/form8-k_htm.xml" } ], - "idx": 451 + "idx": 586 }, { "filingDate": "2021-12-22", @@ -10679,7 +11894,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221032277/form8-k_htm.xml" } ], - "idx": 452 + "idx": 587 }, { "filingDate": "2021-12-22", @@ -10705,7 +11920,187 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221032277/form8-k_htm.xml" } ], - "idx": 453 + "idx": 588 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1197847/000149315221031775/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 589 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1197847/000149315221031775/ownership.xml", + "dataFiles": [], + "idx": 590 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031773/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 591 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031773/ownership.xml", + "dataFiles": [], + "idx": 592 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031771/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 593 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031771/ownership.xml", + "dataFiles": [], + "idx": 594 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031770/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 595 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031770/ownership.xml", + "dataFiles": [], + "idx": 596 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031767/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 597 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031767/ownership.xml", + "dataFiles": [], + "idx": 598 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031766/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 599 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031766/ownership.xml", + "dataFiles": [], + "idx": 600 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031764/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 601 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031764/ownership.xml", + "dataFiles": [], + "idx": 602 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031761/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 603 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031761/ownership.xml", + "dataFiles": [], + "idx": 604 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031760/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 605 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031760/ownership.xml", + "dataFiles": [], + "idx": 606 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031757/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 607 + }, + { + "filingDate": "2021-12-16", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031757/ownership.xml", + "dataFiles": [], + "idx": 608 }, { "filingDate": "2021-12-16", @@ -10714,7 +12109,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/forms-8.htm", "dataFiles": [], - "idx": 454 + "idx": 609 }, { "filingDate": "2021-12-16", @@ -10723,7 +12118,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex5-1.htm", "dataFiles": [], - "idx": 455 + "idx": 610 }, { "filingDate": "2021-12-16", @@ -10732,7 +12127,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex23-1.htm", "dataFiles": [], - "idx": 456 + "idx": 611 }, { "filingDate": "2021-12-16", @@ -10741,7 +12136,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex99-1.htm", "dataFiles": [], - "idx": 457 + "idx": 612 }, { "filingDate": "2021-12-16", @@ -10750,7 +12145,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex5-1_001.jpg", "dataFiles": [], - "idx": 458 + "idx": 613 }, { "filingDate": "2021-12-16", @@ -10759,7 +12154,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex5-1_002.jpg", "dataFiles": [], - "idx": 459 + "idx": 614 }, { "filingDate": "2021-12-16", @@ -10768,7 +12163,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex5-1_003.jpg", "dataFiles": [], - "idx": 460 + "idx": 615 }, { "filingDate": "2021-12-16", @@ -10777,7 +12172,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex23-1_001.jpg", "dataFiles": [], - "idx": 461 + "idx": 616 }, { "filingDate": "2021-12-16", @@ -10786,7 +12181,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex23-1_002.jpg", "dataFiles": [], - "idx": 462 + "idx": 617 }, { "filingDate": "2021-12-16", @@ -10795,7 +12190,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031742/ex23-1_003.jpg", "dataFiles": [], - "idx": 463 + "idx": 618 }, { "filingDate": "2021-12-16", @@ -10804,7 +12199,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans, post-effective amendments", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031739/forms-8pos.htm", "dataFiles": [], - "idx": 464 + "idx": 619 }, { "filingDate": "2021-12-16", @@ -10813,7 +12208,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans, post-effective amendments", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221031739/ex24-1.htm", "dataFiles": [], - "idx": 465 + "idx": 620 }, { "filingDate": "2021-12-08", @@ -10839,7 +12234,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221030769/form8-k_htm.xml" } ], - "idx": 466 + "idx": 621 }, { "filingDate": "2021-12-08", @@ -10865,7 +12260,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221030769/form8-k_htm.xml" } ], - "idx": 467 + "idx": 622 }, { "filingDate": "2021-12-08", @@ -10891,7 +12286,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221030769/form8-k_htm.xml" } ], - "idx": 468 + "idx": 623 + }, + { + "filingDate": "2021-12-03", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221030415/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 624 + }, + { + "filingDate": "2021-12-03", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221030415/ownership.xml", + "dataFiles": [], + "idx": 625 + }, + { + "filingDate": "2021-12-01", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465921145546/xslF345X03/tm2134391-1_4seq1.xml", + "dataFiles": [], + "idx": 626 + }, + { + "filingDate": "2021-12-01", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465921145546/tm2134391-1_4seq1.xml", + "dataFiles": [], + "idx": 627 }, { "filingDate": "2021-11-16", @@ -10900,7 +12331,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028941/forms-8.htm", "dataFiles": [], - "idx": 469 + "idx": 628 }, { "filingDate": "2021-11-16", @@ -10909,7 +12340,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028941/ex5-1.htm", "dataFiles": [], - "idx": 470 + "idx": 629 }, { "filingDate": "2021-11-16", @@ -10918,7 +12349,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028941/ex5-1_001.jpg", "dataFiles": [], - "idx": 471 + "idx": 630 }, { "filingDate": "2021-11-16", @@ -10927,7 +12358,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028941/ex5-1_002.jpg", "dataFiles": [], - "idx": 472 + "idx": 631 }, { "filingDate": "2021-11-16", @@ -10936,7 +12367,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028941/ex23-1.htm", "dataFiles": [], - "idx": 473 + "idx": 632 }, { "filingDate": "2021-11-16", @@ -10945,7 +12376,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028941/ex23-1_001.jpg", "dataFiles": [], - "idx": 474 + "idx": 633 }, { "filingDate": "2021-11-16", @@ -10954,7 +12385,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028941/ex23-1_002.jpg", "dataFiles": [], - "idx": 475 + "idx": 634 }, { "filingDate": "2021-11-16", @@ -10963,7 +12394,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028941/ex23-1_003.jpg", "dataFiles": [], - "idx": 476 + "idx": 635 }, { "filingDate": "2021-11-16", @@ -10989,7 +12420,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028938/form8-k_htm.xml" } ], - "idx": 477 + "idx": 636 }, { "filingDate": "2021-11-16", @@ -11015,7 +12446,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028938/form8-k_htm.xml" } ], - "idx": 478 + "idx": 637 }, { "filingDate": "2021-11-16", @@ -11041,7 +12472,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028938/form8-k_htm.xml" } ], - "idx": 479 + "idx": 638 }, { "filingDate": "2021-11-16", @@ -11067,7 +12498,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028938/form8-k_htm.xml" } ], - "idx": 480 + "idx": 639 }, { "filingDate": "2021-11-16", @@ -11093,7 +12524,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221028938/form8-k_htm.xml" } ], - "idx": 481 + "idx": 640 }, { "filingDate": "2021-11-02", @@ -11119,7 +12550,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026943/form8-k_htm.xml" } ], - "idx": 482 + "idx": 641 }, { "filingDate": "2021-11-02", @@ -11145,7 +12576,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026943/form8-k_htm.xml" } ], - "idx": 483 + "idx": 642 }, { "filingDate": "2021-11-02", @@ -11171,7 +12602,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026943/form8-k_htm.xml" } ], - "idx": 484 + "idx": 643 }, { "filingDate": "2021-11-02", @@ -11205,7 +12636,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026929/form10-q_htm.xml" } ], - "idx": 485 + "idx": 644 }, { "filingDate": "2021-11-02", @@ -11239,7 +12670,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026929/form10-q_htm.xml" } ], - "idx": 486 + "idx": 645 }, { "filingDate": "2021-11-02", @@ -11273,7 +12704,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026929/form10-q_htm.xml" } ], - "idx": 487 + "idx": 646 }, { "filingDate": "2021-11-02", @@ -11307,7 +12738,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026929/form10-q_htm.xml" } ], - "idx": 488 + "idx": 647 }, { "filingDate": "2021-11-02", @@ -11341,7 +12772,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026929/form10-q_htm.xml" } ], - "idx": 489 + "idx": 648 }, { "filingDate": "2021-11-02", @@ -11367,7 +12798,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 490 + "idx": 649 }, { "filingDate": "2021-11-02", @@ -11393,7 +12824,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 491 + "idx": 650 }, { "filingDate": "2021-11-02", @@ -11419,7 +12850,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 492 + "idx": 651 }, { "filingDate": "2021-11-02", @@ -11445,7 +12876,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 493 + "idx": 652 }, { "filingDate": "2021-11-02", @@ -11471,7 +12902,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 494 + "idx": 653 }, { "filingDate": "2021-11-02", @@ -11497,7 +12928,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 495 + "idx": 654 }, { "filingDate": "2021-11-02", @@ -11523,7 +12954,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 496 + "idx": 655 }, { "filingDate": "2021-11-02", @@ -11549,7 +12980,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 497 + "idx": 656 }, { "filingDate": "2021-11-02", @@ -11575,7 +13006,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 498 + "idx": 657 }, { "filingDate": "2021-11-02", @@ -11601,7 +13032,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 499 + "idx": 658 }, { "filingDate": "2021-11-02", @@ -11627,7 +13058,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 500 + "idx": 659 }, { "filingDate": "2021-11-02", @@ -11653,7 +13084,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 501 + "idx": 660 }, { "filingDate": "2021-11-02", @@ -11679,7 +13110,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 502 + "idx": 661 }, { "filingDate": "2021-11-02", @@ -11705,7 +13136,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026916/form8-k_htm.xml" } ], - "idx": 503 + "idx": 662 }, { "filingDate": "2021-10-27", @@ -11731,7 +13162,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026552/form8-ka_htm.xml" } ], - "idx": 504 + "idx": 663 }, { "filingDate": "2021-10-27", @@ -11757,7 +13188,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026552/form8-ka_htm.xml" } ], - "idx": 505 + "idx": 664 }, { "filingDate": "2021-10-27", @@ -11783,7 +13214,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026552/form8-ka_htm.xml" } ], - "idx": 506 + "idx": 665 }, { "filingDate": "2021-10-27", @@ -11809,7 +13240,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026552/form8-ka_htm.xml" } ], - "idx": 507 + "idx": 666 }, { "filingDate": "2021-10-27", @@ -11835,7 +13266,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026552/form8-ka_htm.xml" } ], - "idx": 508 + "idx": 667 }, { "filingDate": "2021-10-27", @@ -11861,7 +13292,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026552/form8-ka_htm.xml" } ], - "idx": 509 + "idx": 668 }, { "filingDate": "2021-10-27", @@ -11887,7 +13318,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026552/form8-ka_htm.xml" } ], - "idx": 510 + "idx": 669 }, { "filingDate": "2021-10-27", @@ -11913,7 +13344,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026552/form8-ka_htm.xml" } ], - "idx": 511 + "idx": 670 }, { "filingDate": "2021-10-26", @@ -11939,7 +13370,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026306/form8-k_htm.xml" } ], - "idx": 512 + "idx": 671 }, { "filingDate": "2021-10-26", @@ -11965,7 +13396,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026306/form8-k_htm.xml" } ], - "idx": 513 + "idx": 672 }, { "filingDate": "2021-10-26", @@ -11991,7 +13422,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026306/form8-k_htm.xml" } ], - "idx": 514 + "idx": 673 }, { "filingDate": "2021-10-26", @@ -12017,7 +13448,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026306/form8-k_htm.xml" } ], - "idx": 515 + "idx": 674 }, { "filingDate": "2021-10-26", @@ -12043,7 +13474,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026306/form8-k_htm.xml" } ], - "idx": 516 + "idx": 675 }, { "filingDate": "2021-10-26", @@ -12069,7 +13500,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026306/form8-k_htm.xml" } ], - "idx": 517 + "idx": 676 }, { "filingDate": "2021-10-26", @@ -12095,7 +13526,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026306/form8-k_htm.xml" } ], - "idx": 518 + "idx": 677 }, { "filingDate": "2021-10-26", @@ -12121,7 +13552,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221026306/form8-k_htm.xml" } ], - "idx": 519 + "idx": 678 }, { "filingDate": "2021-10-04", @@ -12147,7 +13578,79 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121033359/brhc10029534_8k_htm.xml" } ], - "idx": 520 + "idx": 679 + }, + { + "filingDate": "2021-08-26", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221021322/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 680 + }, + { + "filingDate": "2021-08-26", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221021322/ownership.xml", + "dataFiles": [], + "idx": 681 + }, + { + "filingDate": "2021-08-25", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221021283/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 682 + }, + { + "filingDate": "2021-08-25", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221021283/ownership.xml", + "dataFiles": [], + "idx": 683 + }, + { + "filingDate": "2021-08-23", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465921108631/xslF345X03/tm2125736-1_4seq1.xml", + "dataFiles": [], + "idx": 684 + }, + { + "filingDate": "2021-08-23", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465921108631/tm2125736-1_4seq1.xml", + "dataFiles": [], + "idx": 685 + }, + { + "filingDate": "2021-08-23", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221021006/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 686 + }, + { + "filingDate": "2021-08-23", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221021006/ownership.xml", + "dataFiles": [], + "idx": 687 }, { "filingDate": "2021-08-20", @@ -12156,7 +13659,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121029015/brhc10028073_sc13da.htm", "dataFiles": [], - "idx": 521 + "idx": 688 }, { "filingDate": "2021-08-20", @@ -12165,7 +13668,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121029015/brhc10028073_ex99-2.htm", "dataFiles": [], - "idx": 522 + "idx": 689 }, { "filingDate": "2021-08-20", @@ -12191,7 +13694,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221020803/form8-k_htm.xml" } ], - "idx": 523 + "idx": 690 }, { "filingDate": "2021-08-16", @@ -12225,7 +13728,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019919/form10-q_htm.xml" } ], - "idx": 524 + "idx": 691 }, { "filingDate": "2021-08-16", @@ -12259,7 +13762,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019919/form10-q_htm.xml" } ], - "idx": 525 + "idx": 692 }, { "filingDate": "2021-08-16", @@ -12293,7 +13796,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019919/form10-q_htm.xml" } ], - "idx": 526 + "idx": 693 }, { "filingDate": "2021-08-16", @@ -12327,7 +13830,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019919/form10-q_htm.xml" } ], - "idx": 527 + "idx": 694 }, { "filingDate": "2021-08-16", @@ -12361,7 +13864,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019919/form10-q_htm.xml" } ], - "idx": 528 + "idx": 695 }, { "filingDate": "2021-08-16", @@ -12370,7 +13873,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.01, 2.02, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019902/form8-k.htm", "dataFiles": [], - "idx": 529 + "idx": 696 }, { "filingDate": "2021-08-16", @@ -12379,7 +13882,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.01, 2.02, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019902/ex10-1.htm", "dataFiles": [], - "idx": 530 + "idx": 697 }, { "filingDate": "2021-08-16", @@ -12388,7 +13891,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.01, 2.02, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019902/ex99-1.htm", "dataFiles": [], - "idx": 531 + "idx": 698 }, { "filingDate": "2021-08-16", @@ -12397,7 +13900,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.01, 2.02, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019902/ex99-2.htm", "dataFiles": [], - "idx": 532 + "idx": 699 }, { "filingDate": "2021-08-16", @@ -12406,7 +13909,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.01, 2.02, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221019902/ex99-1_001.jpg", "dataFiles": [], - "idx": 533 + "idx": 700 }, { "filingDate": "2021-08-02", @@ -12415,7 +13918,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018313/form8-ka.htm", "dataFiles": [], - "idx": 534 + "idx": 701 }, { "filingDate": "2021-08-02", @@ -12424,7 +13927,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018313/ex99-1.htm", "dataFiles": [], - "idx": 535 + "idx": 702 }, { "filingDate": "2021-08-02", @@ -12433,7 +13936,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018313/ex99-1_001.jpg", "dataFiles": [], - "idx": 536 + "idx": 703 }, { "filingDate": "2021-08-02", @@ -12442,7 +13945,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018282/form8-k.htm", "dataFiles": [], - "idx": 537 + "idx": 704 }, { "filingDate": "2021-08-02", @@ -12451,7 +13954,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018282/ex99-1.htm", "dataFiles": [], - "idx": 538 + "idx": 705 }, { "filingDate": "2021-08-02", @@ -12460,7 +13963,25 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018282/ex99-1_001.jpg", "dataFiles": [], - "idx": 539 + "idx": 706 + }, + { + "filingDate": "2021-08-02", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018263/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 707 + }, + { + "filingDate": "2021-08-02", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018263/ownership.xml", + "dataFiles": [], + "idx": 708 }, { "filingDate": "2021-08-02", @@ -12469,7 +13990,43 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465921098519/tm2123702d1_sc13da.htm", "dataFiles": [], - "idx": 540 + "idx": 709 + }, + { + "filingDate": "2021-07-30", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465921098003/xslF345X03/tm2123661-1_4seq1.xml", + "dataFiles": [], + "idx": 710 + }, + { + "filingDate": "2021-07-30", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465921098003/tm2123661-1_4seq1.xml", + "dataFiles": [], + "idx": 711 + }, + { + "filingDate": "2021-07-29", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018113/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 712 + }, + { + "filingDate": "2021-07-29", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018113/ownership.xml", + "dataFiles": [], + "idx": 713 }, { "filingDate": "2021-07-29", @@ -12478,7 +14035,7 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(4)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018096/form-424b4.htm", "dataFiles": [], - "idx": 541 + "idx": 714 }, { "filingDate": "2021-07-29", @@ -12487,7 +14044,7 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(4)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018096/form424b4_002.jpg", "dataFiles": [], - "idx": 542 + "idx": 715 }, { "filingDate": "2021-07-29", @@ -12496,7 +14053,61 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(4)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018096/form424b4_001.jpg", "dataFiles": [], - "idx": 543 + "idx": 716 + }, + { + "filingDate": "2021-07-29", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018091/xslF345X02/ownership.xml", + "dataFiles": [], + "idx": 717 + }, + { + "filingDate": "2021-07-29", + "form": "3", + "description": "Initial statement of beneficial ownership of securities", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018091/ownership.xml", + "dataFiles": [], + "idx": 718 + }, + { + "filingDate": "2021-07-29", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018083/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 719 + }, + { + "filingDate": "2021-07-29", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018083/ownership.xml", + "dataFiles": [], + "idx": 720 + }, + { + "filingDate": "2021-07-29", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018082/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 721 + }, + { + "filingDate": "2021-07-29", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018082/ownership.xml", + "dataFiles": [], + "idx": 722 }, { "filingDate": "2021-07-29", @@ -12505,7 +14116,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018031/form8-k.htm", "dataFiles": [], - "idx": 544 + "idx": 723 }, { "filingDate": "2021-07-29", @@ -12514,7 +14125,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018031/ex99-1.htm", "dataFiles": [], - "idx": 545 + "idx": 724 }, { "filingDate": "2021-07-29", @@ -12523,7 +14134,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018031/ex99-2.htm", "dataFiles": [], - "idx": 546 + "idx": 725 }, { "filingDate": "2021-07-29", @@ -12532,7 +14143,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018031/ex99-1_001.jpg", "dataFiles": [], - "idx": 547 + "idx": 726 }, { "filingDate": "2021-07-29", @@ -12541,7 +14152,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018031/ex99-2_001.jpg", "dataFiles": [], - "idx": 548 + "idx": 727 }, { "filingDate": "2021-07-29", @@ -12550,7 +14161,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221018031/ex99-2_002.jpg", "dataFiles": [], - "idx": 549 + "idx": 728 }, { "filingDate": "2021-07-28 16:00:00", @@ -12559,7 +14170,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999521002957/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 550 + "idx": 729 }, { "filingDate": "2021-07-28 16:00:00", @@ -12568,7 +14179,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999521002957/primary_doc.xml", "dataFiles": [], - "idx": 551 + "idx": 730 }, { "filingDate": "2021-07-28", @@ -12577,7 +14188,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017926/forms-1a.htm", "dataFiles": [], - "idx": 552 + "idx": 731 }, { "filingDate": "2021-07-28", @@ -12586,7 +14197,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017926/ex23-1.htm", "dataFiles": [], - "idx": 553 + "idx": 732 }, { "filingDate": "2021-07-28", @@ -12595,7 +14206,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017926/ex23-2.htm", "dataFiles": [], - "idx": 554 + "idx": 733 }, { "filingDate": "2021-07-28", @@ -12604,7 +14215,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017926/forms-1_001.jpg", "dataFiles": [], - "idx": 555 + "idx": 734 }, { "filingDate": "2021-07-28", @@ -12613,7 +14224,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017926/forms-1_002.jpg", "dataFiles": [], - "idx": 556 + "idx": 735 }, { "filingDate": "2021-07-26", @@ -12622,7 +14233,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017776/filename1.htm", "dataFiles": [], - "idx": 557 + "idx": 736 }, { "filingDate": "2021-07-26", @@ -12631,7 +14242,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017775/filename1.htm", "dataFiles": [], - "idx": 558 + "idx": 737 }, { "filingDate": "2021-07-26", @@ -12640,7 +14251,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 7.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017758/form8-k.htm", "dataFiles": [], - "idx": 559 + "idx": 738 }, { "filingDate": "2021-07-26", @@ -12649,7 +14260,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 7.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017758/ex99-1.htm", "dataFiles": [], - "idx": 560 + "idx": 739 }, { "filingDate": "2021-07-26", @@ -12658,7 +14269,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 7.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017758/ex99-2.htm", "dataFiles": [], - "idx": 561 + "idx": 740 }, { "filingDate": "2021-07-26", @@ -12667,7 +14278,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 7.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017758/ex99-1_001.jpg", "dataFiles": [], - "idx": 562 + "idx": 741 }, { "filingDate": "2021-07-26", @@ -12676,7 +14287,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 7.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017758/ex99-2_001.jpg", "dataFiles": [], - "idx": 563 + "idx": 742 }, { "filingDate": "2021-07-26", @@ -12685,7 +14296,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/forms-1a.htm", "dataFiles": [], - "idx": 564 + "idx": 743 }, { "filingDate": "2021-07-26", @@ -12694,7 +14305,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/ex1-1.htm", "dataFiles": [], - "idx": 565 + "idx": 744 }, { "filingDate": "2021-07-26", @@ -12703,7 +14314,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/ex4-1.htm", "dataFiles": [], - "idx": 566 + "idx": 745 }, { "filingDate": "2021-07-26", @@ -12712,7 +14323,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/ex5-1.htm", "dataFiles": [], - "idx": 567 + "idx": 746 }, { "filingDate": "2021-07-26", @@ -12721,7 +14332,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/ex23-1.htm", "dataFiles": [], - "idx": 568 + "idx": 747 }, { "filingDate": "2021-07-26", @@ -12730,7 +14341,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/ex23-2.htm", "dataFiles": [], - "idx": 569 + "idx": 748 }, { "filingDate": "2021-07-26", @@ -12739,7 +14350,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/ex5-1_001.jpg", "dataFiles": [], - "idx": 570 + "idx": 749 }, { "filingDate": "2021-07-26", @@ -12748,7 +14359,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/ex5-1_002.jpg", "dataFiles": [], - "idx": 571 + "idx": 750 }, { "filingDate": "2021-07-26", @@ -12757,7 +14368,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/ex5-1_003.jpg", "dataFiles": [], - "idx": 572 + "idx": 751 }, { "filingDate": "2021-07-26", @@ -12766,7 +14377,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/forms-1_001.jpg", "dataFiles": [], - "idx": 573 + "idx": 752 }, { "filingDate": "2021-07-26", @@ -12775,7 +14386,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017756/forms-1_002.jpg", "dataFiles": [], - "idx": 574 + "idx": 753 }, { "filingDate": "2021-07-23", @@ -12784,7 +14395,7 @@ export const fileList = [ "formDescription": "Current report, items 3.03, 5.02, 5.03, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017629/form8-k.htm", "dataFiles": [], - "idx": 575 + "idx": 754 }, { "filingDate": "2021-07-23", @@ -12793,7 +14404,7 @@ export const fileList = [ "formDescription": "Current report, items 3.03, 5.02, 5.03, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221017629/ex3-1.htm", "dataFiles": [], - "idx": 576 + "idx": 755 }, { "filingDate": "2021-07-23", @@ -12802,7 +14413,7 @@ export const fileList = [ "formDescription": "Confidential treatment order", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999721004285/filename1.pdf", "dataFiles": [], - "idx": 577 + "idx": 756 }, { "filingDate": "2021-07-12", @@ -12811,7 +14422,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221016608/formdefa14a.htm", "dataFiles": [], - "idx": 578 + "idx": 757 }, { "filingDate": "2021-07-12", @@ -12820,7 +14431,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02 and 8.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221016606/form8-k.htm", "dataFiles": [], - "idx": 579 + "idx": 758 }, { "filingDate": "2021-07-12", @@ -12829,7 +14440,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121024020/nc10026616x1_def14a.htm", "dataFiles": [], - "idx": 580 + "idx": 759 }, { "filingDate": "2021-07-12", @@ -12838,7 +14449,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121024020/nc10026616x1_pc01.jpg", "dataFiles": [], - "idx": 581 + "idx": 760 }, { "filingDate": "2021-07-12", @@ -12847,7 +14458,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121024020/nc10026616x1_pc02.jpg", "dataFiles": [], - "idx": 582 + "idx": 761 }, { "filingDate": "2021-07-12", @@ -12856,7 +14467,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121024020/sig_gchynoweth.jpg", "dataFiles": [], - "idx": 583 + "idx": 762 }, { "filingDate": "2021-07-07", @@ -12865,7 +14476,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000021008363/filename1.pdf", "dataFiles": [], - "idx": 584 + "idx": 763 }, { "filingDate": "2021-07-07", @@ -12874,7 +14485,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000021008363/filename2.txt", "dataFiles": [], - "idx": 585 + "idx": 764 }, { "filingDate": "2021-07-02", @@ -12883,7 +14494,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221016056/forms-1.htm", "dataFiles": [], - "idx": 586 + "idx": 765 }, { "filingDate": "2021-07-02", @@ -12892,7 +14503,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221016056/ex23-1.htm", "dataFiles": [], - "idx": 587 + "idx": 766 }, { "filingDate": "2021-07-02", @@ -12901,7 +14512,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221016056/ex23-2.htm", "dataFiles": [], - "idx": 588 + "idx": 767 }, { "filingDate": "2021-07-02", @@ -12910,7 +14521,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221016056/forms-1_001.jpg", "dataFiles": [], - "idx": 589 + "idx": 768 }, { "filingDate": "2021-07-02", @@ -12919,7 +14530,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221016056/forms-1_002.jpg", "dataFiles": [], - "idx": 590 + "idx": 769 }, { "filingDate": "2021-07-01", @@ -12928,7 +14539,7 @@ export const fileList = [ "formDescription": "Certification by an exchange approving securities for listing", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135445721000751/8A_Cert_Minim.pdf", "dataFiles": [], - "idx": 591 + "idx": 770 }, { "filingDate": "2021-07-01", @@ -12937,7 +14548,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(b)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015813/form8a-12b.htm", "dataFiles": [], - "idx": 592 + "idx": 771 }, { "filingDate": "2021-06-30", @@ -12946,7 +14557,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121022992/brhc10026487_pre14a.htm", "dataFiles": [], - "idx": 593 + "idx": 772 }, { "filingDate": "2021-06-30", @@ -12955,7 +14566,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121022992/image00001.jpg", "dataFiles": [], - "idx": 594 + "idx": 773 }, { "filingDate": "2021-06-30", @@ -12964,7 +14575,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121022992/image00002.jpg", "dataFiles": [], - "idx": 595 + "idx": 774 }, { "filingDate": "2021-06-30", @@ -12973,7 +14584,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121022992/image00007.jpg", "dataFiles": [], - "idx": 596 + "idx": 775 }, { "filingDate": "2021-06-30", @@ -12982,7 +14593,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 5.03, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015759/form8-ka.htm", "dataFiles": [], - "idx": 597 + "idx": 776 }, { "filingDate": "2021-06-30", @@ -12991,7 +14602,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 5.03, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015759/ex3-1.htm", "dataFiles": [], - "idx": 598 + "idx": 777 }, { "filingDate": "2021-06-30", @@ -13000,7 +14611,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015638/form8-k.htm", "dataFiles": [], - "idx": 599 + "idx": 778 }, { "filingDate": "2021-06-30", @@ -13009,7 +14620,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015638/ex3-1.htm", "dataFiles": [], - "idx": 600 + "idx": 779 }, { "filingDate": "2021-06-30", @@ -13018,7 +14629,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015638/ex99-1.htm", "dataFiles": [], - "idx": 601 + "idx": 780 }, { "filingDate": "2021-06-30", @@ -13027,7 +14638,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015638/ex99-2.htm", "dataFiles": [], - "idx": 602 + "idx": 781 }, { "filingDate": "2021-06-30", @@ -13036,7 +14647,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015638/ex99-2_001.jpg", "dataFiles": [], - "idx": 603 + "idx": 782 }, { "filingDate": "2021-06-30", @@ -13045,7 +14656,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221015638/ex99-1_001.jpg", "dataFiles": [], - "idx": 604 + "idx": 783 }, { "filingDate": "2021-06-17 16:00:00", @@ -13054,7 +14665,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999521002409/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 605 + "idx": 784 }, { "filingDate": "2021-06-17 16:00:00", @@ -13063,7 +14674,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999521002409/primary_doc.xml", "dataFiles": [], - "idx": 606 + "idx": 785 }, { "filingDate": "2021-06-15", @@ -13072,7 +14683,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000149315221014412/filename1.htm", "dataFiles": [], - "idx": 607 + "idx": 786 }, { "filingDate": "2021-06-15", @@ -13081,7 +14692,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000021007383/filename1.pdf", "dataFiles": [], - "idx": 608 + "idx": 787 }, { "filingDate": "2021-06-15", @@ -13090,7 +14701,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000021007383/filename2.txt", "dataFiles": [], - "idx": 609 + "idx": 788 }, { "filingDate": "2021-06-10", @@ -13099,7 +14710,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006737/minm_s1.htm", "dataFiles": [], - "idx": 610 + "idx": 789 }, { "filingDate": "2021-06-10", @@ -13108,7 +14719,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006737/minm_ex37.htm", "dataFiles": [], - "idx": 611 + "idx": 790 }, { "filingDate": "2021-06-10", @@ -13117,7 +14728,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006737/minm_ex41.htm", "dataFiles": [], - "idx": 612 + "idx": 791 }, { "filingDate": "2021-06-10", @@ -13126,7 +14737,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006737/minm_ex51.htm", "dataFiles": [], - "idx": 613 + "idx": 792 }, { "filingDate": "2021-06-10", @@ -13135,7 +14746,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006737/minm_ex211.htm", "dataFiles": [], - "idx": 614 + "idx": 793 }, { "filingDate": "2021-06-10", @@ -13144,7 +14755,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006737/minm_ex231.htm", "dataFiles": [], - "idx": 615 + "idx": 794 }, { "filingDate": "2021-06-10", @@ -13153,7 +14764,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006737/minm_ex51.jpg", "dataFiles": [], - "idx": 616 + "idx": 795 }, { "filingDate": "2021-06-10", @@ -13162,7 +14773,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006737/minm_s1000.jpg", "dataFiles": [], - "idx": 617 + "idx": 796 }, { "filingDate": "2021-06-04", @@ -13171,7 +14782,7 @@ export const fileList = [ "formDescription": "Current report, items 3.03, 5.03, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006572/minm_8k.htm", "dataFiles": [], - "idx": 618 + "idx": 797 }, { "filingDate": "2021-06-04", @@ -13180,7 +14791,7 @@ export const fileList = [ "formDescription": "Current report, items 3.03, 5.03, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006572/minm_ex31.htm", "dataFiles": [], - "idx": 619 + "idx": 798 }, { "filingDate": "2021-06-04", @@ -13189,7 +14800,7 @@ export const fileList = [ "formDescription": "Current report, items 3.03, 5.03, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006572/minm_ex32.htm", "dataFiles": [], - "idx": 620 + "idx": 799 }, { "filingDate": "2021-06-04", @@ -13198,7 +14809,7 @@ export const fileList = [ "formDescription": "Current report, items 3.03, 5.03, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006572/minm_ex33.htm", "dataFiles": [], - "idx": 621 + "idx": 800 }, { "filingDate": "2021-05-24", @@ -13207,7 +14818,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006181/minm_sd.htm", "dataFiles": [], - "idx": 622 + "idx": 801 }, { "filingDate": "2021-05-24", @@ -13216,7 +14827,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421006181/minm_ex101.htm", "dataFiles": [], - "idx": 623 + "idx": 802 }, { "filingDate": "2021-05-17", @@ -13250,7 +14861,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421005766/zmtp-20210331_pre.xml" } ], - "idx": 624 + "idx": 803 }, { "filingDate": "2021-05-17", @@ -13284,7 +14895,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421005766/zmtp-20210331_pre.xml" } ], - "idx": 625 + "idx": 804 }, { "filingDate": "2021-05-17", @@ -13318,7 +14929,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421005766/zmtp-20210331_pre.xml" } ], - "idx": 626 + "idx": 805 }, { "filingDate": "2021-05-17", @@ -13352,7 +14963,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421005766/zmtp-20210331_pre.xml" } ], - "idx": 627 + "idx": 806 }, { "filingDate": "2021-05-17", @@ -13386,7 +14997,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421005766/zmtp-20210331_pre.xml" } ], - "idx": 628 + "idx": 807 }, { "filingDate": "2021-05-17", @@ -13395,7 +15006,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421005741/zmtp_8k.htm", "dataFiles": [], - "idx": 629 + "idx": 808 }, { "filingDate": "2021-05-17", @@ -13404,7 +15015,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421005741/zmtp_ex991.htm", "dataFiles": [], - "idx": 630 + "idx": 809 }, { "filingDate": "2021-05-17", @@ -13413,7 +15024,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421005741/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 631 + "idx": 810 }, { "filingDate": "2021-05-04", @@ -13422,7 +15033,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015651/nc10023531x3_def14a.htm", "dataFiles": [], - "idx": 632 + "idx": 811 }, { "filingDate": "2021-05-04", @@ -13431,7 +15042,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015651/nc10023531x3_pc01.jpg", "dataFiles": [], - "idx": 633 + "idx": 812 }, { "filingDate": "2021-05-04", @@ -13440,7 +15051,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015651/nc10023531x3_pc02.jpg", "dataFiles": [], - "idx": 634 + "idx": 813 }, { "filingDate": "2021-05-04", @@ -13449,7 +15060,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015651/sig_grahamchynoweth.jpg", "dataFiles": [], - "idx": 635 + "idx": 814 }, { "filingDate": "2021-05-03", @@ -13458,7 +15069,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 5.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015587/brhc10024010_8ka.htm", "dataFiles": [], - "idx": 636 + "idx": 815 }, { "filingDate": "2021-04-30", @@ -13467,7 +15078,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_10ka.htm", "dataFiles": [], - "idx": 637 + "idx": 816 }, { "filingDate": "2021-04-30", @@ -13476,7 +15087,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex10-27.htm", "dataFiles": [], - "idx": 638 + "idx": 817 }, { "filingDate": "2021-04-30", @@ -13485,7 +15096,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex10-28.htm", "dataFiles": [], - "idx": 639 + "idx": 818 }, { "filingDate": "2021-04-30", @@ -13494,7 +15105,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex10-29.htm", "dataFiles": [], - "idx": 640 + "idx": 819 }, { "filingDate": "2021-04-30", @@ -13503,7 +15114,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex10-30.htm", "dataFiles": [], - "idx": 641 + "idx": 820 }, { "filingDate": "2021-04-30", @@ -13512,7 +15123,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex10-31.htm", "dataFiles": [], - "idx": 642 + "idx": 821 }, { "filingDate": "2021-04-30", @@ -13521,7 +15132,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex31-3.htm", "dataFiles": [], - "idx": 643 + "idx": 822 }, { "filingDate": "2021-04-30", @@ -13530,7 +15141,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex31-4.htm", "dataFiles": [], - "idx": 644 + "idx": 823 }, { "filingDate": "2021-04-30", @@ -13539,7 +15150,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex32-3.htm", "dataFiles": [], - "idx": 645 + "idx": 824 }, { "filingDate": "2021-04-30", @@ -13548,7 +15159,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/brhc10023805_ex32-4.htm", "dataFiles": [], - "idx": 646 + "idx": 825 }, { "filingDate": "2021-04-30", @@ -13557,7 +15168,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121015017/image5.jpg", "dataFiles": [], - "idx": 647 + "idx": 826 }, { "filingDate": "2021-04-27", @@ -13566,7 +15177,7 @@ export const fileList = [ "formDescription": "Current report, item 4.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121014424/brhc10023654_8k.htm", "dataFiles": [], - "idx": 648 + "idx": 827 }, { "filingDate": "2021-04-23", @@ -13575,7 +15186,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121014138/nc10023531x2_pre14a.htm", "dataFiles": [], - "idx": 649 + "idx": 828 }, { "filingDate": "2021-04-23", @@ -13584,7 +15195,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121014138/nc10023531x1_pc01.jpg", "dataFiles": [], - "idx": 650 + "idx": 829 }, { "filingDate": "2021-04-23", @@ -13593,7 +15204,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121014138/nc10023531x1_pc02.jpg", "dataFiles": [], - "idx": 651 + "idx": 830 }, { "filingDate": "2021-04-23", @@ -13602,7 +15213,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121014138/sig_grahamchynoweth.jpg", "dataFiles": [], - "idx": 652 + "idx": 831 }, { "filingDate": "2021-04-15", @@ -13611,7 +15222,7 @@ export const fileList = [ "formDescription": "Current report, items 4.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012955/brhc10023185_8k.htm", "dataFiles": [], - "idx": 653 + "idx": 832 }, { "filingDate": "2021-04-15", @@ -13620,7 +15231,7 @@ export const fileList = [ "formDescription": "Current report, items 4.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012955/brhc10023185_ex16-1.htm", "dataFiles": [], - "idx": 654 + "idx": 833 }, { "filingDate": "2021-04-15", @@ -13629,7 +15240,7 @@ export const fileList = [ "formDescription": "Current report, items 4.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012955/image00003.jpg", "dataFiles": [], - "idx": 655 + "idx": 834 }, { "filingDate": "2021-04-15", @@ -13638,7 +15249,7 @@ export const fileList = [ "formDescription": "Current report, items 4.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012955/image00004.jpg", "dataFiles": [], - "idx": 656 + "idx": 835 }, { "filingDate": "2021-04-15", @@ -13647,7 +15258,7 @@ export const fileList = [ "formDescription": "Current report, items 4.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012955/image00005.jpg", "dataFiles": [], - "idx": 657 + "idx": 836 }, { "filingDate": "2021-04-15", @@ -13656,7 +15267,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_8k.htm", "dataFiles": [], - "idx": 658 + "idx": 837 }, { "filingDate": "2021-04-15", @@ -13665,7 +15276,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1.htm", "dataFiles": [], - "idx": 659 + "idx": 838 }, { "filingDate": "2021-04-15", @@ -13674,7 +15285,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide21.jpg", "dataFiles": [], - "idx": 660 + "idx": 839 }, { "filingDate": "2021-04-15", @@ -13683,7 +15294,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide22.jpg", "dataFiles": [], - "idx": 661 + "idx": 840 }, { "filingDate": "2021-04-15", @@ -13692,7 +15303,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide23.jpg", "dataFiles": [], - "idx": 662 + "idx": 841 }, { "filingDate": "2021-04-15", @@ -13701,7 +15312,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide25.jpg", "dataFiles": [], - "idx": 663 + "idx": 842 }, { "filingDate": "2021-04-15", @@ -13710,7 +15321,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide26.jpg", "dataFiles": [], - "idx": 664 + "idx": 843 }, { "filingDate": "2021-04-15", @@ -13719,7 +15330,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide27.jpg", "dataFiles": [], - "idx": 665 + "idx": 844 }, { "filingDate": "2021-04-15", @@ -13728,7 +15339,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide28.jpg", "dataFiles": [], - "idx": 666 + "idx": 845 }, { "filingDate": "2021-04-15", @@ -13737,7 +15348,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide29.jpg", "dataFiles": [], - "idx": 667 + "idx": 846 }, { "filingDate": "2021-04-15", @@ -13746,7 +15357,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide32.jpg", "dataFiles": [], - "idx": 668 + "idx": 847 }, { "filingDate": "2021-04-15", @@ -13755,7 +15366,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide33.jpg", "dataFiles": [], - "idx": 669 + "idx": 848 }, { "filingDate": "2021-04-15", @@ -13764,7 +15375,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide34.jpg", "dataFiles": [], - "idx": 670 + "idx": 849 }, { "filingDate": "2021-04-15", @@ -13773,7 +15384,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide35.jpg", "dataFiles": [], - "idx": 671 + "idx": 850 }, { "filingDate": "2021-04-15", @@ -13782,7 +15393,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide36.jpg", "dataFiles": [], - "idx": 672 + "idx": 851 }, { "filingDate": "2021-04-15", @@ -13791,7 +15402,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide37.jpg", "dataFiles": [], - "idx": 673 + "idx": 852 }, { "filingDate": "2021-04-15", @@ -13800,7 +15411,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide38.jpg", "dataFiles": [], - "idx": 674 + "idx": 853 }, { "filingDate": "2021-04-15", @@ -13809,7 +15420,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/brhc10023098_ex99-1slide39.jpg", "dataFiles": [], - "idx": 675 + "idx": 854 }, { "filingDate": "2021-04-15", @@ -13818,7 +15429,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/image00002.jpg", "dataFiles": [], - "idx": 676 + "idx": 855 }, { "filingDate": "2021-04-15", @@ -13827,7 +15438,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/image00003.jpg", "dataFiles": [], - "idx": 677 + "idx": 856 }, { "filingDate": "2021-04-15", @@ -13836,7 +15447,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/image00004.jpg", "dataFiles": [], - "idx": 678 + "idx": 857 }, { "filingDate": "2021-04-15", @@ -13845,7 +15456,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121012937/image00005.jpg", "dataFiles": [], - "idx": 679 + "idx": 858 }, { "filingDate": "2021-04-13", @@ -13879,7 +15490,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp-20201231_pre.xml" } ], - "idx": 680 + "idx": 859 }, { "filingDate": "2021-04-13", @@ -13913,7 +15524,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp-20201231_pre.xml" } ], - "idx": 681 + "idx": 860 }, { "filingDate": "2021-04-13", @@ -13947,7 +15558,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp-20201231_pre.xml" } ], - "idx": 682 + "idx": 861 }, { "filingDate": "2021-04-13", @@ -13981,7 +15592,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp-20201231_pre.xml" } ], - "idx": 683 + "idx": 862 }, { "filingDate": "2021-04-13", @@ -14015,7 +15626,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp-20201231_pre.xml" } ], - "idx": 684 + "idx": 863 }, { "filingDate": "2021-04-13", @@ -14049,7 +15660,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp-20201231_pre.xml" } ], - "idx": 685 + "idx": 864 }, { "filingDate": "2021-04-13", @@ -14083,7 +15694,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421004133/zmtp-20201231_pre.xml" } ], - "idx": 686 + "idx": 865 }, { "filingDate": "2021-04-01", @@ -14092,7 +15703,7 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-K 405, 10-K, 10-KSB 405, 10-KSB, 10-KT, or 10-KT405", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036121011162/brhc10022652_nt10k.htm", "dataFiles": [], - "idx": 687 + "idx": 866 }, { "filingDate": "2021-03-15", @@ -14101,7 +15712,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.03, 2.03, 3.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421002757/minm_8k.htm", "dataFiles": [], - "idx": 688 + "idx": 867 }, { "filingDate": "2021-03-15", @@ -14110,7 +15721,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.03, 2.03, 3.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421002757/minm_ex101.htm", "dataFiles": [], - "idx": 689 + "idx": 868 }, { "filingDate": "2021-03-09", @@ -14119,7 +15730,7 @@ export const fileList = [ "formDescription": "Current report, items 2.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421002478/minm_8k.htm", "dataFiles": [], - "idx": 690 + "idx": 869 }, { "filingDate": "2021-03-09", @@ -14128,7 +15739,7 @@ export const fileList = [ "formDescription": "Current report, items 2.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421002478/minm_ex991.htm", "dataFiles": [], - "idx": 691 + "idx": 870 }, { "filingDate": "2021-02-17", @@ -14137,7 +15748,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, item 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421001779/minm_8ka.htm", "dataFiles": [], - "idx": 692 + "idx": 871 }, { "filingDate": "2021-02-17", @@ -14146,7 +15757,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, item 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421001779/minm_ex231.htm", "dataFiles": [], - "idx": 693 + "idx": 872 }, { "filingDate": "2021-02-17", @@ -14155,7 +15766,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, item 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421001779/minm_ex991.htm", "dataFiles": [], - "idx": 694 + "idx": 873 }, { "filingDate": "2021-02-17", @@ -14164,7 +15775,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, item 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421001779/minim_ex992.htm", "dataFiles": [], - "idx": 695 + "idx": 874 }, { "filingDate": "2021-02-17", @@ -14173,7 +15784,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, item 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421001779/minm_ex993.htm", "dataFiles": [], - "idx": 696 + "idx": 875 }, { "filingDate": "2021-02-08", @@ -14182,7 +15793,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 3.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421001266/minm_8k.htm", "dataFiles": [], - "idx": 697 + "idx": 876 }, { "filingDate": "2021-02-08", @@ -14191,7 +15802,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 3.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421001266/minm_ex101.htm", "dataFiles": [], - "idx": 698 + "idx": 877 }, { "filingDate": "2021-02-08", @@ -14200,7 +15811,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 3.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421001266/please_docusignzoomamend000.jpg", "dataFiles": [], - "idx": 699 + "idx": 878 }, { "filingDate": "2021-01-04", @@ -14209,7 +15820,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495421000063/minm_8ka.htm", "dataFiles": [], - "idx": 700 + "idx": 879 }, { "filingDate": "2020-12-31", @@ -14218,7 +15829,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420014089/zmtp_8k.htm", "dataFiles": [], - "idx": 701 + "idx": 880 }, { "filingDate": "2020-12-31", @@ -14227,7 +15838,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420014089/zmtp_ex10-1.htm", "dataFiles": [], - "idx": 702 + "idx": 881 }, { "filingDate": "2020-12-18", @@ -14236,7 +15847,169 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 2.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013714/minm_8ka.htm", "dataFiles": [], - "idx": 703 + "idx": 882 + }, + { + "filingDate": "2020-12-15", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013552/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 883 + }, + { + "filingDate": "2020-12-15", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013552/section16.xml", + "dataFiles": [], + "idx": 884 + }, + { + "filingDate": "2020-12-15", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013552/poa_hitchcock.htm", + "dataFiles": [], + "idx": 885 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013521/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 886 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013521/section16.xml", + "dataFiles": [], + "idx": 887 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013521/poa_doherty.htm", + "dataFiles": [], + "idx": 888 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013518/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 889 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013518/section16.xml", + "dataFiles": [], + "idx": 890 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013518/poa_howe.htm", + "dataFiles": [], + "idx": 891 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013514/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 892 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013514/section16.xml", + "dataFiles": [], + "idx": 893 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013514/poa_hayward.htm", + "dataFiles": [], + "idx": 894 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013513/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 895 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013513/section16.xml", + "dataFiles": [], + "idx": 896 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013513/poa_aronoff.htm", + "dataFiles": [], + "idx": 897 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013510/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 898 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013510/section16.xml", + "dataFiles": [], + "idx": 899 + }, + { + "filingDate": "2020-12-14", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013510/poa_chynoweth.htm", + "dataFiles": [], + "idx": 900 }, { "filingDate": "2020-12-11", @@ -14245,7 +16018,7 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06b", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013429/xslFormDX01/primary_doc.xml", "dataFiles": [], - "idx": 704 + "idx": 901 }, { "filingDate": "2020-12-11", @@ -14254,7 +16027,52 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06b", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013429/primary_doc.xml", "dataFiles": [], - "idx": 705 + "idx": 902 + }, + { + "filingDate": "2020-12-10", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1197847/000165495420013365/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 903 + }, + { + "filingDate": "2020-12-10", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1197847/000165495420013365/section16.xml", + "dataFiles": [], + "idx": 904 + }, + { + "filingDate": "2020-12-10", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1197847/000165495420013365/zmtp_ex24.htm", + "dataFiles": [], + "idx": 905 + }, + { + "filingDate": "2020-12-08", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013289/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 906 + }, + { + "filingDate": "2020-12-08", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013289/section16.xml", + "dataFiles": [], + "idx": 907 }, { "filingDate": "2020-12-08", @@ -14263,7 +16081,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120027594/brhc10017705_sc13da.htm", "dataFiles": [], - "idx": 706 + "idx": 908 }, { "filingDate": "2020-12-07", @@ -14272,7 +16090,7 @@ export const fileList = [ "formDescription": "Current report, items 2.01, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013238/ztmp_8k.htm", "dataFiles": [], - "idx": 707 + "idx": 909 }, { "filingDate": "2020-12-07", @@ -14281,7 +16099,7 @@ export const fileList = [ "formDescription": "Current report, items 2.01, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420013238/zmtp_ex991.htm", "dataFiles": [], - "idx": 708 + "idx": 910 }, { "filingDate": "2020-11-20", @@ -14290,7 +16108,7 @@ export const fileList = [ "formDescription": "Current report, items 1.02 and 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012758/zmtp_8k.htm", "dataFiles": [], - "idx": 709 + "idx": 911 }, { "filingDate": "2020-11-16", @@ -14299,7 +16117,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120025616/brhc10017009_sc13da.htm", "dataFiles": [], - "idx": 710 + "idx": 912 }, { "filingDate": "2020-11-16", @@ -14308,7 +16126,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120025616/brhc10017009_ex99-3.htm", "dataFiles": [], - "idx": 711 + "idx": 913 }, { "filingDate": "2020-11-16", @@ -14317,7 +16135,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012384/zmtp_10qa.htm", "dataFiles": [], - "idx": 712 + "idx": 914 }, { "filingDate": "2020-11-16", @@ -14326,7 +16144,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012384/zmtp_ex311.htm", "dataFiles": [], - "idx": 713 + "idx": 915 }, { "filingDate": "2020-11-16", @@ -14335,7 +16153,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012384/zmtp_ex312.htm", "dataFiles": [], - "idx": 714 + "idx": 916 }, { "filingDate": "2020-11-13", @@ -14369,7 +16187,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012303/zmtp-20200930_pre.xml" } ], - "idx": 715 + "idx": 917 }, { "filingDate": "2020-11-13", @@ -14403,7 +16221,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012303/zmtp-20200930_pre.xml" } ], - "idx": 716 + "idx": 918 }, { "filingDate": "2020-11-13", @@ -14437,7 +16255,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012303/zmtp-20200930_pre.xml" } ], - "idx": 717 + "idx": 919 }, { "filingDate": "2020-11-13", @@ -14471,7 +16289,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012303/zmtp-20200930_pre.xml" } ], - "idx": 718 + "idx": 920 }, { "filingDate": "2020-11-13", @@ -14505,7 +16323,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012303/zmtp-20200930_pre.xml" } ], - "idx": 719 + "idx": 921 }, { "filingDate": "2020-11-13", @@ -14514,7 +16332,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012296/zmtp_8k.htm", "dataFiles": [], - "idx": 720 + "idx": 922 }, { "filingDate": "2020-11-13", @@ -14523,7 +16341,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012296/zmtp_ex10-1.htm", "dataFiles": [], - "idx": 721 + "idx": 923 }, { "filingDate": "2020-11-13", @@ -14532,7 +16350,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012296/zmtp_ex991.htm", "dataFiles": [], - "idx": 722 + "idx": 924 }, { "filingDate": "2020-11-13", @@ -14541,7 +16359,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012293/zmtp_8k.htm", "dataFiles": [], - "idx": 723 + "idx": 925 }, { "filingDate": "2020-11-13", @@ -14550,7 +16368,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420012293/zmtp_ex991.htm", "dataFiles": [], - "idx": 724 + "idx": 926 }, { "filingDate": "2020-11-06", @@ -14559,7 +16377,7 @@ export const fileList = [ "formDescription": "Current report, item 8.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011941/zmtp_8k.htm", "dataFiles": [], - "idx": 725 + "idx": 927 }, { "filingDate": "2020-10-14", @@ -14568,7 +16386,169 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420011125/zoom_13da.htm", "dataFiles": [], - "idx": 726 + "idx": 928 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000165495420011108/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 929 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000165495420011108/section16.xml", + "dataFiles": [], + "idx": 930 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011107/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 931 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011107/section16.xml", + "dataFiles": [], + "idx": 932 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011104/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 933 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011104/section16.xml", + "dataFiles": [], + "idx": 934 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420011101/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 935 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420011101/section16.xml", + "dataFiles": [], + "idx": 936 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011098/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 937 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011098/section16.xml", + "dataFiles": [], + "idx": 938 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495420011090/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 939 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495420011090/section16.xml", + "dataFiles": [], + "idx": 940 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000165495420011088/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 941 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000165495420011088/section16.xml", + "dataFiles": [], + "idx": 942 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011083/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 943 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011083/section16.xml", + "dataFiles": [], + "idx": 944 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011082/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 945 + }, + { + "filingDate": "2020-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011082/section16.xml", + "dataFiles": [], + "idx": 946 }, { "filingDate": "2020-10-13", @@ -14577,7 +16557,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 5.01, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011078/zmtp_8k.htm", "dataFiles": [], - "idx": 727 + "idx": 947 }, { "filingDate": "2020-10-13", @@ -14586,7 +16566,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 5.01, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011078/zmtp_ex991.htm", "dataFiles": [], - "idx": 728 + "idx": 948 }, { "filingDate": "2020-10-13", @@ -14595,7 +16575,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 5.01, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420011078/zmtp_ex992.htm", "dataFiles": [], - "idx": 729 + "idx": 949 }, { "filingDate": "2020-10-13", @@ -14604,7 +16584,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120022874/brhc10015936_sc13da.htm", "dataFiles": [], - "idx": 730 + "idx": 950 }, { "filingDate": "2020-10-13", @@ -14613,7 +16593,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120022874/brhc10015936_ex99-2.htm", "dataFiles": [], - "idx": 731 + "idx": 951 }, { "filingDate": "2020-10-13", @@ -14622,7 +16602,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120022874/brhc10015936_ex99-3.htm", "dataFiles": [], - "idx": 732 + "idx": 952 }, { "filingDate": "2020-10-08", @@ -14631,7 +16611,7 @@ export const fileList = [ "formDescription": "Current report, item 8.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420010942/zmtp_8k.htm", "dataFiles": [], - "idx": 733 + "idx": 953 }, { "filingDate": "2020-09-30", @@ -14640,7 +16620,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120022003/brhc10015650_sc13da.htm", "dataFiles": [], - "idx": 734 + "idx": 954 }, { "filingDate": "2020-09-30", @@ -14649,7 +16629,61 @@ export const fileList = [ "formDescription": "Current report, item 8.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420010659/zmtp_8k.htm", "dataFiles": [], - "idx": 735 + "idx": 955 + }, + { + "filingDate": "2020-09-25", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420010458/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 956 + }, + { + "filingDate": "2020-09-25", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420010458/section16.xml", + "dataFiles": [], + "idx": 957 + }, + { + "filingDate": "2020-09-25", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420010457/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 958 + }, + { + "filingDate": "2020-09-25", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420010457/section16.xml", + "dataFiles": [], + "idx": 959 + }, + { + "filingDate": "2020-09-25", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420010456/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 960 + }, + { + "filingDate": "2020-09-25", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420010456/section16.xml", + "dataFiles": [], + "idx": 961 }, { "filingDate": "2020-09-25", @@ -14658,7 +16692,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420010446/fm_sc13d.htm", "dataFiles": [], - "idx": 736 + "idx": 962 }, { "filingDate": "2020-09-04", @@ -14667,7 +16701,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120019816/brhc10014935_sc13da.htm", "dataFiles": [], - "idx": 737 + "idx": 963 }, { "filingDate": "2020-09-02", @@ -14676,7 +16710,25 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009766/zmtp_8k.htm", "dataFiles": [], - "idx": 738 + "idx": 964 + }, + { + "filingDate": "2020-08-26", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465920098615/xslF345X03/tm2029456d1_form4.xml", + "dataFiles": [], + "idx": 965 + }, + { + "filingDate": "2020-08-26", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465920098615/tm2029456d1_form4.xml", + "dataFiles": [], + "idx": 966 }, { "filingDate": "2020-08-14", @@ -14710,7 +16762,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009105/zmtp-20200630_pre.xml" } ], - "idx": 739 + "idx": 967 }, { "filingDate": "2020-08-14", @@ -14744,7 +16796,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009105/zmtp-20200630_pre.xml" } ], - "idx": 740 + "idx": 968 }, { "filingDate": "2020-08-14", @@ -14778,7 +16830,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009105/zmtp-20200630_pre.xml" } ], - "idx": 741 + "idx": 969 }, { "filingDate": "2020-08-14", @@ -14812,7 +16864,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009105/zmtp-20200630_pre.xml" } ], - "idx": 742 + "idx": 970 }, { "filingDate": "2020-08-14", @@ -14846,7 +16898,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009105/zmtp-20200630_pre.xml" } ], - "idx": 743 + "idx": 971 }, { "filingDate": "2020-08-13", @@ -14880,7 +16932,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009074/zmtp-20200630_pre.xml" } ], - "idx": 744 + "idx": 972 }, { "filingDate": "2020-08-13", @@ -14914,7 +16966,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009074/zmtp-20200630_pre.xml" } ], - "idx": 745 + "idx": 973 }, { "filingDate": "2020-08-13", @@ -14948,7 +17000,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009074/zmtp-20200630_pre.xml" } ], - "idx": 746 + "idx": 974 }, { "filingDate": "2020-08-13", @@ -14982,7 +17034,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009074/zmtp-20200630_pre.xml" } ], - "idx": 747 + "idx": 975 }, { "filingDate": "2020-08-13", @@ -15016,7 +17068,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420009074/zmtp-20200630_pre.xml" } ], - "idx": 748 + "idx": 976 }, { "filingDate": "2020-08-11", @@ -15025,7 +17077,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420008880/zmtp_8k.htm", "dataFiles": [], - "idx": 749 + "idx": 977 }, { "filingDate": "2020-08-11", @@ -15034,7 +17086,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420008880/zmtp_ex991.htm", "dataFiles": [], - "idx": 750 + "idx": 978 }, { "filingDate": "2020-08-11", @@ -15043,7 +17095,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420008880/logo.jpg", "dataFiles": [], - "idx": 751 + "idx": 979 }, { "filingDate": "2020-08-10", @@ -15052,7 +17104,25 @@ export const fileList = [ "formDescription": "Current report, item 5.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420008721/zmtp_8k.htm", "dataFiles": [], - "idx": 752 + "idx": 980 + }, + { + "filingDate": "2020-08-05", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1169253/000091957420004833/xslF345X03/ownership.xml", + "dataFiles": [], + "idx": 981 + }, + { + "filingDate": "2020-08-05", + "form": "4", + "description": "Statement of changes in beneficial ownership of securities", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1169253/000091957420004833/ownership.xml", + "dataFiles": [], + "idx": 982 }, { "filingDate": "2020-08-05", @@ -15061,7 +17131,43 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1169253/000091957420004832/d8588909_13d-a.htm", "dataFiles": [], - "idx": 753 + "idx": 983 + }, + { + "filingDate": "2020-08-04", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120017499/xslF345X03/form4.xml", + "dataFiles": [], + "idx": 984 + }, + { + "filingDate": "2020-08-04", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120017499/form4.xml", + "dataFiles": [], + "idx": 985 + }, + { + "filingDate": "2020-08-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420008395/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 986 + }, + { + "filingDate": "2020-08-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420008395/section16.xml", + "dataFiles": [], + "idx": 987 }, { "filingDate": "2020-08-04", @@ -15070,7 +17176,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120017473/brhc10014021_sc13da.htm", "dataFiles": [], - "idx": 754 + "idx": 988 }, { "filingDate": "2020-08-04", @@ -15079,7 +17185,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120017473/brhc10014021_ex99-2.htm", "dataFiles": [], - "idx": 755 + "idx": 989 }, { "filingDate": "2020-08-03", @@ -15088,7 +17194,7 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420008330/zmtp_8k.htm", "dataFiles": [], - "idx": 756 + "idx": 990 }, { "filingDate": "2020-07-22", @@ -15097,7 +17203,7 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007914/zmtp_8k.htm", "dataFiles": [], - "idx": 757 + "idx": 991 }, { "filingDate": "2020-07-15", @@ -15106,7 +17212,151 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120016092/formsc13da.htm", "dataFiles": [], - "idx": 758 + "idx": 992 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007722/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 993 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007722/section16.xml", + "dataFiles": [], + "idx": 994 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000165495420007721/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 995 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000165495420007721/section16.xml", + "dataFiles": [], + "idx": 996 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007720/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 997 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007720/section16.xml", + "dataFiles": [], + "idx": 998 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007719/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 999 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007719/section16.xml", + "dataFiles": [], + "idx": 1000 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495420007718/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1001 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495420007718/section16.xml", + "dataFiles": [], + "idx": 1002 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420007717/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1003 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420007717/section16.xml", + "dataFiles": [], + "idx": 1004 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007716/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1005 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007716/section16.xml", + "dataFiles": [], + "idx": 1006 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007715/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1007 + }, + { + "filingDate": "2020-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007715/section16.xml", + "dataFiles": [], + "idx": 1008 }, { "filingDate": "2020-07-13", @@ -15115,7 +17365,43 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1169253/000091957420004577/d8575027_sc13d-a.htm", "dataFiles": [], - "idx": 759 + "idx": 1009 + }, + { + "filingDate": "2020-07-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007616/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1010 + }, + { + "filingDate": "2020-07-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007616/section16.xml", + "dataFiles": [], + "idx": 1011 + }, + { + "filingDate": "2020-07-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007615/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1012 + }, + { + "filingDate": "2020-07-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007615/section16.xml", + "dataFiles": [], + "idx": 1013 }, { "filingDate": "2020-07-09", @@ -15124,7 +17410,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007505/zmtp_defa14a.htm", "dataFiles": [], - "idx": 760 + "idx": 1014 }, { "filingDate": "2020-07-09", @@ -15133,7 +17419,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007505/logo.jpg", "dataFiles": [], - "idx": 761 + "idx": 1015 }, { "filingDate": "2020-07-09", @@ -15142,7 +17428,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007503/zmtp_8k.htm", "dataFiles": [], - "idx": 762 + "idx": 1016 }, { "filingDate": "2020-07-09", @@ -15151,7 +17437,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007503/zmtp_ex17.htm", "dataFiles": [], - "idx": 763 + "idx": 1017 }, { "filingDate": "2020-07-09", @@ -15160,7 +17446,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007503/zmtp_ex17000.jpg", "dataFiles": [], - "idx": 764 + "idx": 1018 }, { "filingDate": "2020-07-09", @@ -15169,7 +17455,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007482/zmtp_dea14a.htm", "dataFiles": [], - "idx": 765 + "idx": 1019 }, { "filingDate": "2020-07-09", @@ -15178,7 +17464,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007482/proxycard000.jpg", "dataFiles": [], - "idx": 766 + "idx": 1020 }, { "filingDate": "2020-07-09", @@ -15187,7 +17473,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420007482/proxycard001.jpg", "dataFiles": [], - "idx": 767 + "idx": 1021 }, { "filingDate": "2020-06-22 09:30:00", @@ -15196,7 +17482,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999520001497/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 768 + "idx": 1022 }, { "filingDate": "2020-06-22 09:30:00", @@ -15205,7 +17491,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999520001497/primary_doc.xml", "dataFiles": [], - "idx": 769 + "idx": 1023 }, { "filingDate": "2020-06-17", @@ -15214,7 +17500,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006745/filename1.htm", "dataFiles": [], - "idx": 770 + "idx": 1024 }, { "filingDate": "2020-06-17", @@ -15223,7 +17509,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000020005427/filename1.pdf", "dataFiles": [], - "idx": 771 + "idx": 1025 }, { "filingDate": "2020-06-17", @@ -15232,7 +17518,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000020005427/filename2.txt", "dataFiles": [], - "idx": 772 + "idx": 1026 }, { "filingDate": "2020-06-11", @@ -15241,7 +17527,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006527/zmtp_s1.htm", "dataFiles": [], - "idx": 773 + "idx": 1027 }, { "filingDate": "2020-06-11", @@ -15250,7 +17536,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006527/zmtp_ex51.htm", "dataFiles": [], - "idx": 774 + "idx": 1028 }, { "filingDate": "2020-06-11", @@ -15259,7 +17545,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006527/zmtp_ex231.htm", "dataFiles": [], - "idx": 775 + "idx": 1029 }, { "filingDate": "2020-06-11", @@ -15268,7 +17554,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006527/logo.jpg", "dataFiles": [], - "idx": 776 + "idx": 1030 }, { "filingDate": "2020-06-11", @@ -15277,7 +17563,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006527/zmtp_ex51000.jpg", "dataFiles": [], - "idx": 777 + "idx": 1031 }, { "filingDate": "2020-06-11", @@ -15286,7 +17572,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006527/zmtp_ex51001.jpg", "dataFiles": [], - "idx": 778 + "idx": 1032 }, { "filingDate": "2020-06-11", @@ -15295,7 +17581,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006527/zmtp_ex51002.jpg", "dataFiles": [], - "idx": 779 + "idx": 1033 }, { "filingDate": "2020-06-08", @@ -15304,7 +17590,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999520001363/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 780 + "idx": 1034 }, { "filingDate": "2020-06-08", @@ -15313,7 +17599,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999520001363/primary_doc.xml", "dataFiles": [], - "idx": 781 + "idx": 1035 }, { "filingDate": "2020-06-04", @@ -15322,7 +17608,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006306/zmtp_def14a.htm", "dataFiles": [], - "idx": 782 + "idx": 1036 }, { "filingDate": "2020-06-04", @@ -15331,7 +17617,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006306/img001.jpg", "dataFiles": [], - "idx": 783 + "idx": 1037 }, { "filingDate": "2020-06-04", @@ -15340,7 +17626,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006306/img002.jpg", "dataFiles": [], - "idx": 784 + "idx": 1038 }, { "filingDate": "2020-06-01", @@ -15349,7 +17635,7 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006208/zmtp_s1.htm", "dataFiles": [], - "idx": 785 + "idx": 1039 }, { "filingDate": "2020-06-01", @@ -15358,7 +17644,7 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006208/zmtp_ex51.htm", "dataFiles": [], - "idx": 786 + "idx": 1040 }, { "filingDate": "2020-06-01", @@ -15367,7 +17653,7 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006208/zmtp_ex231.htm", "dataFiles": [], - "idx": 787 + "idx": 1041 }, { "filingDate": "2020-06-01", @@ -15376,7 +17662,7 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006208/zmtp_ex51000.jpg", "dataFiles": [], - "idx": 788 + "idx": 1042 }, { "filingDate": "2020-06-01", @@ -15385,7 +17671,7 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006208/zmtp_ex51001.jpg", "dataFiles": [], - "idx": 789 + "idx": 1043 }, { "filingDate": "2020-06-01", @@ -15394,7 +17680,7 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006208/zmtp_ex51002.jpg", "dataFiles": [], - "idx": 790 + "idx": 1044 }, { "filingDate": "2020-06-01", @@ -15403,7 +17689,52 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006208/zoom.jpg", "dataFiles": [], - "idx": 791 + "idx": 1045 + }, + { + "filingDate": "2020-05-29", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006135/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 1046 + }, + { + "filingDate": "2020-05-29", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006135/section16.xml", + "dataFiles": [], + "idx": 1047 + }, + { + "filingDate": "2020-05-29", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006113/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 1048 + }, + { + "filingDate": "2020-05-29", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006113/section16.xml", + "dataFiles": [], + "idx": 1049 + }, + { + "filingDate": "2020-05-29", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006113/zmtp_poa.htm", + "dataFiles": [], + "idx": 1050 }, { "filingDate": "2020-05-29", @@ -15412,7 +17743,7 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06c", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006082/xslFormDX01/primary_doc.xml", "dataFiles": [], - "idx": 792 + "idx": 1051 }, { "filingDate": "2020-05-29", @@ -15421,7 +17752,7 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06c", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006082/primary_doc.xml", "dataFiles": [], - "idx": 793 + "idx": 1052 }, { "filingDate": "2020-05-29", @@ -15430,7 +17761,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006080/zmtp_sd.htm", "dataFiles": [], - "idx": 794 + "idx": 1053 }, { "filingDate": "2020-05-29", @@ -15439,7 +17770,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006080/zmtp_ex101.htm", "dataFiles": [], - "idx": 795 + "idx": 1054 }, { "filingDate": "2020-05-29", @@ -15448,7 +17779,142 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006080/zmtp_ex101000.jpg", "dataFiles": [], - "idx": 796 + "idx": 1055 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006058/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1056 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006058/section16.xml", + "dataFiles": [], + "idx": 1057 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "POWER OF ATTORNEY", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006058/zmtp_poa.htm", + "dataFiles": [], + "idx": 1058 + }, + { + "filingDate": "2020-05-28", + "form": "3/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006056/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 1059 + }, + { + "filingDate": "2020-05-28", + "form": "3/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006056/section16.xml", + "dataFiles": [], + "idx": 1060 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420006054/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1061 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420006054/section16.xml", + "dataFiles": [], + "idx": 1062 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "POWER OF ATTORNEY", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420006054/zmtp_poa.htm", + "dataFiles": [], + "idx": 1063 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006052/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1064 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006052/section16.xml", + "dataFiles": [], + "idx": 1065 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "POWER OF ATTORNEY", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006052/zmtp_poa.htm", + "dataFiles": [], + "idx": 1066 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120012630/xslF345X03/form4.xml", + "dataFiles": [], + "idx": 1067 + }, + { + "filingDate": "2020-05-28", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120012630/form4.xml", + "dataFiles": [], + "idx": 1068 + }, + { + "filingDate": "2020-05-27", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465920066459/xslF345X02/tm2021042-2_3.xml", + "dataFiles": [], + "idx": 1069 + }, + { + "filingDate": "2020-05-27", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465920066459/tm2021042-2_3.xml", + "dataFiles": [], + "idx": 1070 }, { "filingDate": "2020-05-27", @@ -15457,7 +17923,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465920066458/tm2021042-1_sc13d.htm", "dataFiles": [], - "idx": 797 + "idx": 1071 }, { "filingDate": "2020-05-27", @@ -15466,7 +17932,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120012545/formsc13da.htm", "dataFiles": [], - "idx": 798 + "idx": 1072 }, { "filingDate": "2020-05-27", @@ -15475,7 +17941,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006002/zmtp_8k.htm", "dataFiles": [], - "idx": 799 + "idx": 1073 }, { "filingDate": "2020-05-27", @@ -15484,7 +17950,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006002/zmtp_ex101.htm", "dataFiles": [], - "idx": 800 + "idx": 1074 }, { "filingDate": "2020-05-27", @@ -15493,7 +17959,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006002/zmtp_ex991.htm", "dataFiles": [], - "idx": 801 + "idx": 1075 }, { "filingDate": "2020-05-27", @@ -15502,7 +17968,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420006002/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 802 + "idx": 1076 }, { "filingDate": "2020-05-21", @@ -15511,7 +17977,7 @@ export const fileList = [ "formDescription": "Current report, items 1.02, 5.02, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005881/zmtp_8k.htm", "dataFiles": [], - "idx": 803 + "idx": 1077 }, { "filingDate": "2020-05-21", @@ -15520,7 +17986,7 @@ export const fileList = [ "formDescription": "Current report, items 1.02, 5.02, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005881/zmtp_ex101.htm", "dataFiles": [], - "idx": 804 + "idx": 1078 }, { "filingDate": "2020-05-15", @@ -15554,7 +18020,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005627/zmtp-20200331_pre.xml" } ], - "idx": 805 + "idx": 1079 }, { "filingDate": "2020-05-15", @@ -15588,7 +18054,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005627/zmtp-20200331_pre.xml" } ], - "idx": 806 + "idx": 1080 }, { "filingDate": "2020-05-15", @@ -15622,7 +18088,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005627/zmtp-20200331_pre.xml" } ], - "idx": 807 + "idx": 1081 }, { "filingDate": "2020-05-15", @@ -15656,7 +18122,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005627/zmtp-20200331_pre.xml" } ], - "idx": 808 + "idx": 1082 }, { "filingDate": "2020-05-15", @@ -15690,7 +18156,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005627/zmtp-20200331_pre.xml" } ], - "idx": 809 + "idx": 1083 }, { "filingDate": "2020-05-15", @@ -15724,7 +18190,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005627/zmtp-20200331_pre.xml" } ], - "idx": 810 + "idx": 1084 }, { "filingDate": "2020-05-15", @@ -15758,7 +18224,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005627/zmtp-20200331_pre.xml" } ], - "idx": 811 + "idx": 1085 }, { "filingDate": "2020-05-13", @@ -15767,7 +18233,7 @@ export const fileList = [ "formDescription": "Current report, items 5.03 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005385/zmtp_8k.htm", "dataFiles": [], - "idx": 812 + "idx": 1086 }, { "filingDate": "2020-05-13", @@ -15776,7 +18242,7 @@ export const fileList = [ "formDescription": "Current report, items 5.03 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005385/zmtp_ex31.htm", "dataFiles": [], - "idx": 813 + "idx": 1087 }, { "filingDate": "2020-05-12", @@ -15785,7 +18251,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005185/zmtp_8k.htm", "dataFiles": [], - "idx": 814 + "idx": 1088 }, { "filingDate": "2020-05-12", @@ -15794,7 +18260,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005185/zmtp_ex991.htm", "dataFiles": [], - "idx": 815 + "idx": 1089 }, { "filingDate": "2020-05-12", @@ -15803,7 +18269,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005185/zmtp_ex992.htm", "dataFiles": [], - "idx": 816 + "idx": 1090 }, { "filingDate": "2020-05-12", @@ -15812,7 +18278,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005185/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 817 + "idx": 1091 }, { "filingDate": "2020-05-12", @@ -15821,7 +18287,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420005185/zmtp_ex992000.jpg", "dataFiles": [], - "idx": 818 + "idx": 1092 }, { "filingDate": "2020-04-29", @@ -15830,7 +18296,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004635/zmtp_10ka.htm", "dataFiles": [], - "idx": 819 + "idx": 1093 }, { "filingDate": "2020-04-29", @@ -15839,7 +18305,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004635/zmtp_ex1019.htm", "dataFiles": [], - "idx": 820 + "idx": 1094 }, { "filingDate": "2020-04-29", @@ -15848,7 +18314,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004635/zmtp_ex1020.htm", "dataFiles": [], - "idx": 821 + "idx": 1095 }, { "filingDate": "2020-04-29", @@ -15857,7 +18323,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004635/zmtp_ex313.htm", "dataFiles": [], - "idx": 822 + "idx": 1096 }, { "filingDate": "2020-04-29", @@ -15866,7 +18332,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004635/zmtp_ex314.htm", "dataFiles": [], - "idx": 823 + "idx": 1097 }, { "filingDate": "2020-04-29", @@ -15875,7 +18341,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004635/zmtp_ex323.htm", "dataFiles": [], - "idx": 824 + "idx": 1098 }, { "filingDate": "2020-04-29", @@ -15884,7 +18350,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004635/zmtp_ex324.htm", "dataFiles": [], - "idx": 825 + "idx": 1099 }, { "filingDate": "2020-04-17", @@ -15893,7 +18359,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120009164/formsc13da.htm", "dataFiles": [], - "idx": 826 + "idx": 1100 }, { "filingDate": "2020-04-17", @@ -15902,7 +18368,7 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120009161/form8k.htm", "dataFiles": [], - "idx": 827 + "idx": 1101 }, { "filingDate": "2020-04-15", @@ -15911,7 +18377,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004122/zmtp_s8.htm", "dataFiles": [], - "idx": 828 + "idx": 1102 }, { "filingDate": "2020-04-15", @@ -15920,7 +18386,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004122/zmtp_ex51.htm", "dataFiles": [], - "idx": 829 + "idx": 1103 }, { "filingDate": "2020-04-15", @@ -15929,7 +18395,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004122/zmtp_ex231.htm", "dataFiles": [], - "idx": 830 + "idx": 1104 }, { "filingDate": "2020-04-15", @@ -15963,7 +18429,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp-20191231_pre.xml" } ], - "idx": 831 + "idx": 1105 }, { "filingDate": "2020-04-15", @@ -15997,7 +18463,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp-20191231_pre.xml" } ], - "idx": 832 + "idx": 1106 }, { "filingDate": "2020-04-15", @@ -16031,7 +18497,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp-20191231_pre.xml" } ], - "idx": 833 + "idx": 1107 }, { "filingDate": "2020-04-15", @@ -16065,7 +18531,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp-20191231_pre.xml" } ], - "idx": 834 + "idx": 1108 }, { "filingDate": "2020-04-15", @@ -16099,7 +18565,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp-20191231_pre.xml" } ], - "idx": 835 + "idx": 1109 }, { "filingDate": "2020-04-15", @@ -16133,7 +18599,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp-20191231_pre.xml" } ], - "idx": 836 + "idx": 1110 }, { "filingDate": "2020-04-15", @@ -16167,7 +18633,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp-20191231_pre.xml" } ], - "idx": 837 + "idx": 1111 }, { "filingDate": "2020-04-15", @@ -16201,7 +18667,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420004069/zmtp-20191231_pre.xml" } ], - "idx": 838 + "idx": 1112 }, { "filingDate": "2020-04-08", @@ -16210,7 +18676,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120008326/formsc13da.htm", "dataFiles": [], - "idx": 839 + "idx": 1113 }, { "filingDate": "2020-03-30", @@ -16219,7 +18685,160 @@ export const fileList = [ "formDescription": "Notification of inability to timely file Form 10-K 405, 10-K, 10-KSB 405, 10-KSB, 10-KT, or 10-KT405", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420003508/zmtp_nt10k.htm", "dataFiles": [], - "idx": 840 + "idx": 1114 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495420002907/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1115 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495420002907/section16.xml", + "dataFiles": [], + "idx": 1116 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002906/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1117 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002906/section16.xml", + "dataFiles": [], + "idx": 1118 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002905/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1119 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002905/section16.xml", + "dataFiles": [], + "idx": 1120 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000165495420002904/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1121 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000165495420002904/section16.xml", + "dataFiles": [], + "idx": 1122 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002903/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1123 + }, + { + "filingDate": "2020-03-20", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002903/section16.xml", + "dataFiles": [], + "idx": 1124 + }, + { + "filingDate": "2020-03-19", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120006332/xslF345X03/form4.xml", + "dataFiles": [], + "idx": 1125 + }, + { + "filingDate": "2020-03-19", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120006332/form4.xml", + "dataFiles": [], + "idx": 1126 + }, + { + "filingDate": "2020-03-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002790/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1127 + }, + { + "filingDate": "2020-03-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002790/section16.xml", + "dataFiles": [], + "idx": 1128 + }, + { + "filingDate": "2020-03-17", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002789/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 1129 + }, + { + "filingDate": "2020-03-17", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002789/section16.xml", + "dataFiles": [], + "idx": 1130 + }, + { + "filingDate": "2020-03-17", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002789/zmtp_ex24.htm", + "dataFiles": [], + "idx": 1131 }, { "filingDate": "2020-03-09", @@ -16228,7 +18847,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002348/zmtp_8k.htm", "dataFiles": [], - "idx": 841 + "idx": 1132 }, { "filingDate": "2020-03-09", @@ -16237,7 +18856,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002348/zmtp_ex101.htm", "dataFiles": [], - "idx": 842 + "idx": 1133 }, { "filingDate": "2020-03-09", @@ -16246,7 +18865,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002348/zmtp_ex991.htm", "dataFiles": [], - "idx": 843 + "idx": 1134 }, { "filingDate": "2020-03-09", @@ -16255,7 +18874,25 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002348/zoom.jpg", "dataFiles": [], - "idx": 844 + "idx": 1135 + }, + { + "filingDate": "2020-03-03", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420002177/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1136 + }, + { + "filingDate": "2020-03-03", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420002177/section16.xml", + "dataFiles": [], + "idx": 1137 }, { "filingDate": "2020-03-02", @@ -16264,7 +18901,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002151/zmtp_8k.htm", "dataFiles": [], - "idx": 845 + "idx": 1138 }, { "filingDate": "2020-03-02", @@ -16273,7 +18910,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002151/zmtp_ex991.htm", "dataFiles": [], - "idx": 846 + "idx": 1139 }, { "filingDate": "2020-03-02", @@ -16282,7 +18919,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420002151/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 847 + "idx": 1140 }, { "filingDate": "2020-02-14", @@ -16291,7 +18928,61 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420001588/zmtp_sc13g.htm", "dataFiles": [], - "idx": 848 + "idx": 1141 + }, + { + "filingDate": "2020-01-28", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420000804/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1142 + }, + { + "filingDate": "2020-01-28", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420000804/section16.xml", + "dataFiles": [], + "idx": 1143 + }, + { + "filingDate": "2020-01-28", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495420000798/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1144 + }, + { + "filingDate": "2020-01-28", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495420000798/section16.xml", + "dataFiles": [], + "idx": 1145 + }, + { + "filingDate": "2020-01-28", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420000796/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1146 + }, + { + "filingDate": "2020-01-28", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495420000796/section16.xml", + "dataFiles": [], + "idx": 1147 }, { "filingDate": "2020-01-21", @@ -16300,7 +18991,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120001127/formsc13da.htm", "dataFiles": [], - "idx": 849 + "idx": 1148 }, { "filingDate": "2020-01-21", @@ -16309,7 +19000,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120001127/ex99_1.htm", "dataFiles": [], - "idx": 850 + "idx": 1149 }, { "filingDate": "2020-01-21", @@ -16318,7 +19009,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420000595/zmtp_8k.htm", "dataFiles": [], - "idx": 851 + "idx": 1150 }, { "filingDate": "2020-01-21", @@ -16327,7 +19018,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420000595/zmtp_ex101.htm", "dataFiles": [], - "idx": 852 + "idx": 1151 }, { "filingDate": "2020-01-21", @@ -16336,7 +19027,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420000595/zmtp_ex991.htm", "dataFiles": [], - "idx": 853 + "idx": 1152 }, { "filingDate": "2020-01-21", @@ -16345,7 +19036,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420000595/ex101.jpg", "dataFiles": [], - "idx": 854 + "idx": 1153 }, { "filingDate": "2020-01-21", @@ -16354,7 +19045,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495420000595/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 855 + "idx": 1154 }, { "filingDate": "2020-01-15", @@ -16363,7 +19054,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120000821/formsc13da.htm", "dataFiles": [], - "idx": 856 + "idx": 1155 }, { "filingDate": "2020-01-15", @@ -16372,7 +19063,25 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120000821/ex99_1.htm", "dataFiles": [], - "idx": 857 + "idx": 1156 + }, + { + "filingDate": "2020-01-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120000725/xslF345X03/form4.xml", + "dataFiles": [], + "idx": 1157 + }, + { + "filingDate": "2020-01-13", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114036120000725/form4.xml", + "dataFiles": [], + "idx": 1158 }, { "filingDate": "2019-11-14", @@ -16406,7 +19115,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419012967/zmtp-20190930_pre.xml" } ], - "idx": 858 + "idx": 1159 }, { "filingDate": "2019-11-14", @@ -16440,7 +19149,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419012967/zmtp-20190930_pre.xml" } ], - "idx": 859 + "idx": 1160 }, { "filingDate": "2019-11-14", @@ -16474,7 +19183,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419012967/zmtp-20190930_pre.xml" } ], - "idx": 860 + "idx": 1161 }, { "filingDate": "2019-11-04", @@ -16483,7 +19192,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419012337/zmtp_8k.htm", "dataFiles": [], - "idx": 861 + "idx": 1162 }, { "filingDate": "2019-11-04", @@ -16492,7 +19201,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419012337/zmtp_ex991.htm", "dataFiles": [], - "idx": 862 + "idx": 1163 }, { "filingDate": "2019-11-04", @@ -16501,7 +19210,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419012337/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 863 + "idx": 1164 }, { "filingDate": "2019-10-21", @@ -16510,7 +19219,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465919055316/tm1920688-1_sc13da.htm", "dataFiles": [], - "idx": 864 + "idx": 1165 }, { "filingDate": "2019-10-21", @@ -16519,7 +19228,7 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465919055316/tm1920688-1_ex991.htm", "dataFiles": [], - "idx": 865 + "idx": 1166 }, { "filingDate": "2019-10-21", @@ -16528,7 +19237,25 @@ export const fileList = [ "formDescription": "[Amend] General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000110465919055316/tm1920688-1_ex992.htm", "dataFiles": [], - "idx": 866 + "idx": 1167 + }, + { + "filingDate": "2019-09-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495419010337/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1168 + }, + { + "filingDate": "2019-09-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495419010337/section16.xml", + "dataFiles": [], + "idx": 1169 }, { "filingDate": "2019-08-14", @@ -16562,7 +19289,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419009545/zmtp-20190630_pre.xml" } ], - "idx": 867 + "idx": 1170 }, { "filingDate": "2019-08-14", @@ -16596,7 +19323,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419009545/zmtp-20190630_pre.xml" } ], - "idx": 868 + "idx": 1171 }, { "filingDate": "2019-08-14", @@ -16630,7 +19357,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419009545/zmtp-20190630_pre.xml" } ], - "idx": 869 + "idx": 1172 }, { "filingDate": "2019-07-31", @@ -16639,7 +19366,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008673/zmtp_8k.htm", "dataFiles": [], - "idx": 870 + "idx": 1173 }, { "filingDate": "2019-07-31", @@ -16648,7 +19375,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008673/zmtp_ex991.htm", "dataFiles": [], - "idx": 871 + "idx": 1174 }, { "filingDate": "2019-07-31", @@ -16657,7 +19384,25 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008673/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 872 + "idx": 1175 + }, + { + "filingDate": "2019-07-30", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419036586/xslF345X03/tv526225_4.xml", + "dataFiles": [], + "idx": 1176 + }, + { + "filingDate": "2019-07-30", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419036586/tv526225_4.xml", + "dataFiles": [], + "idx": 1177 }, { "filingDate": "2019-07-30", @@ -16666,7 +19411,7 @@ export const fileList = [ "formDescription": "Current report, items 5.03 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008606/zmtp_8k.htm", "dataFiles": [], - "idx": 873 + "idx": 1178 }, { "filingDate": "2019-07-30", @@ -16675,7 +19420,178 @@ export const fileList = [ "formDescription": "Current report, items 5.03 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008606/zmtp_ex31.htm", "dataFiles": [], - "idx": 874 + "idx": 1179 + }, + { + "filingDate": "2019-07-29", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419036478/xslF345X03/tv526156_4.xml", + "dataFiles": [], + "idx": 1180 + }, + { + "filingDate": "2019-07-29", + "form": "4", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419036478/tv526156_4.xml", + "dataFiles": [], + "idx": 1181 + }, + { + "filingDate": "2019-07-26", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008552/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1182 + }, + { + "filingDate": "2019-07-26", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008552/section16.xml", + "dataFiles": [], + "idx": 1183 + }, + { + "filingDate": "2019-07-25", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008498/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1184 + }, + { + "filingDate": "2019-07-25", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008498/section16.xml", + "dataFiles": [], + "idx": 1185 + }, + { + "filingDate": "2019-07-25", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008496/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 1186 + }, + { + "filingDate": "2019-07-25", + "form": "3", + "description": "FORM 3", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008496/section16.xml", + "dataFiles": [], + "idx": 1187 + }, + { + "filingDate": "2019-07-25", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008496/zmtp_ex241.htm", + "dataFiles": [], + "idx": 1188 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008210/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1189 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008210/section16.xml", + "dataFiles": [], + "idx": 1190 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008208/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1191 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008208/section16.xml", + "dataFiles": [], + "idx": 1192 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495419008206/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1193 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000165495419008206/section16.xml", + "dataFiles": [], + "idx": 1194 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000165495419008204/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1195 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000165495419008204/section16.xml", + "dataFiles": [], + "idx": 1196 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008197/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1197 + }, + { + "filingDate": "2019-07-12", + "form": "4", + "description": "FORM 4", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008197/section16.xml", + "dataFiles": [], + "idx": 1198 }, { "filingDate": "2019-07-12", @@ -16684,7 +19600,34 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008195/zmtp_8k.htm", "dataFiles": [], - "idx": 875 + "idx": 1199 + }, + { + "filingDate": "2019-07-12", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008193/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 1200 + }, + { + "filingDate": "2019-07-12", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008193/section16.xml", + "dataFiles": [], + "idx": 1201 + }, + { + "filingDate": "2019-07-12", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419008193/exhibit241.htm", + "dataFiles": [], + "idx": 1202 }, { "filingDate": "2019-06-17", @@ -16693,7 +19636,7 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(3)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007377/zmtp_424b3.htm", "dataFiles": [], - "idx": 876 + "idx": 1203 }, { "filingDate": "2019-06-17", @@ -16702,7 +19645,7 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(3)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007377/zmtp_s1000.jpg", "dataFiles": [], - "idx": 877 + "idx": 1204 }, { "filingDate": "2019-06-14 16:30:00", @@ -16711,7 +19654,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999519001359/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 878 + "idx": 1205 }, { "filingDate": "2019-06-14 16:30:00", @@ -16720,7 +19663,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999519001359/primary_doc.xml", "dataFiles": [], - "idx": 879 + "idx": 1206 }, { "filingDate": "2019-06-12", @@ -16729,7 +19672,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007233/filename1.htm", "dataFiles": [], - "idx": 880 + "idx": 1207 }, { "filingDate": "2019-06-11", @@ -16738,7 +19681,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000019009692/filename1.pdf", "dataFiles": [], - "idx": 881 + "idx": 1208 }, { "filingDate": "2019-06-11", @@ -16747,7 +19690,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000019009692/filename2.txt", "dataFiles": [], - "idx": 882 + "idx": 1209 }, { "filingDate": "2019-06-07", @@ -16756,7 +19699,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007087/zmtp_s1.htm", "dataFiles": [], - "idx": 883 + "idx": 1210 }, { "filingDate": "2019-06-07", @@ -16765,7 +19708,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007087/zmtp_ex51.htm", "dataFiles": [], - "idx": 884 + "idx": 1211 }, { "filingDate": "2019-06-07", @@ -16774,7 +19717,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007087/zmtp_ex1019.htm", "dataFiles": [], - "idx": 885 + "idx": 1212 }, { "filingDate": "2019-06-07", @@ -16783,7 +19726,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007087/zmtp_ex231.htm", "dataFiles": [], - "idx": 886 + "idx": 1213 }, { "filingDate": "2019-06-07", @@ -16792,7 +19735,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007087/zmtp_ex1019000.jpg", "dataFiles": [], - "idx": 887 + "idx": 1214 }, { "filingDate": "2019-06-07", @@ -16801,7 +19744,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419007087/zmtp_s1000.jpg", "dataFiles": [], - "idx": 888 + "idx": 1215 }, { "filingDate": "2019-05-29", @@ -16810,7 +19753,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006644/zmtp_sd.htm", "dataFiles": [], - "idx": 889 + "idx": 1216 }, { "filingDate": "2019-05-29", @@ -16819,7 +19762,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006644/zmtp_ex101.htm", "dataFiles": [], - "idx": 890 + "idx": 1217 }, { "filingDate": "2019-05-29", @@ -16828,7 +19771,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006644/zmtp_ex101000.jpg", "dataFiles": [], - "idx": 891 + "idx": 1218 }, { "filingDate": "2019-05-29", @@ -16837,7 +19780,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006644/zmtp_ex101001.jpg", "dataFiles": [], - "idx": 892 + "idx": 1219 }, { "filingDate": "2019-05-28", @@ -16846,7 +19789,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006574/zmtp_defa14a.htm", "dataFiles": [], - "idx": 893 + "idx": 1220 }, { "filingDate": "2019-05-28", @@ -16855,7 +19798,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006574/notice000.jpg", "dataFiles": [], - "idx": 894 + "idx": 1221 }, { "filingDate": "2019-05-28", @@ -16864,7 +19807,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006574/notice001.jpg", "dataFiles": [], - "idx": 895 + "idx": 1222 }, { "filingDate": "2019-05-28", @@ -16873,7 +19816,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006573/zmtp_def14a.htm", "dataFiles": [], - "idx": 896 + "idx": 1223 }, { "filingDate": "2019-05-28", @@ -16882,7 +19825,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006573/zmtp_def14a000.jpg", "dataFiles": [], - "idx": 897 + "idx": 1224 }, { "filingDate": "2019-05-17", @@ -16891,7 +19834,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006266/zmtp_p14a.htm", "dataFiles": [], - "idx": 898 + "idx": 1225 }, { "filingDate": "2019-05-17", @@ -16900,7 +19843,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006266/zmtp_p14a000.jpg", "dataFiles": [], - "idx": 899 + "idx": 1226 }, { "filingDate": "2019-05-17", @@ -16909,7 +19852,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006266/zmtp_p14a001.jpg", "dataFiles": [], - "idx": 900 + "idx": 1227 }, { "filingDate": "2019-05-17", @@ -16918,7 +19861,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006266/zmtp_p14a002.jpg", "dataFiles": [], - "idx": 901 + "idx": 1228 }, { "filingDate": "2019-05-17", @@ -16927,7 +19870,7 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06b", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006263/xslFormDX01/primary_doc.xml", "dataFiles": [], - "idx": 902 + "idx": 1229 }, { "filingDate": "2019-05-17", @@ -16936,7 +19879,7 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06b", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006263/primary_doc.xml", "dataFiles": [], - "idx": 903 + "idx": 1230 }, { "filingDate": "2019-05-15", @@ -16970,7 +19913,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006124/zmtp-20190331_pre.xml" } ], - "idx": 904 + "idx": 1231 }, { "filingDate": "2019-05-15", @@ -17004,7 +19947,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006124/zmtp-20190331_pre.xml" } ], - "idx": 905 + "idx": 1232 }, { "filingDate": "2019-05-15", @@ -17038,7 +19981,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419006124/zmtp-20190331_pre.xml" } ], - "idx": 906 + "idx": 1233 }, { "filingDate": "2019-05-13", @@ -17047,7 +19990,7 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419025590/tv521322_sc13d.htm", "dataFiles": [], - "idx": 907 + "idx": 1234 }, { "filingDate": "2019-05-13", @@ -17056,7 +19999,52 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419025590/tv521322_ex99-1.htm", "dataFiles": [], - "idx": 908 + "idx": 1235 + }, + { + "filingDate": "2019-05-13", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419025588/xslF345X02/tv521334_3.xml", + "dataFiles": [], + "idx": 1236 + }, + { + "filingDate": "2019-05-13", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419025588/tv521334_3.xml", + "dataFiles": [], + "idx": 1237 + }, + { + "filingDate": "2019-05-13", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419025586/xslF345X02/tv521333_3.xml", + "dataFiles": [], + "idx": 1238 + }, + { + "filingDate": "2019-05-13", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419025586/tv521333_3.xml", + "dataFiles": [], + "idx": 1239 + }, + { + "filingDate": "2019-05-13", + "form": "3", + "description": "EXHIBIT 24", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000114420419025586/tv521333_ex24.htm", + "dataFiles": [], + "idx": 1240 }, { "filingDate": "2019-05-08", @@ -17065,7 +20053,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005458/zmtp_8k.htm", "dataFiles": [], - "idx": 909 + "idx": 1241 }, { "filingDate": "2019-05-08", @@ -17074,7 +20062,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005458/zmtp_ex991.htm", "dataFiles": [], - "idx": 910 + "idx": 1242 }, { "filingDate": "2019-05-08", @@ -17083,7 +20071,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005458/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 911 + "idx": 1243 }, { "filingDate": "2019-05-06", @@ -17092,7 +20080,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005330/zmtp_8k.htm", "dataFiles": [], - "idx": 912 + "idx": 1244 }, { "filingDate": "2019-05-06", @@ -17101,7 +20089,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005330/zmtp_ex101.htm", "dataFiles": [], - "idx": 913 + "idx": 1245 }, { "filingDate": "2019-05-06", @@ -17110,7 +20098,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005330/zmtp_ex991.htm", "dataFiles": [], - "idx": 914 + "idx": 1246 }, { "filingDate": "2019-05-06", @@ -17119,7 +20107,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005330/zmtp.jpg", "dataFiles": [], - "idx": 915 + "idx": 1247 }, { "filingDate": "2019-04-30", @@ -17128,7 +20116,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005031/zmtp_10ka.htm", "dataFiles": [], - "idx": 916 + "idx": 1248 }, { "filingDate": "2019-04-30", @@ -17137,7 +20125,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005031/zmtp_ex311.htm", "dataFiles": [], - "idx": 917 + "idx": 1249 }, { "filingDate": "2019-04-30", @@ -17146,7 +20134,7 @@ export const fileList = [ "formDescription": "[Amend] Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419005031/zmtp_ex321.htm", "dataFiles": [], - "idx": 918 + "idx": 1250 }, { "filingDate": "2019-04-01", @@ -17180,7 +20168,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp-20181231_pre.xml" } ], - "idx": 919 + "idx": 1251 }, { "filingDate": "2019-04-01", @@ -17214,7 +20202,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp-20181231_pre.xml" } ], - "idx": 920 + "idx": 1252 }, { "filingDate": "2019-04-01", @@ -17248,7 +20236,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp-20181231_pre.xml" } ], - "idx": 921 + "idx": 1253 }, { "filingDate": "2019-04-01", @@ -17282,7 +20270,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp-20181231_pre.xml" } ], - "idx": 922 + "idx": 1254 }, { "filingDate": "2019-04-01", @@ -17316,7 +20304,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419003878/zmtp-20181231_pre.xml" } ], - "idx": 923 + "idx": 1255 }, { "filingDate": "2019-02-28", @@ -17325,7 +20313,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419002099/zmtp_8k.htm", "dataFiles": [], - "idx": 924 + "idx": 1256 }, { "filingDate": "2019-02-28", @@ -17334,7 +20322,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419002099/zmtp_ex991.htm", "dataFiles": [], - "idx": 925 + "idx": 1257 }, { "filingDate": "2019-02-28", @@ -17343,7 +20331,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419002099/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 926 + "idx": 1258 }, { "filingDate": "2019-02-13", @@ -17352,7 +20340,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495419001444/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 927 + "idx": 1259 }, { "filingDate": "2019-01-28", @@ -17361,7 +20349,7 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495419000810/zmtp_8k.htm", "dataFiles": [], - "idx": 928 + "idx": 1260 }, { "filingDate": "2018-11-13", @@ -17395,7 +20383,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418012512/zmtp-20180930_pre.xml" } ], - "idx": 929 + "idx": 1261 }, { "filingDate": "2018-11-13", @@ -17429,7 +20417,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418012512/zmtp-20180930_pre.xml" } ], - "idx": 930 + "idx": 1262 }, { "filingDate": "2018-11-13", @@ -17463,7 +20451,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418012512/zmtp-20180930_pre.xml" } ], - "idx": 931 + "idx": 1263 }, { "filingDate": "2018-11-01", @@ -17472,7 +20460,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011865/zmtp_8k.htm", "dataFiles": [], - "idx": 932 + "idx": 1264 }, { "filingDate": "2018-11-01", @@ -17481,7 +20469,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011865/zmtp_ex991.htm", "dataFiles": [], - "idx": 933 + "idx": 1265 }, { "filingDate": "2018-11-01", @@ -17490,7 +20478,52 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011865/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 934 + "idx": 1266 + }, + { + "filingDate": "2018-11-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011838/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1267 + }, + { + "filingDate": "2018-11-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011838/section16.xml", + "dataFiles": [], + "idx": 1268 + }, + { + "filingDate": "2018-11-01", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011837/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 1269 + }, + { + "filingDate": "2018-11-01", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011837/section16.xml", + "dataFiles": [], + "idx": 1270 + }, + { + "filingDate": "2018-11-01", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011837/zmtp_ex24.htm", + "dataFiles": [], + "idx": 1271 }, { "filingDate": "2018-10-18", @@ -17499,7 +20532,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011324/zmtp_8k.htm", "dataFiles": [], - "idx": 935 + "idx": 1272 }, { "filingDate": "2018-10-18", @@ -17508,7 +20541,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011324/zmtp_ex101.htm", "dataFiles": [], - "idx": 936 + "idx": 1273 }, { "filingDate": "2018-10-18", @@ -17517,7 +20550,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011324/zmtp_ex991.htm", "dataFiles": [], - "idx": 937 + "idx": 1274 }, { "filingDate": "2018-10-18", @@ -17526,7 +20559,61 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418011324/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 938 + "idx": 1275 + }, + { + "filingDate": "2018-08-15", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000165495418009200/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1276 + }, + { + "filingDate": "2018-08-15", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000165495418009200/section16.xml", + "dataFiles": [], + "idx": 1277 + }, + { + "filingDate": "2018-08-15", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495418009199/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1278 + }, + { + "filingDate": "2018-08-15", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495418009199/section16.xml", + "dataFiles": [], + "idx": 1279 + }, + { + "filingDate": "2018-08-15", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000165495418009196/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1280 + }, + { + "filingDate": "2018-08-15", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000165495418009196/section16.xml", + "dataFiles": [], + "idx": 1281 }, { "filingDate": "2018-08-13", @@ -17560,7 +20647,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418008957/zmtp-20180630_pre.xml" } ], - "idx": 939 + "idx": 1282 }, { "filingDate": "2018-08-13", @@ -17594,7 +20681,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418008957/zmtp-20180630_pre.xml" } ], - "idx": 940 + "idx": 1283 }, { "filingDate": "2018-08-13", @@ -17628,7 +20715,61 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418008957/zmtp-20180630_pre.xml" } ], - "idx": 941 + "idx": 1284 + }, + { + "filingDate": "2018-08-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000165495418008948/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1285 + }, + { + "filingDate": "2018-08-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000165495418008948/section16.xml", + "dataFiles": [], + "idx": 1286 + }, + { + "filingDate": "2018-08-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495418008947/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1287 + }, + { + "filingDate": "2018-08-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495418008947/section16.xml", + "dataFiles": [], + "idx": 1288 + }, + { + "filingDate": "2018-08-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000165495418008946/xslF345X03/section16.xml", + "dataFiles": [], + "idx": 1289 + }, + { + "filingDate": "2018-08-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000165495418008946/section16.xml", + "dataFiles": [], + "idx": 1290 }, { "filingDate": "2018-08-02", @@ -17637,7 +20778,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418008371/zmtp_8k.htm", "dataFiles": [], - "idx": 942 + "idx": 1291 }, { "filingDate": "2018-08-02", @@ -17646,7 +20787,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418008371/zmtp_ex991.htm", "dataFiles": [], - "idx": 943 + "idx": 1292 }, { "filingDate": "2018-08-02", @@ -17655,7 +20796,151 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418008371/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 944 + "idx": 1293 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000019/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1294 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000019/primary_doc.xml", + "dataFiles": [], + "idx": 1295 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000018/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1296 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000018/primary_doc.xml", + "dataFiles": [], + "idx": 1297 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000017/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1298 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000017/primary_doc.xml", + "dataFiles": [], + "idx": 1299 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000016/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1300 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000016/primary_doc.xml", + "dataFiles": [], + "idx": 1301 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776118000015/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1302 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776118000015/primary_doc.xml", + "dataFiles": [], + "idx": 1303 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776118000014/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1304 + }, + { + "filingDate": "2018-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776118000014/primary_doc.xml", + "dataFiles": [], + "idx": 1305 + }, + { + "filingDate": "2018-07-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776118000013/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1306 + }, + { + "filingDate": "2018-07-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776118000013/primary_doc.xml", + "dataFiles": [], + "idx": 1307 + }, + { + "filingDate": "2018-07-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776118000012/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1308 + }, + { + "filingDate": "2018-07-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776118000012/primary_doc.xml", + "dataFiles": [], + "idx": 1309 }, { "filingDate": "2018-06-26", @@ -17664,7 +20949,7 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418006961/zmtp_8k.htm", "dataFiles": [], - "idx": 945 + "idx": 1310 }, { "filingDate": "2018-05-22", @@ -17673,7 +20958,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418005785/zmtp_sd.htm", "dataFiles": [], - "idx": 946 + "idx": 1311 }, { "filingDate": "2018-05-22", @@ -17682,7 +20967,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418005785/zmtp_ex101.htm", "dataFiles": [], - "idx": 947 + "idx": 1312 }, { "filingDate": "2018-05-22", @@ -17691,7 +20976,25 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418005785/img001.jpg", "dataFiles": [], - "idx": 948 + "idx": 1313 + }, + { + "filingDate": "2018-05-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000011/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1314 + }, + { + "filingDate": "2018-05-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000011/primary_doc.xml", + "dataFiles": [], + "idx": 1315 }, { "filingDate": "2018-05-16", @@ -17700,7 +21003,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000152996618000003/sfi13g1ZMPT2017secconfirmed.txt", "dataFiles": [], - "idx": 949 + "idx": 1316 }, { "filingDate": "2018-05-15", @@ -17734,7 +21037,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418005388/zmtp-20180331_pre.xml" } ], - "idx": 950 + "idx": 1317 }, { "filingDate": "2018-05-15", @@ -17768,7 +21071,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418005388/zmtp-20180331_pre.xml" } ], - "idx": 951 + "idx": 1318 }, { "filingDate": "2018-05-15", @@ -17802,7 +21105,52 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418005388/zmtp-20180331_pre.xml" } ], - "idx": 952 + "idx": 1319 + }, + { + "filingDate": "2018-05-09", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004949/xslF345X02/section16.xml", + "dataFiles": [], + "idx": 1320 + }, + { + "filingDate": "2018-05-09", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004949/section16.xml", + "dataFiles": [], + "idx": 1321 + }, + { + "filingDate": "2018-05-09", + "form": "3", + "description": "POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004949/delderpoa.htm", + "dataFiles": [], + "idx": 1322 + }, + { + "filingDate": "2018-05-09", + "form": "3", + "description": "IMAGE", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004949/delderpoa000.jpg", + "dataFiles": [], + "idx": 1323 + }, + { + "filingDate": "2018-05-09", + "form": "3", + "description": "IMAGE", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004949/delderpoa001.jpg", + "dataFiles": [], + "idx": 1324 }, { "filingDate": "2018-05-04", @@ -17811,7 +21159,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004739/zmtp_def14a.htm", "dataFiles": [], - "idx": 953 + "idx": 1325 }, { "filingDate": "2018-05-04", @@ -17820,7 +21168,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004738/zmtp_8k.htm", "dataFiles": [], - "idx": 954 + "idx": 1326 }, { "filingDate": "2018-05-04", @@ -17829,7 +21177,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004738/zmtp_ex991.htm", "dataFiles": [], - "idx": 955 + "idx": 1327 }, { "filingDate": "2018-05-04", @@ -17838,7 +21186,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004738/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 956 + "idx": 1328 }, { "filingDate": "2018-04-30", @@ -17847,7 +21195,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004527/zmtp_def14a.htm", "dataFiles": [], - "idx": 957 + "idx": 1329 }, { "filingDate": "2018-04-30", @@ -17856,7 +21204,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004527/zmtp_def14a000.jpg", "dataFiles": [], - "idx": 958 + "idx": 1330 }, { "filingDate": "2018-04-30", @@ -17865,7 +21213,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004527/zmtp_def14a001.jpg", "dataFiles": [], - "idx": 959 + "idx": 1331 }, { "filingDate": "2018-04-30", @@ -17874,7 +21222,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418004527/zmtp_def14a002.jpg", "dataFiles": [], - "idx": 960 + "idx": 1332 }, { "filingDate": "2018-04-30", @@ -17883,7 +21231,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000115752318000879/a51797915.htm", "dataFiles": [], - "idx": 961 + "idx": 1333 }, { "filingDate": "2018-04-30", @@ -17892,7 +21240,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000115752318000879/a51797915ex99_1.htm", "dataFiles": [], - "idx": 962 + "idx": 1334 }, { "filingDate": "2018-03-30", @@ -17926,7 +21274,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp-20171231_pre.xml" } ], - "idx": 963 + "idx": 1335 }, { "filingDate": "2018-03-30", @@ -17960,7 +21308,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp-20171231_pre.xml" } ], - "idx": 964 + "idx": 1336 }, { "filingDate": "2018-03-30", @@ -17994,7 +21342,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp-20171231_pre.xml" } ], - "idx": 965 + "idx": 1337 }, { "filingDate": "2018-03-30", @@ -18028,7 +21376,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp-20171231_pre.xml" } ], - "idx": 966 + "idx": 1338 }, { "filingDate": "2018-03-30", @@ -18062,7 +21410,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418003402/zmtp-20171231_pre.xml" } ], - "idx": 967 + "idx": 1339 }, { "filingDate": "2018-03-07", @@ -18071,7 +21419,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418002246/zmtp_8k.htm", "dataFiles": [], - "idx": 968 + "idx": 1340 }, { "filingDate": "2018-03-07", @@ -18080,7 +21428,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418002246/zmtp_ex991.htm", "dataFiles": [], - "idx": 969 + "idx": 1341 }, { "filingDate": "2018-03-07", @@ -18089,7 +21437,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418002246/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 970 + "idx": 1342 }, { "filingDate": "2018-02-26", @@ -18098,7 +21446,7 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418001883/zmtp_8k.htm", "dataFiles": [], - "idx": 971 + "idx": 1343 }, { "filingDate": "2018-02-20", @@ -18107,7 +21455,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418001723/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 972 + "idx": 1344 }, { "filingDate": "2018-02-15", @@ -18116,7 +21464,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495418001618/zmtp_sc13g.htm", "dataFiles": [], - "idx": 973 + "idx": 1345 }, { "filingDate": "2018-02-14", @@ -18125,7 +21473,187 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495418001553/zoom_sc13ga.htm", "dataFiles": [], - "idx": 974 + "idx": 1346 + }, + { + "filingDate": "2018-01-25", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776118000010/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1347 + }, + { + "filingDate": "2018-01-25", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776118000010/primary_doc.xml", + "dataFiles": [], + "idx": 1348 + }, + { + "filingDate": "2018-01-25", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776118000009/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1349 + }, + { + "filingDate": "2018-01-25", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776118000009/primary_doc.xml", + "dataFiles": [], + "idx": 1350 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000008/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1351 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000008/primary_doc.xml", + "dataFiles": [], + "idx": 1352 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1353 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000007/primary_doc.xml", + "dataFiles": [], + "idx": 1354 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1355 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000006/primary_doc.xml", + "dataFiles": [], + "idx": 1356 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000005/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1357 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776118000005/primary_doc.xml", + "dataFiles": [], + "idx": 1358 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776118000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1359 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776118000004/primary_doc.xml", + "dataFiles": [], + "idx": 1360 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776118000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1361 + }, + { + "filingDate": "2018-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776118000003/primary_doc.xml", + "dataFiles": [], + "idx": 1362 + }, + { + "filingDate": "2018-01-09", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776118000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1363 + }, + { + "filingDate": "2018-01-09", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776118000002/primary_doc.xml", + "dataFiles": [], + "idx": 1364 + }, + { + "filingDate": "2018-01-09", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776118000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1365 + }, + { + "filingDate": "2018-01-09", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776118000001/primary_doc.xml", + "dataFiles": [], + "idx": 1366 }, { "filingDate": "2017-12-14", @@ -18134,7 +21662,7 @@ export const fileList = [ "formDescription": "Confidential treatment order", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999717010565/filename1.pdf", "dataFiles": [], - "idx": 975 + "idx": 1367 }, { "filingDate": "2017-11-09", @@ -18168,7 +21696,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417010291/zmtp-20170930_pre.xml" } ], - "idx": 976 + "idx": 1368 }, { "filingDate": "2017-11-09", @@ -18202,7 +21730,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417010291/zmtp-20170930_pre.xml" } ], - "idx": 977 + "idx": 1369 }, { "filingDate": "2017-11-09", @@ -18236,7 +21764,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417010291/zmtp-20170930_pre.xml" } ], - "idx": 978 + "idx": 1370 }, { "filingDate": "2017-11-09", @@ -18270,7 +21798,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417010291/zmtp-20170930_pre.xml" } ], - "idx": 979 + "idx": 1371 }, { "filingDate": "2017-10-31", @@ -18279,7 +21807,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417009812/zmtp_8k.htm", "dataFiles": [], - "idx": 980 + "idx": 1372 }, { "filingDate": "2017-10-31", @@ -18288,7 +21816,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417009812/zmtp_ex991.htm", "dataFiles": [], - "idx": 981 + "idx": 1373 }, { "filingDate": "2017-10-31", @@ -18297,7 +21825,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417009812/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 982 + "idx": 1374 }, { "filingDate": "2017-10-05", @@ -18306,7 +21834,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417009138/zmtp_8k.htm", "dataFiles": [], - "idx": 983 + "idx": 1375 }, { "filingDate": "2017-10-05", @@ -18315,7 +21843,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417009138/zmtp_ex991.htm", "dataFiles": [], - "idx": 984 + "idx": 1376 }, { "filingDate": "2017-10-05", @@ -18324,7 +21852,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417009138/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 985 + "idx": 1377 }, { "filingDate": "2017-09-07", @@ -18333,7 +21861,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_8k.htm", "dataFiles": [], - "idx": 986 + "idx": 1378 }, { "filingDate": "2017-09-07", @@ -18342,7 +21870,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex991.htm", "dataFiles": [], - "idx": 987 + "idx": 1379 }, { "filingDate": "2017-09-07", @@ -18351,7 +21879,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992.htm", "dataFiles": [], - "idx": 988 + "idx": 1380 }, { "filingDate": "2017-09-07", @@ -18360,7 +21888,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 989 + "idx": 1381 }, { "filingDate": "2017-09-07", @@ -18369,7 +21897,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992000.jpg", "dataFiles": [], - "idx": 990 + "idx": 1382 }, { "filingDate": "2017-09-07", @@ -18378,7 +21906,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992001.jpg", "dataFiles": [], - "idx": 991 + "idx": 1383 }, { "filingDate": "2017-09-07", @@ -18387,7 +21915,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992002.jpg", "dataFiles": [], - "idx": 992 + "idx": 1384 }, { "filingDate": "2017-09-07", @@ -18396,7 +21924,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992003.jpg", "dataFiles": [], - "idx": 993 + "idx": 1385 }, { "filingDate": "2017-09-07", @@ -18405,7 +21933,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992004.jpg", "dataFiles": [], - "idx": 994 + "idx": 1386 }, { "filingDate": "2017-09-07", @@ -18414,7 +21942,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992005.jpg", "dataFiles": [], - "idx": 995 + "idx": 1387 }, { "filingDate": "2017-09-07", @@ -18423,7 +21951,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992006.jpg", "dataFiles": [], - "idx": 996 + "idx": 1388 }, { "filingDate": "2017-09-07", @@ -18432,7 +21960,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992007.jpg", "dataFiles": [], - "idx": 997 + "idx": 1389 }, { "filingDate": "2017-09-07", @@ -18441,7 +21969,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992008.jpg", "dataFiles": [], - "idx": 998 + "idx": 1390 }, { "filingDate": "2017-09-07", @@ -18450,7 +21978,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992009.jpg", "dataFiles": [], - "idx": 999 + "idx": 1391 }, { "filingDate": "2017-09-07", @@ -18459,7 +21987,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992010.jpg", "dataFiles": [], - "idx": 1000 + "idx": 1392 }, { "filingDate": "2017-09-07", @@ -18468,7 +21996,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992011.jpg", "dataFiles": [], - "idx": 1001 + "idx": 1393 }, { "filingDate": "2017-09-07", @@ -18477,7 +22005,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992012.jpg", "dataFiles": [], - "idx": 1002 + "idx": 1394 }, { "filingDate": "2017-09-07", @@ -18486,7 +22014,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417008235/zmtp_ex992013.jpg", "dataFiles": [], - "idx": 1003 + "idx": 1395 }, { "filingDate": "2017-08-11", @@ -18520,7 +22048,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417007294/zmtp-20170630_pre.xml" } ], - "idx": 1004 + "idx": 1396 }, { "filingDate": "2017-08-11", @@ -18554,7 +22082,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417007294/zmtp-20170630_pre.xml" } ], - "idx": 1005 + "idx": 1397 }, { "filingDate": "2017-08-11", @@ -18588,7 +22116,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417007294/zmtp-20170630_pre.xml" } ], - "idx": 1006 + "idx": 1398 }, { "filingDate": "2017-07-31", @@ -18597,7 +22125,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417006778/zmtp_8k.htm", "dataFiles": [], - "idx": 1007 + "idx": 1399 }, { "filingDate": "2017-07-31", @@ -18606,7 +22134,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417006778/zmtp_ex991.htm", "dataFiles": [], - "idx": 1008 + "idx": 1400 }, { "filingDate": "2017-07-31", @@ -18615,7 +22143,169 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417006778/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 1009 + "idx": 1401 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000026/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1402 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000026/primary_doc.xml", + "dataFiles": [], + "idx": 1403 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000025/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1404 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000025/primary_doc.xml", + "dataFiles": [], + "idx": 1405 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000024/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1406 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000024/primary_doc.xml", + "dataFiles": [], + "idx": 1407 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000023/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1408 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000023/primary_doc.xml", + "dataFiles": [], + "idx": 1409 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776117000022/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1410 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776117000022/primary_doc.xml", + "dataFiles": [], + "idx": 1411 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776117000021/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1412 + }, + { + "filingDate": "2017-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776117000021/primary_doc.xml", + "dataFiles": [], + "idx": 1413 + }, + { + "filingDate": "2017-07-06", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776117000020/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1414 + }, + { + "filingDate": "2017-07-06", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776117000020/primary_doc.xml", + "dataFiles": [], + "idx": 1415 + }, + { + "filingDate": "2017-07-05", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000019/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1416 + }, + { + "filingDate": "2017-07-05", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000019/primary_doc.xml", + "dataFiles": [], + "idx": 1417 + }, + { + "filingDate": "2017-07-05", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776117000018/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1418 + }, + { + "filingDate": "2017-07-05", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776117000018/primary_doc.xml", + "dataFiles": [], + "idx": 1419 }, { "filingDate": "2017-06-29", @@ -18624,7 +22314,7 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417006004/zmtp_8k.htm", "dataFiles": [], - "idx": 1010 + "idx": 1420 }, { "filingDate": "2017-05-24", @@ -18633,7 +22323,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417005051/zmtp_sd.htm", "dataFiles": [], - "idx": 1011 + "idx": 1421 }, { "filingDate": "2017-05-24", @@ -18642,7 +22332,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417005051/zmtp_ex101.htm", "dataFiles": [], - "idx": 1012 + "idx": 1422 }, { "filingDate": "2017-05-24", @@ -18651,7 +22341,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417005051/zmtp_ex101000.jpg", "dataFiles": [], - "idx": 1013 + "idx": 1423 }, { "filingDate": "2017-05-12", @@ -18685,7 +22375,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417004540/zmtp-20170331_pre.xml" } ], - "idx": 1014 + "idx": 1424 }, { "filingDate": "2017-05-12", @@ -18719,7 +22409,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417004540/zmtp-20170331_pre.xml" } ], - "idx": 1015 + "idx": 1425 }, { "filingDate": "2017-05-12", @@ -18753,7 +22443,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417004540/zmtp-20170331_pre.xml" } ], - "idx": 1016 + "idx": 1426 }, { "filingDate": "2017-05-04", @@ -18762,7 +22452,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417004059/zmtp_defa14a.htm", "dataFiles": [], - "idx": 1017 + "idx": 1427 }, { "filingDate": "2017-05-02", @@ -18771,7 +22461,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417003932/zmtp_8k.htm", "dataFiles": [], - "idx": 1018 + "idx": 1428 }, { "filingDate": "2017-05-02", @@ -18780,7 +22470,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417003932/zmtp_ex991.htm", "dataFiles": [], - "idx": 1019 + "idx": 1429 }, { "filingDate": "2017-05-02", @@ -18789,7 +22479,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417003932/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 1020 + "idx": 1430 }, { "filingDate": "2017-04-27", @@ -18798,7 +22488,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417003704/zmtp_def14a.htm", "dataFiles": [], - "idx": 1021 + "idx": 1431 }, { "filingDate": "2017-04-27", @@ -18807,7 +22497,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417003704/zmtp_def14a000.jpg", "dataFiles": [], - "idx": 1022 + "idx": 1432 }, { "filingDate": "2017-04-19", @@ -18816,7 +22506,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417003474/zmtp_sc13g.htm", "dataFiles": [], - "idx": 1023 + "idx": 1433 }, { "filingDate": "2017-04-19", @@ -18825,7 +22515,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417003474/zmtp_ex1.htm", "dataFiles": [], - "idx": 1024 + "idx": 1434 }, { "filingDate": "2017-04-19", @@ -18834,7 +22524,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000165495417003472/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1025 + "idx": 1435 }, { "filingDate": "2017-03-22", @@ -18868,7 +22558,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp-20161231_pre.xml" } ], - "idx": 1026 + "idx": 1436 }, { "filingDate": "2017-03-22", @@ -18902,7 +22592,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp-20161231_pre.xml" } ], - "idx": 1027 + "idx": 1437 }, { "filingDate": "2017-03-22", @@ -18936,7 +22626,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp-20161231_pre.xml" } ], - "idx": 1028 + "idx": 1438 }, { "filingDate": "2017-03-22", @@ -18970,7 +22660,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp-20161231_pre.xml" } ], - "idx": 1029 + "idx": 1439 }, { "filingDate": "2017-03-22", @@ -19004,7 +22694,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417002279/zmtp-20161231_pre.xml" } ], - "idx": 1030 + "idx": 1440 }, { "filingDate": "2017-03-02", @@ -19013,7 +22703,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417001624/zmtp_8k.htm", "dataFiles": [], - "idx": 1031 + "idx": 1441 }, { "filingDate": "2017-03-02", @@ -19022,7 +22712,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417001624/zmtp_ex991.htm", "dataFiles": [], - "idx": 1032 + "idx": 1442 }, { "filingDate": "2017-03-02", @@ -19031,7 +22721,43 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417001624/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 1033 + "idx": 1443 + }, + { + "filingDate": "2017-02-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000017/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1444 + }, + { + "filingDate": "2017-02-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000017/primary_doc.xml", + "dataFiles": [], + "idx": 1445 + }, + { + "filingDate": "2017-02-16", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000016/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1446 + }, + { + "filingDate": "2017-02-16", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000016/primary_doc.xml", + "dataFiles": [], + "idx": 1447 }, { "filingDate": "2017-02-10", @@ -19040,7 +22766,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000165495417000936/zoom_sc13ga.htm", "dataFiles": [], - "idx": 1034 + "idx": 1448 }, { "filingDate": "2017-02-10", @@ -19049,7 +22775,97 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000165495417000935/zoom_sc13ga.htm", "dataFiles": [], - "idx": 1035 + "idx": 1449 + }, + { + "filingDate": "2017-02-08", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000015/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1450 + }, + { + "filingDate": "2017-02-08", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000015/primary_doc.xml", + "dataFiles": [], + "idx": 1451 + }, + { + "filingDate": "2017-02-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000014/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1452 + }, + { + "filingDate": "2017-02-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000014/primary_doc.xml", + "dataFiles": [], + "idx": 1453 + }, + { + "filingDate": "2017-01-25", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000013/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1454 + }, + { + "filingDate": "2017-01-25", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000013/primary_doc.xml", + "dataFiles": [], + "idx": 1455 + }, + { + "filingDate": "2017-01-24", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000012/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1456 + }, + { + "filingDate": "2017-01-24", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000012/primary_doc.xml", + "dataFiles": [], + "idx": 1457 + }, + { + "filingDate": "2017-01-19", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000011/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1458 + }, + { + "filingDate": "2017-01-19", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000011/primary_doc.xml", + "dataFiles": [], + "idx": 1459 }, { "filingDate": "2017-01-13 16:00:00", @@ -19058,7 +22874,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999517000099/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 1036 + "idx": 1460 }, { "filingDate": "2017-01-13 16:00:00", @@ -19067,7 +22883,169 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999517000099/primary_doc.xml", "dataFiles": [], - "idx": 1037 + "idx": 1461 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000010/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1462 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000010/primary_doc.xml", + "dataFiles": [], + "idx": 1463 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000009/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1464 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000009/primary_doc.xml", + "dataFiles": [], + "idx": 1465 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000008/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1466 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000008/primary_doc.xml", + "dataFiles": [], + "idx": 1467 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1468 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776117000007/primary_doc.xml", + "dataFiles": [], + "idx": 1469 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776117000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1470 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776117000006/primary_doc.xml", + "dataFiles": [], + "idx": 1471 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776117000005/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1472 + }, + { + "filingDate": "2017-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776117000005/primary_doc.xml", + "dataFiles": [], + "idx": 1473 + }, + { + "filingDate": "2017-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1474 + }, + { + "filingDate": "2017-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000004/primary_doc.xml", + "dataFiles": [], + "idx": 1475 + }, + { + "filingDate": "2017-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776117000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1476 + }, + { + "filingDate": "2017-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776117000003/primary_doc.xml", + "dataFiles": [], + "idx": 1477 + }, + { + "filingDate": "2017-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776117000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1478 + }, + { + "filingDate": "2017-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776117000002/primary_doc.xml", + "dataFiles": [], + "idx": 1479 }, { "filingDate": "2017-01-11", @@ -19076,7 +23054,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417000171/filename1.htm", "dataFiles": [], - "idx": 1038 + "idx": 1480 }, { "filingDate": "2017-01-04", @@ -19110,7 +23088,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417000061/zmtp-20160930_pre.xml" } ], - "idx": 1039 + "idx": 1481 }, { "filingDate": "2017-01-04", @@ -19144,7 +23122,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417000061/zmtp-20160930_pre.xml" } ], - "idx": 1040 + "idx": 1482 }, { "filingDate": "2017-01-04", @@ -19178,7 +23156,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417000061/zmtp-20160930_pre.xml" } ], - "idx": 1041 + "idx": 1483 }, { "filingDate": "2017-01-04", @@ -19212,7 +23190,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495417000061/zmtp-20160930_pre.xml" } ], - "idx": 1042 + "idx": 1484 + }, + { + "filingDate": "2017-01-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1485 + }, + { + "filingDate": "2017-01-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776117000001/primary_doc.xml", + "dataFiles": [], + "idx": 1486 + }, + { + "filingDate": "2016-12-27", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000063/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1487 + }, + { + "filingDate": "2016-12-27", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000063/primary_doc.xml", + "dataFiles": [], + "idx": 1488 }, { "filingDate": "2016-12-22", @@ -19221,7 +23235,61 @@ export const fileList = [ "formDescription": "Confidential treatment order", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999716027989/filename1.pdf", "dataFiles": [], - "idx": 1043 + "idx": 1489 + }, + { + "filingDate": "2016-12-20", + "form": "3/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816008687/xslF345X02/issuerdirect_section16.xml", + "dataFiles": [], + "idx": 1490 + }, + { + "filingDate": "2016-12-20", + "form": "3/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816008687/issuerdirect_section16.xml", + "dataFiles": [], + "idx": 1491 + }, + { + "filingDate": "2016-12-20", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000062/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1492 + }, + { + "filingDate": "2016-12-20", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000062/primary_doc.xml", + "dataFiles": [], + "idx": 1493 + }, + { + "filingDate": "2016-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000061/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1494 + }, + { + "filingDate": "2016-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000061/primary_doc.xml", + "dataFiles": [], + "idx": 1495 }, { "filingDate": "2016-12-08", @@ -19255,7 +23323,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004687/zmtp-20160930_pre.xml" } ], - "idx": 1044 + "idx": 1496 }, { "filingDate": "2016-12-08", @@ -19289,7 +23357,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004687/zmtp-20160930_pre.xml" } ], - "idx": 1045 + "idx": 1497 }, { "filingDate": "2016-12-08", @@ -19323,7 +23391,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004687/zmtp-20160930_pre.xml" } ], - "idx": 1046 + "idx": 1498 }, { "filingDate": "2016-12-08", @@ -19357,7 +23425,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004687/zmtp-20160930_pre.xml" } ], - "idx": 1047 + "idx": 1499 }, { "filingDate": "2016-12-08", @@ -19391,7 +23459,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004687/zmtp-20160930_pre.xml" } ], - "idx": 1048 + "idx": 1500 }, { "filingDate": "2016-12-06", @@ -19400,7 +23468,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004630/zmtp_10qa.htm", "dataFiles": [], - "idx": 1049 + "idx": 1501 }, { "filingDate": "2016-12-06", @@ -19409,7 +23477,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004630/zmtp_ex103.htm", "dataFiles": [], - "idx": 1050 + "idx": 1502 }, { "filingDate": "2016-12-06", @@ -19418,7 +23486,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004630/zmto_ex104.htm", "dataFiles": [], - "idx": 1051 + "idx": 1503 }, { "filingDate": "2016-12-06", @@ -19427,7 +23495,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004630/zmtp_ex311.htm", "dataFiles": [], - "idx": 1052 + "idx": 1504 }, { "filingDate": "2016-12-06", @@ -19436,7 +23504,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004630/zmtp_ex103000.jpg", "dataFiles": [], - "idx": 1053 + "idx": 1505 }, { "filingDate": "2016-12-06", @@ -19445,7 +23513,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004630/zmtp_ex103001.jpg", "dataFiles": [], - "idx": 1054 + "idx": 1506 }, { "filingDate": "2016-12-06", @@ -19454,7 +23522,7 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004630/zmtp_ex103002.jpg", "dataFiles": [], - "idx": 1055 + "idx": 1507 }, { "filingDate": "2016-12-06", @@ -19463,7 +23531,97 @@ export const fileList = [ "formDescription": "[Amend] Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416004630/zmtp_ex103003.jpg", "dataFiles": [], - "idx": 1056 + "idx": 1508 + }, + { + "filingDate": "2016-12-06", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000060/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1509 + }, + { + "filingDate": "2016-12-06", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000060/primary_doc.xml", + "dataFiles": [], + "idx": 1510 + }, + { + "filingDate": "2016-11-30", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000059/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1511 + }, + { + "filingDate": "2016-11-30", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000059/primary_doc.xml", + "dataFiles": [], + "idx": 1512 + }, + { + "filingDate": "2016-11-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000058/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1513 + }, + { + "filingDate": "2016-11-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000058/primary_doc.xml", + "dataFiles": [], + "idx": 1514 + }, + { + "filingDate": "2016-11-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776116000057/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1515 + }, + { + "filingDate": "2016-11-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776116000057/primary_doc.xml", + "dataFiles": [], + "idx": 1516 + }, + { + "filingDate": "2016-11-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000056/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1517 + }, + { + "filingDate": "2016-11-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000056/primary_doc.xml", + "dataFiles": [], + "idx": 1518 }, { "filingDate": "2016-11-14", @@ -19497,7 +23655,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003875/zmtp-20160930_pre.xml" } ], - "idx": 1057 + "idx": 1519 }, { "filingDate": "2016-11-14", @@ -19531,7 +23689,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003875/zmtp-20160930_pre.xml" } ], - "idx": 1058 + "idx": 1520 }, { "filingDate": "2016-11-14", @@ -19565,7 +23723,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003875/zmtp-20160930_pre.xml" } ], - "idx": 1059 + "idx": 1521 }, { "filingDate": "2016-11-09", @@ -19574,7 +23732,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003684/zmtp_8ka.htm", "dataFiles": [], - "idx": 1060 + "idx": 1522 }, { "filingDate": "2016-11-09", @@ -19583,7 +23741,7 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003684/zmtp_ex991.htm", "dataFiles": [], - "idx": 1061 + "idx": 1523 }, { "filingDate": "2016-11-09", @@ -19592,7 +23750,25 @@ export const fileList = [ "formDescription": "[Amend] Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003684/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 1062 + "idx": 1524 + }, + { + "filingDate": "2016-11-08", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000055/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1525 + }, + { + "filingDate": "2016-11-08", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000055/primary_doc.xml", + "dataFiles": [], + "idx": 1526 }, { "filingDate": "2016-11-07", @@ -19601,7 +23777,7 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06b", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003582/xslFormDX01/primary_doc.xml", "dataFiles": [], - "idx": 1063 + "idx": 1527 }, { "filingDate": "2016-11-07", @@ -19610,7 +23786,25 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06b", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003582/primary_doc.xml", "dataFiles": [], - "idx": 1064 + "idx": 1528 + }, + { + "filingDate": "2016-11-03", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000054/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1529 + }, + { + "filingDate": "2016-11-03", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000054/primary_doc.xml", + "dataFiles": [], + "idx": 1530 }, { "filingDate": "2016-11-01", @@ -19619,7 +23813,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003312/zmtp_8k.htm", "dataFiles": [], - "idx": 1065 + "idx": 1531 }, { "filingDate": "2016-11-01", @@ -19628,7 +23822,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003312/zmtp_ex991.htm", "dataFiles": [], - "idx": 1066 + "idx": 1532 }, { "filingDate": "2016-11-01", @@ -19637,7 +23831,34 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003312/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 1067 + "idx": 1533 + }, + { + "filingDate": "2016-10-31", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003239/xslF345X02/sykes.xml", + "dataFiles": [], + "idx": 1534 + }, + { + "filingDate": "2016-10-31", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003239/sykes.xml", + "dataFiles": [], + "idx": 1535 + }, + { + "filingDate": "2016-10-31", + "form": "3", + "description": "LIMITED POWER OF ATTORNEY", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003239/zmtp_ex24.htm", + "dataFiles": [], + "idx": 1536 }, { "filingDate": "2016-10-26", @@ -19646,7 +23867,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003109/zmtp_8k.htm", "dataFiles": [], - "idx": 1068 + "idx": 1537 }, { "filingDate": "2016-10-26", @@ -19655,7 +23876,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003109/zmtp_ex101.htm", "dataFiles": [], - "idx": 1069 + "idx": 1538 }, { "filingDate": "2016-10-26", @@ -19664,7 +23885,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003109/zmtp_ex991.htm", "dataFiles": [], - "idx": 1070 + "idx": 1539 }, { "filingDate": "2016-10-26", @@ -19673,7 +23894,151 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416003109/img001.jpg", "dataFiles": [], - "idx": 1071 + "idx": 1540 + }, + { + "filingDate": "2016-10-26", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000053/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1541 + }, + { + "filingDate": "2016-10-26", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000053/primary_doc.xml", + "dataFiles": [], + "idx": 1542 + }, + { + "filingDate": "2016-10-20", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000052/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1543 + }, + { + "filingDate": "2016-10-20", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000052/primary_doc.xml", + "dataFiles": [], + "idx": 1544 + }, + { + "filingDate": "2016-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000051/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1545 + }, + { + "filingDate": "2016-10-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000051/primary_doc.xml", + "dataFiles": [], + "idx": 1546 + }, + { + "filingDate": "2016-10-06", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000050/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1547 + }, + { + "filingDate": "2016-10-06", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000050/primary_doc.xml", + "dataFiles": [], + "idx": 1548 + }, + { + "filingDate": "2016-09-29", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000049/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1549 + }, + { + "filingDate": "2016-09-29", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000049/primary_doc.xml", + "dataFiles": [], + "idx": 1550 + }, + { + "filingDate": "2016-09-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000048/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1551 + }, + { + "filingDate": "2016-09-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000048/primary_doc.xml", + "dataFiles": [], + "idx": 1552 + }, + { + "filingDate": "2016-09-19", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000047/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1553 + }, + { + "filingDate": "2016-09-19", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000047/primary_doc.xml", + "dataFiles": [], + "idx": 1554 + }, + { + "filingDate": "2016-09-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000046/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1555 + }, + { + "filingDate": "2016-09-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000046/primary_doc.xml", + "dataFiles": [], + "idx": 1556 }, { "filingDate": "2016-09-08", @@ -19682,7 +24047,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416002086/zmtp_8k.htm", "dataFiles": [], - "idx": 1072 + "idx": 1557 }, { "filingDate": "2016-09-08", @@ -19691,7 +24056,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416002086/zmtp_ex101.htm", "dataFiles": [], - "idx": 1073 + "idx": 1558 }, { "filingDate": "2016-09-08", @@ -19700,7 +24065,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416002086/zmtp_ex991.htm", "dataFiles": [], - "idx": 1074 + "idx": 1559 }, { "filingDate": "2016-09-08", @@ -19709,7 +24074,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416002086/zmtp_ex101000.jpg", "dataFiles": [], - "idx": 1075 + "idx": 1560 }, { "filingDate": "2016-09-08", @@ -19718,7 +24083,61 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416002086/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 1076 + "idx": 1561 + }, + { + "filingDate": "2016-09-07", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000045/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1562 + }, + { + "filingDate": "2016-09-07", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000045/primary_doc.xml", + "dataFiles": [], + "idx": 1563 + }, + { + "filingDate": "2016-08-31", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000044/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1564 + }, + { + "filingDate": "2016-08-31", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000044/primary_doc.xml", + "dataFiles": [], + "idx": 1565 + }, + { + "filingDate": "2016-08-24", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000043/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1566 + }, + { + "filingDate": "2016-08-24", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000043/primary_doc.xml", + "dataFiles": [], + "idx": 1567 }, { "filingDate": "2016-08-23", @@ -19727,7 +24146,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_8k.htm", "dataFiles": [], - "idx": 1077 + "idx": 1568 }, { "filingDate": "2016-08-23", @@ -19736,7 +24155,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex991.htm", "dataFiles": [], - "idx": 1078 + "idx": 1569 }, { "filingDate": "2016-08-23", @@ -19745,7 +24164,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992.htm", "dataFiles": [], - "idx": 1079 + "idx": 1570 }, { "filingDate": "2016-08-23", @@ -19754,7 +24173,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex991000.jpg", "dataFiles": [], - "idx": 1080 + "idx": 1571 }, { "filingDate": "2016-08-23", @@ -19763,7 +24182,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992000.jpg", "dataFiles": [], - "idx": 1081 + "idx": 1572 }, { "filingDate": "2016-08-23", @@ -19772,7 +24191,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992001.jpg", "dataFiles": [], - "idx": 1082 + "idx": 1573 }, { "filingDate": "2016-08-23", @@ -19781,7 +24200,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992002.jpg", "dataFiles": [], - "idx": 1083 + "idx": 1574 }, { "filingDate": "2016-08-23", @@ -19790,7 +24209,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992003.jpg", "dataFiles": [], - "idx": 1084 + "idx": 1575 }, { "filingDate": "2016-08-23", @@ -19799,7 +24218,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992004.jpg", "dataFiles": [], - "idx": 1085 + "idx": 1576 }, { "filingDate": "2016-08-23", @@ -19808,7 +24227,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992005.jpg", "dataFiles": [], - "idx": 1086 + "idx": 1577 }, { "filingDate": "2016-08-23", @@ -19817,7 +24236,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992006.jpg", "dataFiles": [], - "idx": 1087 + "idx": 1578 }, { "filingDate": "2016-08-23", @@ -19826,7 +24245,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992007.jpg", "dataFiles": [], - "idx": 1088 + "idx": 1579 }, { "filingDate": "2016-08-23", @@ -19835,7 +24254,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992008.jpg", "dataFiles": [], - "idx": 1089 + "idx": 1580 }, { "filingDate": "2016-08-23", @@ -19844,7 +24263,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992009.jpg", "dataFiles": [], - "idx": 1090 + "idx": 1581 }, { "filingDate": "2016-08-23", @@ -19853,7 +24272,25 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001783/zmtp_ex992010.jpg", "dataFiles": [], - "idx": 1091 + "idx": 1582 + }, + { + "filingDate": "2016-08-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000042/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1583 + }, + { + "filingDate": "2016-08-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000042/primary_doc.xml", + "dataFiles": [], + "idx": 1584 }, { "filingDate": "2016-08-12", @@ -19862,7 +24299,7 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(3)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001475/zmtp_424b3.htm", "dataFiles": [], - "idx": 1092 + "idx": 1585 }, { "filingDate": "2016-08-12", @@ -19896,7 +24333,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001472/zmtp-20160630_pre.xml" } ], - "idx": 1093 + "idx": 1586 }, { "filingDate": "2016-08-12", @@ -19930,7 +24367,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001472/zmtp-20160630_pre.xml" } ], - "idx": 1094 + "idx": 1587 }, { "filingDate": "2016-08-12", @@ -19964,7 +24401,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001472/zmtp-20160630_pre.xml" } ], - "idx": 1095 + "idx": 1588 + }, + { + "filingDate": "2016-08-10", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000041/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1589 + }, + { + "filingDate": "2016-08-10", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000041/primary_doc.xml", + "dataFiles": [], + "idx": 1590 + }, + { + "filingDate": "2016-08-03", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000040/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1591 + }, + { + "filingDate": "2016-08-03", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000040/primary_doc.xml", + "dataFiles": [], + "idx": 1592 }, { "filingDate": "2016-07-29", @@ -19973,7 +24446,7 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001016/zmtp_8k.htm", "dataFiles": [], - "idx": 1096 + "idx": 1593 }, { "filingDate": "2016-07-28", @@ -19982,7 +24455,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001007/zmtp_8k.htm", "dataFiles": [], - "idx": 1097 + "idx": 1594 }, { "filingDate": "2016-07-28", @@ -19991,7 +24464,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001007/zmtp_ex991.htm", "dataFiles": [], - "idx": 1098 + "idx": 1595 }, { "filingDate": "2016-07-28", @@ -20000,7 +24473,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416001007/zmtp_8k000.jpg", "dataFiles": [], - "idx": 1099 + "idx": 1596 }, { "filingDate": "2016-07-25", @@ -20009,7 +24482,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416000960/zmtp_8k.htm", "dataFiles": [], - "idx": 1100 + "idx": 1597 }, { "filingDate": "2016-07-25", @@ -20018,7 +24491,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416000960/zmtp_ex101.htm", "dataFiles": [], - "idx": 1101 + "idx": 1598 }, { "filingDate": "2016-07-25", @@ -20027,7 +24500,115 @@ export const fileList = [ "formDescription": "Current report, items 1.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416000960/zmtp_ex101000.jpg", "dataFiles": [], - "idx": 1102 + "idx": 1599 + }, + { + "filingDate": "2016-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000039/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1600 + }, + { + "filingDate": "2016-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000039/primary_doc.xml", + "dataFiles": [], + "idx": 1601 + }, + { + "filingDate": "2016-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000038/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1602 + }, + { + "filingDate": "2016-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000038/primary_doc.xml", + "dataFiles": [], + "idx": 1603 + }, + { + "filingDate": "2016-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776116000037/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1604 + }, + { + "filingDate": "2016-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776116000037/primary_doc.xml", + "dataFiles": [], + "idx": 1605 + }, + { + "filingDate": "2016-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776116000036/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1606 + }, + { + "filingDate": "2016-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776116000036/primary_doc.xml", + "dataFiles": [], + "idx": 1607 + }, + { + "filingDate": "2016-07-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776116000035/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1608 + }, + { + "filingDate": "2016-07-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776116000035/primary_doc.xml", + "dataFiles": [], + "idx": 1609 + }, + { + "filingDate": "2016-07-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776116000034/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1610 + }, + { + "filingDate": "2016-07-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776116000034/primary_doc.xml", + "dataFiles": [], + "idx": 1611 }, { "filingDate": "2016-06-27", @@ -20036,7 +24617,25 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165495416000560/zmtp_8k.htm", "dataFiles": [], - "idx": 1103 + "idx": 1612 + }, + { + "filingDate": "2016-06-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000032/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1613 + }, + { + "filingDate": "2016-06-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000032/primary_doc.xml", + "dataFiles": [], + "idx": 1614 }, { "filingDate": "2016-05-18", @@ -20045,7 +24644,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007540/zmtp_sd.htm", "dataFiles": [], - "idx": 1104 + "idx": 1615 }, { "filingDate": "2016-05-18", @@ -20054,7 +24653,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007540/zmtp_ex101.htm", "dataFiles": [], - "idx": 1105 + "idx": 1616 }, { "filingDate": "2016-05-18", @@ -20063,7 +24662,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007540/logo.jpg", "dataFiles": [], - "idx": 1106 + "idx": 1617 }, { "filingDate": "2016-05-13", @@ -20072,7 +24671,7 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(3)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007400/zmtp-424b3.htm", "dataFiles": [], - "idx": 1107 + "idx": 1618 }, { "filingDate": "2016-05-13", @@ -20106,7 +24705,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007393/zmtp-20160331_pre.xml" } ], - "idx": 1108 + "idx": 1619 }, { "filingDate": "2016-05-13", @@ -20140,7 +24739,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007393/zmtp-20160331_pre.xml" } ], - "idx": 1109 + "idx": 1620 }, { "filingDate": "2016-05-13", @@ -20174,7 +24773,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007393/zmtp-20160331_pre.xml" } ], - "idx": 1110 + "idx": 1621 }, { "filingDate": "2016-05-13", @@ -20208,7 +24807,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007393/zmtp-20160331_pre.xml" } ], - "idx": 1111 + "idx": 1622 }, { "filingDate": "2016-05-12", @@ -20217,7 +24816,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007351/zmtp_14a.htm", "dataFiles": [], - "idx": 1112 + "idx": 1623 }, { "filingDate": "2016-05-12", @@ -20226,7 +24825,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007339/zmtp_8k.htm", "dataFiles": [], - "idx": 1113 + "idx": 1624 }, { "filingDate": "2016-05-12", @@ -20235,7 +24834,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007339/zmtp_ex991.htm", "dataFiles": [], - "idx": 1114 + "idx": 1625 }, { "filingDate": "2016-05-12", @@ -20244,7 +24843,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007339/zoom.jpg", "dataFiles": [], - "idx": 1115 + "idx": 1626 }, { "filingDate": "2016-05-03", @@ -20253,7 +24852,7 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(3)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007200/zmtp_424b3.htm", "dataFiles": [], - "idx": 1116 + "idx": 1627 }, { "filingDate": "2016-05-03", @@ -20262,7 +24861,7 @@ export const fileList = [ "formDescription": "Prospectus [Rule 424(b)(3)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007200/sig1.jpg", "dataFiles": [], - "idx": 1117 + "idx": 1628 }, { "filingDate": "2016-05-03", @@ -20271,7 +24870,7 @@ export const fileList = [ "formDescription": "Revised definitive proxy soliciting materials", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007198/zmtp_defr14a.htm", "dataFiles": [], - "idx": 1118 + "idx": 1629 }, { "filingDate": "2016-05-03", @@ -20280,7 +24879,7 @@ export const fileList = [ "formDescription": "Revised definitive proxy soliciting materials", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007198/sig1.jpg", "dataFiles": [], - "idx": 1119 + "idx": 1630 }, { "filingDate": "2016-04-29", @@ -20289,7 +24888,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007158/zmtp_def14a.htm", "dataFiles": [], - "idx": 1120 + "idx": 1631 }, { "filingDate": "2016-04-29", @@ -20298,7 +24897,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816007158/sig1.jpg", "dataFiles": [], - "idx": 1121 + "idx": 1632 }, { "filingDate": "2016-03-28 12:00:00", @@ -20307,7 +24906,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999516004061/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 1122 + "idx": 1633 }, { "filingDate": "2016-03-28 12:00:00", @@ -20316,7 +24915,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999516004061/primary_doc.xml", "dataFiles": [], - "idx": 1123 + "idx": 1634 }, { "filingDate": "2016-03-24", @@ -20325,7 +24924,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006665/filename1.htm", "dataFiles": [], - "idx": 1124 + "idx": 1635 }, { "filingDate": "2016-03-24", @@ -20334,7 +24933,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006665/logo.jpg", "dataFiles": [], - "idx": 1125 + "idx": 1636 }, { "filingDate": "2016-03-22", @@ -20368,7 +24967,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006635/zmtp-20151231_pre.xml" } ], - "idx": 1126 + "idx": 1637 }, { "filingDate": "2016-03-22", @@ -20402,7 +25001,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006635/zmtp-20151231_pre.xml" } ], - "idx": 1127 + "idx": 1638 }, { "filingDate": "2016-03-22", @@ -20436,7 +25035,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006635/zmtp-20151231_pre.xml" } ], - "idx": 1128 + "idx": 1639 }, { "filingDate": "2016-03-22", @@ -20470,7 +25069,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006635/zmtp-20151231_pre.xml" } ], - "idx": 1129 + "idx": 1640 }, { "filingDate": "2016-03-15", @@ -20504,7 +25103,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp-20151231_pre.xml" } ], - "idx": 1130 + "idx": 1641 }, { "filingDate": "2016-03-15", @@ -20538,7 +25137,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp-20151231_pre.xml" } ], - "idx": 1131 + "idx": 1642 }, { "filingDate": "2016-03-15", @@ -20572,7 +25171,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp-20151231_pre.xml" } ], - "idx": 1132 + "idx": 1643 }, { "filingDate": "2016-03-15", @@ -20606,7 +25205,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp-20151231_pre.xml" } ], - "idx": 1133 + "idx": 1644 }, { "filingDate": "2016-03-15", @@ -20640,7 +25239,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp-20151231_pre.xml" } ], - "idx": 1134 + "idx": 1645 }, { "filingDate": "2016-03-15", @@ -20674,7 +25273,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006596/zmtp-20151231_pre.xml" } ], - "idx": 1135 + "idx": 1646 }, { "filingDate": "2016-03-08", @@ -20683,7 +25282,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006492/zmtp_8k.htm", "dataFiles": [], - "idx": 1136 + "idx": 1647 }, { "filingDate": "2016-03-08", @@ -20692,7 +25291,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006492/zmtp_ex991.htm", "dataFiles": [], - "idx": 1137 + "idx": 1648 }, { "filingDate": "2016-03-08", @@ -20701,7 +25300,43 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006492/zoom.jpg", "dataFiles": [], - "idx": 1138 + "idx": 1649 + }, + { + "filingDate": "2016-03-02", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776116000031/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1650 + }, + { + "filingDate": "2016-03-02", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776116000031/primary_doc.xml", + "dataFiles": [], + "idx": 1651 + }, + { + "filingDate": "2016-03-02", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776116000030/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1652 + }, + { + "filingDate": "2016-03-02", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776116000030/primary_doc.xml", + "dataFiles": [], + "idx": 1653 }, { "filingDate": "2016-02-29", @@ -20710,7 +25345,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006393/zmtp_s8.htm", "dataFiles": [], - "idx": 1139 + "idx": 1654 }, { "filingDate": "2016-02-29", @@ -20719,7 +25354,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006393/zmtp_ex231.htm", "dataFiles": [], - "idx": 1140 + "idx": 1655 }, { "filingDate": "2016-02-29", @@ -20728,7 +25363,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006393/zmtp_ex51.htm", "dataFiles": [], - "idx": 1141 + "idx": 1656 }, { "filingDate": "2016-02-29", @@ -20737,7 +25372,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006393/img001.jpg", "dataFiles": [], - "idx": 1142 + "idx": 1657 }, { "filingDate": "2016-02-11", @@ -20746,7 +25381,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000135448816006175/zoom_sc13ga.htm", "dataFiles": [], - "idx": 1143 + "idx": 1658 }, { "filingDate": "2016-02-11", @@ -20755,7 +25390,25 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448816006173/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1144 + "idx": 1659 + }, + { + "filingDate": "2016-02-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000029/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1660 + }, + { + "filingDate": "2016-02-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000029/primary_doc.xml", + "dataFiles": [], + "idx": 1661 }, { "filingDate": "2016-02-04", @@ -20789,7 +25442,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006067/zmtp-20150930_pre.xml" } ], - "idx": 1145 + "idx": 1662 }, { "filingDate": "2016-02-04", @@ -20823,7 +25476,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006067/zmtp-20150930_pre.xml" } ], - "idx": 1146 + "idx": 1663 }, { "filingDate": "2016-02-04", @@ -20857,7 +25510,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006067/zmtp-20150930_pre.xml" } ], - "idx": 1147 + "idx": 1664 }, { "filingDate": "2016-02-04", @@ -20891,7 +25544,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816006067/zmtp-20150930_pre.xml" } ], - "idx": 1148 + "idx": 1665 + }, + { + "filingDate": "2016-02-03", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000028/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1666 + }, + { + "filingDate": "2016-02-03", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000028/primary_doc.xml", + "dataFiles": [], + "idx": 1667 + }, + { + "filingDate": "2016-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000027/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1668 + }, + { + "filingDate": "2016-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776116000027/primary_doc.xml", + "dataFiles": [], + "idx": 1669 }, { "filingDate": "2016-01-14", @@ -20900,7 +25589,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816005925/zmtp_8a12g.htm", "dataFiles": [], - "idx": 1149 + "idx": 1670 }, { "filingDate": "2016-01-14", @@ -20909,7 +25598,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816005925/zmtp_ex31.htm", "dataFiles": [], - "idx": 1150 + "idx": 1671 }, { "filingDate": "2016-01-14", @@ -20918,7 +25607,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816005925/zmtp_ex41.htm", "dataFiles": [], - "idx": 1151 + "idx": 1672 }, { "filingDate": "2016-01-14", @@ -20927,7 +25616,97 @@ export const fileList = [ "formDescription": "Registration Withdrawal Request", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448816005924/zoom_rw.htm", "dataFiles": [], - "idx": 1152 + "idx": 1673 + }, + { + "filingDate": "2016-01-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000026/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1674 + }, + { + "filingDate": "2016-01-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000026/primary_doc.xml", + "dataFiles": [], + "idx": 1675 + }, + { + "filingDate": "2016-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000025/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1676 + }, + { + "filingDate": "2016-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000025/primary_doc.xml", + "dataFiles": [], + "idx": 1677 + }, + { + "filingDate": "2016-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000024/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1678 + }, + { + "filingDate": "2016-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776116000024/primary_doc.xml", + "dataFiles": [], + "idx": 1679 + }, + { + "filingDate": "2016-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776116000023/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1680 + }, + { + "filingDate": "2016-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776116000023/primary_doc.xml", + "dataFiles": [], + "idx": 1681 + }, + { + "filingDate": "2016-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776116000022/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1682 + }, + { + "filingDate": "2016-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776116000022/primary_doc.xml", + "dataFiles": [], + "idx": 1683 }, { "filingDate": "2015-12-23", @@ -20961,7 +25740,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005635/zmtp-20150930_pre.xml" } ], - "idx": 1153 + "idx": 1684 }, { "filingDate": "2015-12-23", @@ -20995,7 +25774,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005635/zmtp-20150930_pre.xml" } ], - "idx": 1154 + "idx": 1685 }, { "filingDate": "2015-12-23", @@ -21029,7 +25808,61 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005635/zmtp-20150930_pre.xml" } ], - "idx": 1155 + "idx": 1686 + }, + { + "filingDate": "2015-12-21", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000021/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1687 + }, + { + "filingDate": "2015-12-21", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000021/primary_doc.xml", + "dataFiles": [], + "idx": 1688 + }, + { + "filingDate": "2015-12-10", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776115000020/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1689 + }, + { + "filingDate": "2015-12-10", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776115000020/primary_doc.xml", + "dataFiles": [], + "idx": 1690 + }, + { + "filingDate": "2015-12-02", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776115000019/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1691 + }, + { + "filingDate": "2015-12-02", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776115000019/primary_doc.xml", + "dataFiles": [], + "idx": 1692 }, { "filingDate": "2015-11-23", @@ -21038,7 +25871,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(b)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005282/zmtp_8a12b.htm", "dataFiles": [], - "idx": 1156 + "idx": 1693 }, { "filingDate": "2015-11-23", @@ -21047,7 +25880,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(b)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005282/zmtp_ex31.htm", "dataFiles": [], - "idx": 1157 + "idx": 1694 }, { "filingDate": "2015-11-23", @@ -21056,7 +25889,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(b)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005282/zmtp_ex41.htm", "dataFiles": [], - "idx": 1158 + "idx": 1695 }, { "filingDate": "2015-11-18", @@ -21065,7 +25898,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.03, 5.03, 5.07, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005202/zmtp_8k.htm", "dataFiles": [], - "idx": 1159 + "idx": 1696 }, { "filingDate": "2015-11-18", @@ -21074,7 +25907,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.03, 5.03, 5.07, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005202/zmtp_ex31.htm", "dataFiles": [], - "idx": 1160 + "idx": 1697 }, { "filingDate": "2015-11-18", @@ -21083,7 +25916,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.03, 5.03, 5.07, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005202/zmtp_ex32.htm", "dataFiles": [], - "idx": 1161 + "idx": 1698 }, { "filingDate": "2015-11-18", @@ -21092,7 +25925,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.03, 5.03, 5.07, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005202/zmtp_ex41.htm", "dataFiles": [], - "idx": 1162 + "idx": 1699 }, { "filingDate": "2015-11-18", @@ -21101,7 +25934,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.03, 5.03, 5.07, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005202/zmtp_ex991.htm", "dataFiles": [], - "idx": 1163 + "idx": 1700 }, { "filingDate": "2015-11-18", @@ -21110,7 +25943,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.03, 5.03, 5.07, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005202/zoom.jpg", "dataFiles": [], - "idx": 1164 + "idx": 1701 }, { "filingDate": "2015-11-13", @@ -21144,7 +25977,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005033/zmtp-20150930_pre.xml" } ], - "idx": 1165 + "idx": 1702 }, { "filingDate": "2015-11-13", @@ -21178,7 +26011,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005033/zmtp-20150930_pre.xml" } ], - "idx": 1166 + "idx": 1703 }, { "filingDate": "2015-11-13", @@ -21212,7 +26045,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005033/zmtp-20150930_pre.xml" } ], - "idx": 1167 + "idx": 1704 }, { "filingDate": "2015-11-13", @@ -21246,7 +26079,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815005033/zmtp-20150930_pre.xml" } ], - "idx": 1168 + "idx": 1705 }, { "filingDate": "2015-11-03", @@ -21255,7 +26088,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004797/zmtp_8k.htm", "dataFiles": [], - "idx": 1169 + "idx": 1706 }, { "filingDate": "2015-11-03", @@ -21264,7 +26097,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004797/zmtp_ex101.htm", "dataFiles": [], - "idx": 1170 + "idx": 1707 }, { "filingDate": "2015-11-02", @@ -21273,7 +26106,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004790/zmtp_8k.htm", "dataFiles": [], - "idx": 1171 + "idx": 1708 }, { "filingDate": "2015-11-02", @@ -21282,7 +26115,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004790/zmtp_ex991.htm", "dataFiles": [], - "idx": 1172 + "idx": 1709 }, { "filingDate": "2015-11-02", @@ -21291,7 +26124,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004790/zoom.jpg", "dataFiles": [], - "idx": 1173 + "idx": 1710 }, { "filingDate": "2015-10-29", @@ -21300,7 +26133,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004749/zoom_def14a.htm", "dataFiles": [], - "idx": 1174 + "idx": 1711 }, { "filingDate": "2015-10-29", @@ -21309,7 +26142,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004749/sig.jpg", "dataFiles": [], - "idx": 1175 + "idx": 1712 }, { "filingDate": "2015-10-19", @@ -21318,7 +26151,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004668/zmtp_pre14a.htm", "dataFiles": [], - "idx": 1176 + "idx": 1713 }, { "filingDate": "2015-10-19", @@ -21327,7 +26160,7 @@ export const fileList = [ "formDescription": "Other preliminary proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004668/img001.jpg", "dataFiles": [], - "idx": 1177 + "idx": 1714 }, { "filingDate": "2015-10-19", @@ -21336,7 +26169,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004659/zmtp_8k.htm", "dataFiles": [], - "idx": 1178 + "idx": 1715 }, { "filingDate": "2015-10-19", @@ -21345,7 +26178,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004659/zmtp_ex991.htm", "dataFiles": [], - "idx": 1179 + "idx": 1716 }, { "filingDate": "2015-10-19", @@ -21354,7 +26187,25 @@ export const fileList = [ "formDescription": "Current report, items 5.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004659/zoom.jpg", "dataFiles": [], - "idx": 1180 + "idx": 1717 + }, + { + "filingDate": "2015-10-16", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000018/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1718 + }, + { + "filingDate": "2015-10-16", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000018/primary_doc.xml", + "dataFiles": [], + "idx": 1719 }, { "filingDate": "2015-10-08", @@ -21363,7 +26214,7 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06b", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000017/xslFormDX01/primary_doc.xml", "dataFiles": [], - "idx": 1181 + "idx": 1720 }, { "filingDate": "2015-10-08", @@ -21372,7 +26223,25 @@ export const fileList = [ "formDescription": "Notice of Exempt Offering of Securities, item 06b", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000017/primary_doc.xml", "dataFiles": [], - "idx": 1182 + "idx": 1721 + }, + { + "filingDate": "2015-09-30", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448815004446/xslF345X03/issuerdirect_section16.xml", + "dataFiles": [], + "idx": 1722 + }, + { + "filingDate": "2015-09-30", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448815004446/issuerdirect_section16.xml", + "dataFiles": [], + "idx": 1723 }, { "filingDate": "2015-09-29", @@ -21381,7 +26250,133 @@ export const fileList = [ "formDescription": "General Statement of Acquisition of Beneficial Ownership", "fileLink": "https://www.sec.gov/Archives/edgar/data/1169253/000091957415007091/d6837199.htm", "dataFiles": [], - "idx": 1183 + "idx": 1724 + }, + { + "filingDate": "2015-09-29", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000016/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1725 + }, + { + "filingDate": "2015-09-29", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000016/primary_doc.xml", + "dataFiles": [], + "idx": 1726 + }, + { + "filingDate": "2015-09-29", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000015/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1727 + }, + { + "filingDate": "2015-09-29", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000015/primary_doc.xml", + "dataFiles": [], + "idx": 1728 + }, + { + "filingDate": "2015-09-29", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1169253/000091957415007083/xslF345X02/p6838259.xml", + "dataFiles": [], + "idx": 1729 + }, + { + "filingDate": "2015-09-29", + "form": "3", + "description": "OWNERSHIP DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1169253/000091957415007083/p6838259.xml", + "dataFiles": [], + "idx": 1730 + }, + { + "filingDate": "2015-09-29", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000014/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 1731 + }, + { + "filingDate": "2015-09-29", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000014/primary_doc.xml", + "dataFiles": [], + "idx": 1732 + }, + { + "filingDate": "2015-09-29", + "form": "3", + "description": "POA", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000014/gpatterson.txt", + "dataFiles": [], + "idx": 1733 + }, + { + "filingDate": "2015-09-28", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165410415000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1734 + }, + { + "filingDate": "2015-09-28", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165410415000002/primary_doc.xml", + "dataFiles": [], + "idx": 1735 + }, + { + "filingDate": "2015-09-28", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165410415000001/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 1736 + }, + { + "filingDate": "2015-09-28", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165410415000001/primary_doc.xml", + "dataFiles": [], + "idx": 1737 + }, + { + "filingDate": "2015-09-28", + "form": "3", + "description": "POA", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000165410415000001/pfrank.txt", + "dataFiles": [], + "idx": 1738 }, { "filingDate": "2015-09-28", @@ -21390,7 +26385,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004390/zmtp_8k.htm", "dataFiles": [], - "idx": 1184 + "idx": 1739 }, { "filingDate": "2015-09-28", @@ -21399,7 +26394,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004390/zmtp_ex101.htm", "dataFiles": [], - "idx": 1185 + "idx": 1740 }, { "filingDate": "2015-09-28", @@ -21408,7 +26403,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004390/zmtp_ex991.htm", "dataFiles": [], - "idx": 1186 + "idx": 1741 }, { "filingDate": "2015-09-28", @@ -21417,7 +26412,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 3.02, 5.02, 7.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004390/zoom.jpg", "dataFiles": [], - "idx": 1187 + "idx": 1742 }, { "filingDate": "2015-08-26", @@ -21426,7 +26421,7 @@ export const fileList = [ "formDescription": "Current report, item 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004071/zmtp_8k.htm", "dataFiles": [], - "idx": 1188 + "idx": 1743 }, { "filingDate": "2015-08-26", @@ -21435,7 +26430,7 @@ export const fileList = [ "formDescription": "Current report, item 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004071/zmtp_ex991.htm", "dataFiles": [], - "idx": 1189 + "idx": 1744 }, { "filingDate": "2015-08-26", @@ -21444,7 +26439,7 @@ export const fileList = [ "formDescription": "Current report, item 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815004071/zoom.jpg", "dataFiles": [], - "idx": 1190 + "idx": 1745 }, { "filingDate": "2015-08-13", @@ -21478,7 +26473,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003795/zmtp-20150630_pre.xml" } ], - "idx": 1191 + "idx": 1746 }, { "filingDate": "2015-08-13", @@ -21512,7 +26507,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003795/zmtp-20150630_pre.xml" } ], - "idx": 1192 + "idx": 1747 }, { "filingDate": "2015-08-13", @@ -21546,7 +26541,43 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003795/zmtp-20150630_pre.xml" } ], - "idx": 1193 + "idx": 1748 + }, + { + "filingDate": "2015-08-05", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000146776115000013/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1749 + }, + { + "filingDate": "2015-08-05", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000146776115000013/primary_doc.xml", + "dataFiles": [], + "idx": 1750 + }, + { + "filingDate": "2015-08-05", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776115000012/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1751 + }, + { + "filingDate": "2015-08-05", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776115000012/primary_doc.xml", + "dataFiles": [], + "idx": 1752 }, { "filingDate": "2015-08-03", @@ -21555,7 +26586,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003528/zmtp_8k.htm", "dataFiles": [], - "idx": 1194 + "idx": 1753 }, { "filingDate": "2015-08-03", @@ -21564,7 +26595,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003528/zmtp_ex991.htm", "dataFiles": [], - "idx": 1195 + "idx": 1754 }, { "filingDate": "2015-08-03", @@ -21573,7 +26604,97 @@ export const fileList = [ "formDescription": "Current report, items 7.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003528/logo.jpg", "dataFiles": [], - "idx": 1196 + "idx": 1755 + }, + { + "filingDate": "2015-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776115000011/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1756 + }, + { + "filingDate": "2015-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776115000011/primary_doc.xml", + "dataFiles": [], + "idx": 1757 + }, + { + "filingDate": "2015-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000010/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1758 + }, + { + "filingDate": "2015-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000010/primary_doc.xml", + "dataFiles": [], + "idx": 1759 + }, + { + "filingDate": "2015-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000009/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1760 + }, + { + "filingDate": "2015-07-13", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000009/primary_doc.xml", + "dataFiles": [], + "idx": 1761 + }, + { + "filingDate": "2015-07-08", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000008/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1762 + }, + { + "filingDate": "2015-07-08", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000008/primary_doc.xml", + "dataFiles": [], + "idx": 1763 + }, + { + "filingDate": "2015-07-02", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776115000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1764 + }, + { + "filingDate": "2015-07-02", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776115000007/primary_doc.xml", + "dataFiles": [], + "idx": 1765 }, { "filingDate": "2015-06-29", @@ -21582,7 +26703,7 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003174/zmtp_8k.htm", "dataFiles": [], - "idx": 1197 + "idx": 1766 }, { "filingDate": "2015-06-25 12:00:00", @@ -21591,7 +26712,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999515001745/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 1198 + "idx": 1767 }, { "filingDate": "2015-06-25 12:00:00", @@ -21600,7 +26721,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999515001745/primary_doc.xml", "dataFiles": [], - "idx": 1199 + "idx": 1768 }, { "filingDate": "2015-06-24", @@ -21609,7 +26730,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003124/filename1.htm", "dataFiles": [], - "idx": 1200 + "idx": 1769 }, { "filingDate": "2015-06-24", @@ -21618,7 +26739,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003124/zoom.jpg", "dataFiles": [], - "idx": 1201 + "idx": 1770 }, { "filingDate": "2015-06-22", @@ -21652,7 +26773,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1202 + "idx": 1771 }, { "filingDate": "2015-06-22", @@ -21686,7 +26807,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1203 + "idx": 1772 }, { "filingDate": "2015-06-22", @@ -21720,7 +26841,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1204 + "idx": 1773 }, { "filingDate": "2015-06-22", @@ -21754,7 +26875,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1205 + "idx": 1774 }, { "filingDate": "2015-06-22", @@ -21788,7 +26909,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1206 + "idx": 1775 }, { "filingDate": "2015-06-22", @@ -21822,7 +26943,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1207 + "idx": 1776 }, { "filingDate": "2015-06-22", @@ -21856,7 +26977,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1208 + "idx": 1777 }, { "filingDate": "2015-06-22", @@ -21890,7 +27011,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1209 + "idx": 1778 }, { "filingDate": "2015-06-22", @@ -21924,7 +27045,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1210 + "idx": 1779 }, { "filingDate": "2015-06-22", @@ -21958,7 +27079,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1211 + "idx": 1780 }, { "filingDate": "2015-06-22", @@ -21992,7 +27113,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1212 + "idx": 1781 }, { "filingDate": "2015-06-22", @@ -22026,7 +27147,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1213 + "idx": 1782 }, { "filingDate": "2015-06-22", @@ -22060,7 +27181,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1214 + "idx": 1783 }, { "filingDate": "2015-06-22", @@ -22094,7 +27215,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1215 + "idx": 1784 }, { "filingDate": "2015-06-22", @@ -22128,7 +27249,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1216 + "idx": 1785 }, { "filingDate": "2015-06-22", @@ -22162,7 +27283,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1217 + "idx": 1786 }, { "filingDate": "2015-06-22", @@ -22196,7 +27317,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1218 + "idx": 1787 }, { "filingDate": "2015-06-22", @@ -22230,7 +27351,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1219 + "idx": 1788 }, { "filingDate": "2015-06-22", @@ -22264,7 +27385,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1220 + "idx": 1789 }, { "filingDate": "2015-06-22", @@ -22298,7 +27419,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1221 + "idx": 1790 }, { "filingDate": "2015-06-22", @@ -22332,7 +27453,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1222 + "idx": 1791 }, { "filingDate": "2015-06-22", @@ -22366,7 +27487,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1223 + "idx": 1792 }, { "filingDate": "2015-06-22", @@ -22400,7 +27521,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815003108/zmtp-20150331_pre.xml" } ], - "idx": 1224 + "idx": 1793 }, { "filingDate": "2015-06-03", @@ -22409,7 +27530,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000015029579/filename1.pdf", "dataFiles": [], - "idx": 1225 + "idx": 1794 }, { "filingDate": "2015-05-28", @@ -22443,7 +27564,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1226 + "idx": 1795 }, { "filingDate": "2015-05-28", @@ -22477,7 +27598,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1227 + "idx": 1796 }, { "filingDate": "2015-05-28", @@ -22511,7 +27632,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1228 + "idx": 1797 }, { "filingDate": "2015-05-28", @@ -22545,7 +27666,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1229 + "idx": 1798 }, { "filingDate": "2015-05-28", @@ -22579,7 +27700,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1230 + "idx": 1799 }, { "filingDate": "2015-05-28", @@ -22613,7 +27734,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1231 + "idx": 1800 }, { "filingDate": "2015-05-28", @@ -22647,7 +27768,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1232 + "idx": 1801 }, { "filingDate": "2015-05-28", @@ -22681,7 +27802,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1233 + "idx": 1802 }, { "filingDate": "2015-05-28", @@ -22715,7 +27836,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1234 + "idx": 1803 }, { "filingDate": "2015-05-28", @@ -22749,7 +27870,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002753/zmtp-20150331_pre.xml" } ], - "idx": 1235 + "idx": 1804 }, { "filingDate": "2015-05-28", @@ -22758,7 +27879,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002748/zmtp_sd.htm", "dataFiles": [], - "idx": 1236 + "idx": 1805 }, { "filingDate": "2015-05-28", @@ -22767,7 +27888,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002748/zmtp_ex101.htm", "dataFiles": [], - "idx": 1237 + "idx": 1806 }, { "filingDate": "2015-05-28", @@ -22776,7 +27897,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002748/image0.jpg", "dataFiles": [], - "idx": 1238 + "idx": 1807 }, { "filingDate": "2015-05-18", @@ -22785,7 +27906,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002554/zmtp_8k.htm", "dataFiles": [], - "idx": 1239 + "idx": 1808 }, { "filingDate": "2015-05-18", @@ -22794,7 +27915,7 @@ export const fileList = [ "formDescription": "Current report, items 7.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002554/zmtp_ex991.htm", "dataFiles": [], - "idx": 1240 + "idx": 1809 }, { "filingDate": "2015-05-18", @@ -22803,7 +27924,61 @@ export const fileList = [ "formDescription": "Current report, items 7.01, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002554/logo.jpg", "dataFiles": [], - "idx": 1241 + "idx": 1810 + }, + { + "filingDate": "2015-05-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776115000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1811 + }, + { + "filingDate": "2015-05-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776115000006/primary_doc.xml", + "dataFiles": [], + "idx": 1812 + }, + { + "filingDate": "2015-05-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776115000005/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1813 + }, + { + "filingDate": "2015-05-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776115000005/primary_doc.xml", + "dataFiles": [], + "idx": 1814 + }, + { + "filingDate": "2015-05-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776115000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1815 + }, + { + "filingDate": "2015-05-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776115000004/primary_doc.xml", + "dataFiles": [], + "idx": 1816 }, { "filingDate": "2015-05-12", @@ -22812,7 +27987,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000152996615000001/sfi13g1ZMPTsecconfirmed.txt", "dataFiles": [], - "idx": 1242 + "idx": 1817 }, { "filingDate": "2015-05-11", @@ -22846,7 +28021,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002252/zmtp-20150331_pre.xml" } ], - "idx": 1243 + "idx": 1818 }, { "filingDate": "2015-05-11", @@ -22880,7 +28055,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002252/zmtp-20150331_pre.xml" } ], - "idx": 1244 + "idx": 1819 }, { "filingDate": "2015-05-11", @@ -22914,7 +28089,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002252/zmtp-20150331_pre.xml" } ], - "idx": 1245 + "idx": 1820 }, { "filingDate": "2015-05-11", @@ -22923,7 +28098,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002241/zmtp_8k.htm", "dataFiles": [], - "idx": 1246 + "idx": 1821 }, { "filingDate": "2015-05-11", @@ -22932,7 +28107,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002241/zmtp_ex991.htm", "dataFiles": [], - "idx": 1247 + "idx": 1822 }, { "filingDate": "2015-05-11", @@ -22941,7 +28116,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002241/zoom.jpg", "dataFiles": [], - "idx": 1248 + "idx": 1823 }, { "filingDate": "2015-05-06", @@ -22950,7 +28125,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815002140/zmtp_defa14a.htm", "dataFiles": [], - "idx": 1249 + "idx": 1824 }, { "filingDate": "2015-04-29", @@ -22959,7 +28134,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815001963/zmtp_def14a.htm", "dataFiles": [], - "idx": 1250 + "idx": 1825 }, { "filingDate": "2015-04-29", @@ -22968,7 +28143,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815001963/img001.jpg", "dataFiles": [], - "idx": 1251 + "idx": 1826 }, { "filingDate": "2015-03-24", @@ -23002,7 +28177,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp-20141231_pre.xml" } ], - "idx": 1252 + "idx": 1827 }, { "filingDate": "2015-03-24", @@ -23036,7 +28211,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp-20141231_pre.xml" } ], - "idx": 1253 + "idx": 1828 }, { "filingDate": "2015-03-24", @@ -23070,7 +28245,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp-20141231_pre.xml" } ], - "idx": 1254 + "idx": 1829 }, { "filingDate": "2015-03-24", @@ -23104,7 +28279,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp-20141231_pre.xml" } ], - "idx": 1255 + "idx": 1830 }, { "filingDate": "2015-03-24", @@ -23138,7 +28313,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815001308/zmtp-20141231_pre.xml" } ], - "idx": 1256 + "idx": 1831 }, { "filingDate": "2015-02-24", @@ -23147,7 +28322,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815000807/zmtp_8k.htm", "dataFiles": [], - "idx": 1257 + "idx": 1832 }, { "filingDate": "2015-02-24", @@ -23156,7 +28331,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815000807/zmpt_ex991.htm", "dataFiles": [], - "idx": 1258 + "idx": 1833 }, { "filingDate": "2015-02-24", @@ -23165,7 +28340,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448815000807/zmpt_ex9910.jpg", "dataFiles": [], - "idx": 1259 + "idx": 1834 }, { "filingDate": "2015-02-12", @@ -23174,7 +28349,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000135448815000592/zoom_sc13ga.htm", "dataFiles": [], - "idx": 1260 + "idx": 1835 }, { "filingDate": "2015-02-12", @@ -23183,7 +28358,61 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448815000590/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1261 + "idx": 1836 + }, + { + "filingDate": "2015-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1837 + }, + { + "filingDate": "2015-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776115000003/primary_doc.xml", + "dataFiles": [], + "idx": 1838 + }, + { + "filingDate": "2015-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776115000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1839 + }, + { + "filingDate": "2015-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776115000002/primary_doc.xml", + "dataFiles": [], + "idx": 1840 + }, + { + "filingDate": "2015-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1841 + }, + { + "filingDate": "2015-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776115000001/primary_doc.xml", + "dataFiles": [], + "idx": 1842 }, { "filingDate": "2014-11-14", @@ -23217,7 +28446,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814005722/zmtp-20140930_pre.xml" } ], - "idx": 1262 + "idx": 1843 }, { "filingDate": "2014-11-14", @@ -23251,7 +28480,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814005722/zmtp-20140930_pre.xml" } ], - "idx": 1263 + "idx": 1844 }, { "filingDate": "2014-11-14", @@ -23285,7 +28514,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814005722/zmtp-20140930_pre.xml" } ], - "idx": 1264 + "idx": 1845 }, { "filingDate": "2014-10-31", @@ -23294,7 +28523,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814005326/zmtp_8k.htm", "dataFiles": [], - "idx": 1265 + "idx": 1846 }, { "filingDate": "2014-10-31", @@ -23303,7 +28532,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814005326/zmtp_ex991.htm", "dataFiles": [], - "idx": 1266 + "idx": 1847 }, { "filingDate": "2014-10-31", @@ -23312,7 +28541,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814005326/logo.jpg", "dataFiles": [], - "idx": 1267 + "idx": 1848 }, { "filingDate": "2014-08-14", @@ -23346,7 +28575,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814004188/zmtp-20140630_pre.xml" } ], - "idx": 1268 + "idx": 1849 }, { "filingDate": "2014-08-14", @@ -23380,7 +28609,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814004188/zmtp-20140630_pre.xml" } ], - "idx": 1269 + "idx": 1850 }, { "filingDate": "2014-08-14", @@ -23414,7 +28643,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814004188/zmtp-20140630_pre.xml" } ], - "idx": 1270 + "idx": 1851 }, { "filingDate": "2014-08-04", @@ -23423,7 +28652,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814003834/zmtp_8k.htm", "dataFiles": [], - "idx": 1271 + "idx": 1852 }, { "filingDate": "2014-08-04", @@ -23432,7 +28661,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814003834/zmtp_ex991.htm", "dataFiles": [], - "idx": 1272 + "idx": 1853 }, { "filingDate": "2014-08-04", @@ -23441,7 +28670,61 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814003834/zoom.jpg", "dataFiles": [], - "idx": 1273 + "idx": 1854 + }, + { + "filingDate": "2014-07-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776114000009/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1855 + }, + { + "filingDate": "2014-07-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776114000009/primary_doc.xml", + "dataFiles": [], + "idx": 1856 + }, + { + "filingDate": "2014-07-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776114000008/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1857 + }, + { + "filingDate": "2014-07-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776114000008/primary_doc.xml", + "dataFiles": [], + "idx": 1858 + }, + { + "filingDate": "2014-07-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776114000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1859 + }, + { + "filingDate": "2014-07-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776114000007/primary_doc.xml", + "dataFiles": [], + "idx": 1860 }, { "filingDate": "2014-06-26", @@ -23450,7 +28733,7 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814003470/zmtp_8k.htm", "dataFiles": [], - "idx": 1274 + "idx": 1861 }, { "filingDate": "2014-05-29", @@ -23459,7 +28742,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814003019/zmtp_sd.htm", "dataFiles": [], - "idx": 1275 + "idx": 1862 }, { "filingDate": "2014-05-29", @@ -23468,7 +28751,7 @@ export const fileList = [ "formDescription": "Specialized disclosure report", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814003019/zmtp_ex101.htm", "dataFiles": [], - "idx": 1276 + "idx": 1863 }, { "filingDate": "2014-05-15", @@ -23502,7 +28785,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002625/zmtp-20140331_pre.xml" } ], - "idx": 1277 + "idx": 1864 }, { "filingDate": "2014-05-15", @@ -23536,7 +28819,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002625/zmtp-20140331_pre.xml" } ], - "idx": 1278 + "idx": 1865 }, { "filingDate": "2014-05-15", @@ -23570,7 +28853,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002625/zmtp-20140331_pre.xml" } ], - "idx": 1279 + "idx": 1866 }, { "filingDate": "2014-05-14", @@ -23579,7 +28862,7 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002572/zmtp_8k.htm", "dataFiles": [], - "idx": 1280 + "idx": 1867 }, { "filingDate": "2014-05-09", @@ -23588,7 +28871,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002376/zmtp_defa14a.htm", "dataFiles": [], - "idx": 1281 + "idx": 1868 }, { "filingDate": "2014-05-09", @@ -23597,7 +28880,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002376/sig.jpg", "dataFiles": [], - "idx": 1282 + "idx": 1869 }, { "filingDate": "2014-05-07", @@ -23606,7 +28889,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002300/zmtp_8k.htm", "dataFiles": [], - "idx": 1283 + "idx": 1870 }, { "filingDate": "2014-05-07", @@ -23615,7 +28898,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002300/zmtp_ex991.htm", "dataFiles": [], - "idx": 1284 + "idx": 1871 }, { "filingDate": "2014-05-07", @@ -23624,7 +28907,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002300/logo.jpg", "dataFiles": [], - "idx": 1285 + "idx": 1872 }, { "filingDate": "2014-04-30", @@ -23633,7 +28916,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002122/zmtp_def14a.htm", "dataFiles": [], - "idx": 1286 + "idx": 1873 }, { "filingDate": "2014-04-30", @@ -23642,7 +28925,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814002122/manning.jpg", "dataFiles": [], - "idx": 1287 + "idx": 1874 }, { "filingDate": "2014-03-31", @@ -23676,7 +28959,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmtp-20131231_pre.xml" } ], - "idx": 1288 + "idx": 1875 }, { "filingDate": "2014-03-31", @@ -23710,7 +28993,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmtp-20131231_pre.xml" } ], - "idx": 1289 + "idx": 1876 }, { "filingDate": "2014-03-31", @@ -23744,7 +29027,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmtp-20131231_pre.xml" } ], - "idx": 1290 + "idx": 1877 }, { "filingDate": "2014-03-31", @@ -23778,7 +29061,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmtp-20131231_pre.xml" } ], - "idx": 1291 + "idx": 1878 }, { "filingDate": "2014-03-31", @@ -23812,7 +29095,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmtp-20131231_pre.xml" } ], - "idx": 1292 + "idx": 1879 }, { "filingDate": "2014-03-31", @@ -23846,7 +29129,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmtp-20131231_pre.xml" } ], - "idx": 1293 + "idx": 1880 }, { "filingDate": "2014-03-31", @@ -23880,7 +29163,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814001518/zmtp-20131231_pre.xml" } ], - "idx": 1294 + "idx": 1881 }, { "filingDate": "2014-02-25", @@ -23889,7 +29172,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814000874/zoom_8k.htm", "dataFiles": [], - "idx": 1295 + "idx": 1882 }, { "filingDate": "2014-02-25", @@ -23898,7 +29181,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814000874/zoom_ex991.htm", "dataFiles": [], - "idx": 1296 + "idx": 1883 }, { "filingDate": "2014-02-25", @@ -23907,7 +29190,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814000874/logo.jpg", "dataFiles": [], - "idx": 1297 + "idx": 1884 }, { "filingDate": "2014-02-14", @@ -23916,7 +29199,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000152996614000002/sfi13g1ZMPT13.txt", "dataFiles": [], - "idx": 1298 + "idx": 1885 }, { "filingDate": "2014-02-12", @@ -23925,7 +29208,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814000665/zmpt_sc13ga.htm", "dataFiles": [], - "idx": 1299 + "idx": 1886 }, { "filingDate": "2014-02-12", @@ -23934,7 +29217,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448814000659/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1300 + "idx": 1887 }, { "filingDate": "2014-02-12", @@ -23943,7 +29226,43 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000135448814000657/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1301 + "idx": 1888 + }, + { + "filingDate": "2014-01-31", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776114000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1889 + }, + { + "filingDate": "2014-01-31", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776114000006/primary_doc.xml", + "dataFiles": [], + "idx": 1890 + }, + { + "filingDate": "2014-01-31", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776114000005/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 1891 + }, + { + "filingDate": "2014-01-31", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000146776114000005/primary_doc.xml", + "dataFiles": [], + "idx": 1892 }, { "filingDate": "2014-01-29", @@ -23952,7 +29271,79 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448814000381/zmtp_8k.htm", "dataFiles": [], - "idx": 1302 + "idx": 1893 + }, + { + "filingDate": "2014-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776114000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1894 + }, + { + "filingDate": "2014-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776114000004/primary_doc.xml", + "dataFiles": [], + "idx": 1895 + }, + { + "filingDate": "2014-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776114000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1896 + }, + { + "filingDate": "2014-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776114000003/primary_doc.xml", + "dataFiles": [], + "idx": 1897 + }, + { + "filingDate": "2014-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776114000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1898 + }, + { + "filingDate": "2014-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776114000002/primary_doc.xml", + "dataFiles": [], + "idx": 1899 + }, + { + "filingDate": "2014-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776114000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1900 + }, + { + "filingDate": "2014-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776114000001/primary_doc.xml", + "dataFiles": [], + "idx": 1901 }, { "filingDate": "2013-11-14", @@ -23986,7 +29377,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813006357/zmtp-20130930_pre.xml" } ], - "idx": 1303 + "idx": 1902 }, { "filingDate": "2013-11-14", @@ -24020,7 +29411,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813006357/zmtp-20130930_pre.xml" } ], - "idx": 1304 + "idx": 1903 }, { "filingDate": "2013-11-14", @@ -24054,7 +29445,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813006357/zmtp-20130930_pre.xml" } ], - "idx": 1305 + "idx": 1904 }, { "filingDate": "2013-11-05", @@ -24063,7 +29454,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813005978/zmtp_8k.htm", "dataFiles": [], - "idx": 1306 + "idx": 1905 }, { "filingDate": "2013-11-05", @@ -24072,7 +29463,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813005978/zmtp_ex991.htm", "dataFiles": [], - "idx": 1307 + "idx": 1906 }, { "filingDate": "2013-11-05", @@ -24081,7 +29472,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813005978/zoom.jpg", "dataFiles": [], - "idx": 1308 + "idx": 1907 }, { "filingDate": "2013-08-30", @@ -24090,7 +29481,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004975/zmtp_sc13g.htm", "dataFiles": [], - "idx": 1309 + "idx": 1908 }, { "filingDate": "2013-08-27", @@ -24099,7 +29490,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000135448813004903/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1310 + "idx": 1909 }, { "filingDate": "2013-08-27", @@ -24108,7 +29499,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004895/zmtp_8k.htm", "dataFiles": [], - "idx": 1311 + "idx": 1910 }, { "filingDate": "2013-08-27", @@ -24117,7 +29508,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004895/zmtp_ex991.htm", "dataFiles": [], - "idx": 1312 + "idx": 1911 }, { "filingDate": "2013-08-27", @@ -24126,7 +29517,25 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004895/zoom.jpg", "dataFiles": [], - "idx": 1313 + "idx": 1912 + }, + { + "filingDate": "2013-08-27", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776113000012/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1913 + }, + { + "filingDate": "2013-08-27", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776113000012/primary_doc.xml", + "dataFiles": [], + "idx": 1914 }, { "filingDate": "2013-08-14", @@ -24160,7 +29569,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004518/zmtp-20130630_pre.xml" } ], - "idx": 1314 + "idx": 1915 }, { "filingDate": "2013-08-14", @@ -24194,7 +29603,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004518/zmtp-20130630_pre.xml" } ], - "idx": 1315 + "idx": 1916 }, { "filingDate": "2013-08-14", @@ -24228,7 +29637,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004518/zmtp-20130630_pre.xml" } ], - "idx": 1316 + "idx": 1917 }, { "filingDate": "2013-08-05", @@ -24237,7 +29646,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004205/zmtp_8k.htm", "dataFiles": [], - "idx": 1317 + "idx": 1918 }, { "filingDate": "2013-08-05", @@ -24246,7 +29655,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004205/zmtp_ex991.htm", "dataFiles": [], - "idx": 1318 + "idx": 1919 }, { "filingDate": "2013-08-05", @@ -24255,7 +29664,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813004205/zoom.jpg", "dataFiles": [], - "idx": 1319 + "idx": 1920 }, { "filingDate": "2013-07-19 16:00:00", @@ -24264,7 +29673,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999513002138/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 1320 + "idx": 1921 }, { "filingDate": "2013-07-19 16:00:00", @@ -24273,7 +29682,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999513002138/primary_doc.xml", "dataFiles": [], - "idx": 1321 + "idx": 1922 }, { "filingDate": "2013-07-19", @@ -24282,7 +29691,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003978/filename1.htm", "dataFiles": [], - "idx": 1322 + "idx": 1923 }, { "filingDate": "2013-07-19", @@ -24291,7 +29700,79 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003978/zoom.jpg", "dataFiles": [], - "idx": 1323 + "idx": 1924 + }, + { + "filingDate": "2013-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776113000011/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1925 + }, + { + "filingDate": "2013-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776113000011/primary_doc.xml", + "dataFiles": [], + "idx": 1926 + }, + { + "filingDate": "2013-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776113000010/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1927 + }, + { + "filingDate": "2013-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776113000010/primary_doc.xml", + "dataFiles": [], + "idx": 1928 + }, + { + "filingDate": "2013-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776113000009/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1929 + }, + { + "filingDate": "2013-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776113000009/primary_doc.xml", + "dataFiles": [], + "idx": 1930 + }, + { + "filingDate": "2013-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776113000008/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 1931 + }, + { + "filingDate": "2013-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776113000008/primary_doc.xml", + "dataFiles": [], + "idx": 1932 }, { "filingDate": "2013-07-10", @@ -24300,7 +29781,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003856/filename1.htm", "dataFiles": [], - "idx": 1324 + "idx": 1933 }, { "filingDate": "2013-07-10", @@ -24309,7 +29790,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003856/logo.jpg", "dataFiles": [], - "idx": 1325 + "idx": 1934 }, { "filingDate": "2013-07-10", @@ -24318,7 +29799,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003854/filename1.htm", "dataFiles": [], - "idx": 1326 + "idx": 1935 }, { "filingDate": "2013-07-10", @@ -24327,7 +29808,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003854/logo.jpg", "dataFiles": [], - "idx": 1327 + "idx": 1936 }, { "filingDate": "2013-07-10", @@ -24361,7 +29842,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1328 + "idx": 1937 }, { "filingDate": "2013-07-10", @@ -24395,7 +29876,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1329 + "idx": 1938 }, { "filingDate": "2013-07-10", @@ -24429,7 +29910,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1330 + "idx": 1939 }, { "filingDate": "2013-07-10", @@ -24463,7 +29944,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1331 + "idx": 1940 }, { "filingDate": "2013-07-10", @@ -24497,7 +29978,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1332 + "idx": 1941 }, { "filingDate": "2013-07-10", @@ -24531,7 +30012,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1333 + "idx": 1942 }, { "filingDate": "2013-07-10", @@ -24565,7 +30046,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1334 + "idx": 1943 }, { "filingDate": "2013-07-10", @@ -24599,7 +30080,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1335 + "idx": 1944 }, { "filingDate": "2013-07-10", @@ -24633,7 +30114,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003852/zmtp-20130331_pre.xml" } ], - "idx": 1336 + "idx": 1945 }, { "filingDate": "2013-07-09", @@ -24642,7 +30123,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000013037175/filename1.pdf", "dataFiles": [], - "idx": 1337 + "idx": 1946 }, { "filingDate": "2013-07-09", @@ -24651,7 +30132,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000013037168/filename1.pdf", "dataFiles": [], - "idx": 1338 + "idx": 1947 }, { "filingDate": "2013-07-02", @@ -24660,7 +30141,7 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003753/zmtp_8k.htm", "dataFiles": [], - "idx": 1339 + "idx": 1948 }, { "filingDate": "2013-07-01", @@ -24669,7 +30150,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003720/filename1.htm", "dataFiles": [], - "idx": 1340 + "idx": 1949 }, { "filingDate": "2013-07-01", @@ -24678,7 +30159,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003720/logo.jpg", "dataFiles": [], - "idx": 1341 + "idx": 1950 }, { "filingDate": "2013-07-01", @@ -24687,7 +30168,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003718/filename1.htm", "dataFiles": [], - "idx": 1342 + "idx": 1951 }, { "filingDate": "2013-07-01", @@ -24696,7 +30177,7 @@ export const fileList = [ "formDescription": "[Cover]Correspondence", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003718/logo.jpg", "dataFiles": [], - "idx": 1343 + "idx": 1952 }, { "filingDate": "2013-07-01", @@ -24730,7 +30211,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1344 + "idx": 1953 }, { "filingDate": "2013-07-01", @@ -24764,7 +30245,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1345 + "idx": 1954 }, { "filingDate": "2013-07-01", @@ -24798,7 +30279,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1346 + "idx": 1955 }, { "filingDate": "2013-07-01", @@ -24832,7 +30313,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1347 + "idx": 1956 }, { "filingDate": "2013-07-01", @@ -24866,7 +30347,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1348 + "idx": 1957 }, { "filingDate": "2013-07-01", @@ -24900,7 +30381,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1349 + "idx": 1958 }, { "filingDate": "2013-07-01", @@ -24934,7 +30415,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1350 + "idx": 1959 }, { "filingDate": "2013-07-01", @@ -24968,7 +30449,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1351 + "idx": 1960 }, { "filingDate": "2013-07-01", @@ -25002,7 +30483,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1352 + "idx": 1961 }, { "filingDate": "2013-07-01", @@ -25036,7 +30517,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1353 + "idx": 1962 }, { "filingDate": "2013-07-01", @@ -25070,7 +30551,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1354 + "idx": 1963 }, { "filingDate": "2013-07-01", @@ -25104,7 +30585,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1355 + "idx": 1964 }, { "filingDate": "2013-07-01", @@ -25138,7 +30619,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1356 + "idx": 1965 }, { "filingDate": "2013-07-01", @@ -25172,7 +30653,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1357 + "idx": 1966 }, { "filingDate": "2013-07-01", @@ -25206,7 +30687,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1358 + "idx": 1967 }, { "filingDate": "2013-07-01", @@ -25240,7 +30721,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003716/zmtp-20130331_pre.xml" } ], - "idx": 1359 + "idx": 1968 }, { "filingDate": "2013-06-25", @@ -25249,7 +30730,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000013034605/filename1.pdf", "dataFiles": [], - "idx": 1360 + "idx": 1969 }, { "filingDate": "2013-06-24", @@ -25258,7 +30739,7 @@ export const fileList = [ "formDescription": "[Cover]SEC-generated letter", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000000000013034412/filename1.pdf", "dataFiles": [], - "idx": 1361 + "idx": 1970 }, { "filingDate": "2013-05-29", @@ -25292,7 +30773,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1362 + "idx": 1971 }, { "filingDate": "2013-05-29", @@ -25326,7 +30807,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1363 + "idx": 1972 }, { "filingDate": "2013-05-29", @@ -25360,7 +30841,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1364 + "idx": 1973 }, { "filingDate": "2013-05-29", @@ -25394,7 +30875,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1365 + "idx": 1974 }, { "filingDate": "2013-05-29", @@ -25428,7 +30909,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1366 + "idx": 1975 }, { "filingDate": "2013-05-29", @@ -25462,7 +30943,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1367 + "idx": 1976 }, { "filingDate": "2013-05-29", @@ -25496,7 +30977,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1368 + "idx": 1977 }, { "filingDate": "2013-05-29", @@ -25530,7 +31011,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1369 + "idx": 1978 }, { "filingDate": "2013-05-29", @@ -25564,7 +31045,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003210/zmtp-20130331_pre.xml" } ], - "idx": 1370 + "idx": 1979 }, { "filingDate": "2013-05-20", @@ -25573,7 +31054,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003014/zmtp_8k.htm", "dataFiles": [], - "idx": 1371 + "idx": 1980 }, { "filingDate": "2013-05-20", @@ -25582,7 +31063,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003014/zmtp_ex991.htm", "dataFiles": [], - "idx": 1372 + "idx": 1981 }, { "filingDate": "2013-05-20", @@ -25591,7 +31072,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813003014/logo2.jpg", "dataFiles": [], - "idx": 1373 + "idx": 1982 }, { "filingDate": "2013-05-15", @@ -25625,7 +31106,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813002828/zmtp-20130331_pre.xml" } ], - "idx": 1374 + "idx": 1983 }, { "filingDate": "2013-05-15", @@ -25659,7 +31140,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813002828/zmtp-20130331_pre.xml" } ], - "idx": 1375 + "idx": 1984 }, { "filingDate": "2013-05-15", @@ -25693,7 +31174,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813002828/zmtp-20130331_pre.xml" } ], - "idx": 1376 + "idx": 1985 }, { "filingDate": "2013-05-08", @@ -25702,7 +31183,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813002498/zmtp_defa14a.htm", "dataFiles": [], - "idx": 1377 + "idx": 1986 }, { "filingDate": "2013-04-30", @@ -25711,7 +31192,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813002297/zmtp_sc14a.htm", "dataFiles": [], - "idx": 1378 + "idx": 1987 }, { "filingDate": "2013-04-30", @@ -25720,7 +31201,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813002297/img001.jpg", "dataFiles": [], - "idx": 1379 + "idx": 1988 }, { "filingDate": "2013-03-29", @@ -25754,7 +31235,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp-20121231_pre.xml" } ], - "idx": 1380 + "idx": 1989 }, { "filingDate": "2013-03-29", @@ -25788,7 +31269,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp-20121231_pre.xml" } ], - "idx": 1381 + "idx": 1990 }, { "filingDate": "2013-03-29", @@ -25822,7 +31303,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp-20121231_pre.xml" } ], - "idx": 1382 + "idx": 1991 }, { "filingDate": "2013-03-29", @@ -25856,7 +31337,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp-20121231_pre.xml" } ], - "idx": 1383 + "idx": 1992 }, { "filingDate": "2013-03-29", @@ -25890,7 +31371,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813001584/zmtp-20121231_pre.xml" } ], - "idx": 1384 + "idx": 1993 }, { "filingDate": "2013-03-01", @@ -25899,7 +31380,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813000948/zmpt_8k.htm", "dataFiles": [], - "idx": 1385 + "idx": 1994 }, { "filingDate": "2013-03-01", @@ -25908,7 +31389,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813000948/zmpt_ex991.htm", "dataFiles": [], - "idx": 1386 + "idx": 1995 }, { "filingDate": "2013-03-01", @@ -25917,7 +31398,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448813000948/zoom.jpg", "dataFiles": [], - "idx": 1387 + "idx": 1996 }, { "filingDate": "2013-02-15", @@ -25926,7 +31407,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000152996613000001/sfi13g1ZMPT.txt", "dataFiles": [], - "idx": 1388 + "idx": 1997 }, { "filingDate": "2013-02-13", @@ -25935,7 +31416,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000135448813000606/zmtp_sc13g.htm", "dataFiles": [], - "idx": 1389 + "idx": 1998 }, { "filingDate": "2013-02-13", @@ -25944,7 +31425,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448813000604/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1390 + "idx": 1999 }, { "filingDate": "2013-02-13", @@ -25953,7 +31434,133 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000153552613000002/dec312012.txt", "dataFiles": [], - "idx": 1391 + "idx": 2000 + }, + { + "filingDate": "2013-02-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776113000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2001 + }, + { + "filingDate": "2013-02-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776113000007/primary_doc.xml", + "dataFiles": [], + "idx": 2002 + }, + { + "filingDate": "2013-02-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776113000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2003 + }, + { + "filingDate": "2013-02-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776113000006/primary_doc.xml", + "dataFiles": [], + "idx": 2004 + }, + { + "filingDate": "2013-02-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776113000005/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2005 + }, + { + "filingDate": "2013-02-01", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776113000005/primary_doc.xml", + "dataFiles": [], + "idx": 2006 + }, + { + "filingDate": "2013-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776113000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2007 + }, + { + "filingDate": "2013-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776113000004/primary_doc.xml", + "dataFiles": [], + "idx": 2008 + }, + { + "filingDate": "2013-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776113000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2009 + }, + { + "filingDate": "2013-01-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776113000003/primary_doc.xml", + "dataFiles": [], + "idx": 2010 + }, + { + "filingDate": "2013-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776113000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2011 + }, + { + "filingDate": "2013-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776113000002/primary_doc.xml", + "dataFiles": [], + "idx": 2012 + }, + { + "filingDate": "2013-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776113000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2013 + }, + { + "filingDate": "2013-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776113000001/primary_doc.xml", + "dataFiles": [], + "idx": 2014 }, { "filingDate": "2012-12-21", @@ -25962,7 +31569,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812006565/zmtp_8k.htm", "dataFiles": [], - "idx": 1392 + "idx": 2015 }, { "filingDate": "2012-12-21", @@ -25971,7 +31578,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812006565/zmtp_ex101.htm", "dataFiles": [], - "idx": 1393 + "idx": 2016 }, { "filingDate": "2012-12-21", @@ -25980,7 +31587,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812006565/zmtp_ex102.htm", "dataFiles": [], - "idx": 1394 + "idx": 2017 }, { "filingDate": "2012-12-21", @@ -25989,7 +31596,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.03, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812006565/zmtp_ex101001.jpg", "dataFiles": [], - "idx": 1395 + "idx": 2018 }, { "filingDate": "2012-11-14", @@ -26023,7 +31630,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812005842/zmtp-20120930_pre.xml" } ], - "idx": 1396 + "idx": 2019 }, { "filingDate": "2012-11-14", @@ -26057,7 +31664,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812005842/zmtp-20120930_pre.xml" } ], - "idx": 1397 + "idx": 2020 }, { "filingDate": "2012-11-14", @@ -26091,7 +31698,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812005842/zmtp-20120930_pre.xml" } ], - "idx": 1398 + "idx": 2021 }, { "filingDate": "2012-11-06", @@ -26100,7 +31707,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812005571/zmtp_8k.htm", "dataFiles": [], - "idx": 1399 + "idx": 2022 }, { "filingDate": "2012-11-06", @@ -26109,7 +31716,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812005571/zmtp_ex991.htm", "dataFiles": [], - "idx": 1400 + "idx": 2023 }, { "filingDate": "2012-11-06", @@ -26118,7 +31725,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812005571/img001.jpg", "dataFiles": [], - "idx": 1401 + "idx": 2024 }, { "filingDate": "2012-08-14", @@ -26152,7 +31759,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812004157/zmtp-20120630_def.xml" } ], - "idx": 1402 + "idx": 2025 }, { "filingDate": "2012-08-14", @@ -26186,7 +31793,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812004157/zmtp-20120630_def.xml" } ], - "idx": 1403 + "idx": 2026 }, { "filingDate": "2012-08-14", @@ -26220,7 +31827,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812004157/zmtp-20120630_def.xml" } ], - "idx": 1404 + "idx": 2027 }, { "filingDate": "2012-08-02", @@ -26229,7 +31836,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812003806/zmtp_8k.htm", "dataFiles": [], - "idx": 1405 + "idx": 2028 }, { "filingDate": "2012-08-02", @@ -26238,7 +31845,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812003806/zmtp_991.htm", "dataFiles": [], - "idx": 1406 + "idx": 2029 }, { "filingDate": "2012-08-02", @@ -26247,7 +31854,79 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812003806/zoom.jpg", "dataFiles": [], - "idx": 1407 + "idx": 2030 + }, + { + "filingDate": "2012-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776112000008/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2031 + }, + { + "filingDate": "2012-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776112000008/primary_doc.xml", + "dataFiles": [], + "idx": 2032 + }, + { + "filingDate": "2012-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776112000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2033 + }, + { + "filingDate": "2012-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776112000007/primary_doc.xml", + "dataFiles": [], + "idx": 2034 + }, + { + "filingDate": "2012-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776112000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2035 + }, + { + "filingDate": "2012-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776112000006/primary_doc.xml", + "dataFiles": [], + "idx": 2036 + }, + { + "filingDate": "2012-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776112000005/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2037 + }, + { + "filingDate": "2012-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776112000005/primary_doc.xml", + "dataFiles": [], + "idx": 2038 }, { "filingDate": "2012-07-02", @@ -26256,7 +31935,7 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812003452/zmtp_8k.htm", "dataFiles": [], - "idx": 1408 + "idx": 2039 }, { "filingDate": "2012-05-15", @@ -26290,7 +31969,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002519/zmtp-20120331_def.xml" } ], - "idx": 1409 + "idx": 2040 }, { "filingDate": "2012-05-15", @@ -26324,7 +32003,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002519/zmtp-20120331_def.xml" } ], - "idx": 1410 + "idx": 2041 }, { "filingDate": "2012-05-15", @@ -26358,7 +32037,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002519/zmtp-20120331_def.xml" } ], - "idx": 1411 + "idx": 2042 }, { "filingDate": "2012-05-10", @@ -26367,7 +32046,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002287/zmtp_defa14a.htm", "dataFiles": [], - "idx": 1412 + "idx": 2043 }, { "filingDate": "2012-05-03", @@ -26376,7 +32055,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002133/zmtp_8k.htm", "dataFiles": [], - "idx": 1413 + "idx": 2044 }, { "filingDate": "2012-05-03", @@ -26385,7 +32064,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002133/zmtp_ex991.htm", "dataFiles": [], - "idx": 1414 + "idx": 2045 }, { "filingDate": "2012-05-03", @@ -26394,7 +32073,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002133/img001.jpg", "dataFiles": [], - "idx": 1415 + "idx": 2046 }, { "filingDate": "2012-04-30", @@ -26403,7 +32082,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002063/zmtp_def14a.htm", "dataFiles": [], - "idx": 1416 + "idx": 2047 }, { "filingDate": "2012-04-30", @@ -26412,7 +32091,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812002063/img001.jpg", "dataFiles": [], - "idx": 1417 + "idx": 2048 }, { "filingDate": "2012-04-13", @@ -26421,7 +32100,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001838/zmtp_8k.htm", "dataFiles": [], - "idx": 1418 + "idx": 2049 }, { "filingDate": "2012-04-13", @@ -26430,7 +32109,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001838/zmtp_ex101.htm", "dataFiles": [], - "idx": 1419 + "idx": 2050 }, { "filingDate": "2012-04-13", @@ -26439,7 +32118,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001838/zmtp_ex102.htm", "dataFiles": [], - "idx": 1420 + "idx": 2051 }, { "filingDate": "2012-04-13", @@ -26448,7 +32127,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001838/zmtp_ex991.htm", "dataFiles": [], - "idx": 1421 + "idx": 2052 }, { "filingDate": "2012-04-13", @@ -26457,7 +32136,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001838/img001.jpg", "dataFiles": [], - "idx": 1422 + "idx": 2053 }, { "filingDate": "2012-04-13", @@ -26466,7 +32145,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 2.03, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001838/img002.jpg", "dataFiles": [], - "idx": 1423 + "idx": 2054 }, { "filingDate": "2012-03-30", @@ -26500,7 +32179,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zmtp-20111231_def.xml" } ], - "idx": 1424 + "idx": 2055 }, { "filingDate": "2012-03-30", @@ -26534,7 +32213,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zmtp-20111231_def.xml" } ], - "idx": 1425 + "idx": 2056 }, { "filingDate": "2012-03-30", @@ -26568,7 +32247,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zmtp-20111231_def.xml" } ], - "idx": 1426 + "idx": 2057 }, { "filingDate": "2012-03-30", @@ -26602,7 +32281,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zmtp-20111231_def.xml" } ], - "idx": 1427 + "idx": 2058 }, { "filingDate": "2012-03-30", @@ -26636,7 +32315,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001548/zmtp-20111231_def.xml" } ], - "idx": 1428 + "idx": 2059 }, { "filingDate": "2012-03-13", @@ -26645,7 +32324,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001112/zmtp_8k.htm", "dataFiles": [], - "idx": 1429 + "idx": 2060 }, { "filingDate": "2012-03-13", @@ -26654,7 +32333,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001112/zmtp_ex101.htm", "dataFiles": [], - "idx": 1430 + "idx": 2061 }, { "filingDate": "2012-03-13", @@ -26663,7 +32342,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001112/zmtp_ex991.htm", "dataFiles": [], - "idx": 1431 + "idx": 2062 }, { "filingDate": "2012-03-13", @@ -26672,7 +32351,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448812001112/img001.jpg", "dataFiles": [], - "idx": 1432 + "idx": 2063 }, { "filingDate": "2012-02-14", @@ -26681,7 +32360,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000135448812000634/zmtp_sc13g.htm", "dataFiles": [], - "idx": 1433 + "idx": 2064 }, { "filingDate": "2012-02-14", @@ -26690,7 +32369,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448812000632/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1434 + "idx": 2065 }, { "filingDate": "2012-02-13", @@ -26699,7 +32378,97 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000153552612000003/dec11-13g.txt", "dataFiles": [], - "idx": 1435 + "idx": 2066 + }, + { + "filingDate": "2012-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776112000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2067 + }, + { + "filingDate": "2012-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776112000004/primary_doc.xml", + "dataFiles": [], + "idx": 2068 + }, + { + "filingDate": "2012-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776112000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2069 + }, + { + "filingDate": "2012-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776112000003/primary_doc.xml", + "dataFiles": [], + "idx": 2070 + }, + { + "filingDate": "2012-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776112000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2071 + }, + { + "filingDate": "2012-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776112000002/primary_doc.xml", + "dataFiles": [], + "idx": 2072 + }, + { + "filingDate": "2012-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776112000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2073 + }, + { + "filingDate": "2012-01-17", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776112000001/primary_doc.xml", + "dataFiles": [], + "idx": 2074 + }, + { + "filingDate": "2011-12-06", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000093872511000002/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2075 + }, + { + "filingDate": "2011-12-06", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000093872511000002/primary_doc.xml", + "dataFiles": [], + "idx": 2076 }, { "filingDate": "2011-12-05", @@ -26708,7 +32477,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938725/000135448811004854/zmpt_sc13g.htm", "dataFiles": [], - "idx": 1436 + "idx": 2077 }, { "filingDate": "2011-11-30", @@ -26717,7 +32486,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999511003417/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 1437 + "idx": 2078 }, { "filingDate": "2011-11-30", @@ -26726,7 +32495,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999511003417/primary_doc.xml", "dataFiles": [], - "idx": 1438 + "idx": 2079 }, { "filingDate": "2011-11-23", @@ -26735,7 +32504,25 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000153552611000001/nov11-13g.txt", "dataFiles": [], - "idx": 1439 + "idx": 2080 + }, + { + "filingDate": "2011-11-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776111000018/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2081 + }, + { + "filingDate": "2011-11-22", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776111000018/primary_doc.xml", + "dataFiles": [], + "idx": 2082 }, { "filingDate": "2011-11-22", @@ -26744,7 +32531,7 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004713/zmtp_posam.htm", "dataFiles": [], - "idx": 1440 + "idx": 2083 }, { "filingDate": "2011-11-18", @@ -26753,7 +32540,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004591/zmtp_8k.htm", "dataFiles": [], - "idx": 1441 + "idx": 2084 }, { "filingDate": "2011-11-18", @@ -26762,7 +32549,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004591/zmtp_ex991.htm", "dataFiles": [], - "idx": 1442 + "idx": 2085 }, { "filingDate": "2011-11-18", @@ -26771,7 +32558,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004591/img001.jpg", "dataFiles": [], - "idx": 1443 + "idx": 2086 }, { "filingDate": "2011-11-14", @@ -26805,7 +32592,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004386/zmtp-20110930_pre.xml" } ], - "idx": 1444 + "idx": 2087 }, { "filingDate": "2011-11-14", @@ -26839,7 +32626,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004386/zmtp-20110930_pre.xml" } ], - "idx": 1445 + "idx": 2088 }, { "filingDate": "2011-11-14", @@ -26873,7 +32660,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004386/zmtp-20110930_pre.xml" } ], - "idx": 1446 + "idx": 2089 }, { "filingDate": "2011-11-04", @@ -26882,7 +32669,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004062/zmtp_8k.htm", "dataFiles": [], - "idx": 1447 + "idx": 2090 }, { "filingDate": "2011-11-04", @@ -26891,7 +32678,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004062/zmtp_ex991.htm", "dataFiles": [], - "idx": 1448 + "idx": 2091 }, { "filingDate": "2011-11-04", @@ -26900,7 +32687,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004062/zmtp_logo.jpg", "dataFiles": [], - "idx": 1449 + "idx": 2092 }, { "filingDate": "2011-11-02", @@ -26909,7 +32696,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004035/zmtp_8k.htm", "dataFiles": [], - "idx": 1450 + "idx": 2093 }, { "filingDate": "2011-11-02", @@ -26918,7 +32705,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004035/zmtp_ex991.htm", "dataFiles": [], - "idx": 1451 + "idx": 2094 }, { "filingDate": "2011-11-02", @@ -26927,7 +32714,25 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811004035/img001.jpg", "dataFiles": [], - "idx": 1452 + "idx": 2095 + }, + { + "filingDate": "2011-10-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776111000017/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2096 + }, + { + "filingDate": "2011-10-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776111000017/primary_doc.xml", + "dataFiles": [], + "idx": 2097 }, { "filingDate": "2011-09-27", @@ -26936,7 +32741,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000152996611000002/sfi13g.txt", "dataFiles": [], - "idx": 1453 + "idx": 2098 }, { "filingDate": "2011-09-15 12:00:00", @@ -26945,7 +32750,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999511002729/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 1454 + "idx": 2099 }, { "filingDate": "2011-09-15 12:00:00", @@ -26954,7 +32759,25 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999511002729/primary_doc.xml", "dataFiles": [], - "idx": 1455 + "idx": 2100 + }, + { + "filingDate": "2011-09-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776111000015/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2101 + }, + { + "filingDate": "2011-09-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776111000015/primary_doc.xml", + "dataFiles": [], + "idx": 2102 }, { "filingDate": "2011-09-13", @@ -26988,7 +32811,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1456 + "idx": 2103 }, { "filingDate": "2011-09-13", @@ -27022,7 +32845,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1457 + "idx": 2104 }, { "filingDate": "2011-09-13", @@ -27056,7 +32879,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1458 + "idx": 2105 }, { "filingDate": "2011-09-13", @@ -27090,7 +32913,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1459 + "idx": 2106 }, { "filingDate": "2011-09-13", @@ -27124,7 +32947,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1460 + "idx": 2107 }, { "filingDate": "2011-09-13", @@ -27158,7 +32981,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1461 + "idx": 2108 }, { "filingDate": "2011-09-13", @@ -27192,7 +33015,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1462 + "idx": 2109 }, { "filingDate": "2011-09-13", @@ -27226,7 +33049,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1463 + "idx": 2110 }, { "filingDate": "2011-09-13", @@ -27260,7 +33083,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1464 + "idx": 2111 }, { "filingDate": "2011-09-13", @@ -27294,7 +33117,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003393/zmtp-20110630_pre.xml" } ], - "idx": 1465 + "idx": 2112 }, { "filingDate": "2011-09-01", @@ -27328,7 +33151,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1466 + "idx": 2113 }, { "filingDate": "2011-09-01", @@ -27362,7 +33185,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1467 + "idx": 2114 }, { "filingDate": "2011-09-01", @@ -27396,7 +33219,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1468 + "idx": 2115 }, { "filingDate": "2011-09-01", @@ -27430,7 +33253,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1469 + "idx": 2116 }, { "filingDate": "2011-09-01", @@ -27464,7 +33287,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1470 + "idx": 2117 }, { "filingDate": "2011-09-01", @@ -27498,7 +33321,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1471 + "idx": 2118 }, { "filingDate": "2011-09-01", @@ -27532,7 +33355,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1472 + "idx": 2119 }, { "filingDate": "2011-09-01", @@ -27566,7 +33389,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1473 + "idx": 2120 }, { "filingDate": "2011-09-01", @@ -27600,7 +33423,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1474 + "idx": 2121 }, { "filingDate": "2011-09-01", @@ -27634,7 +33457,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811003190/zmtp-20110630_pre.xml" } ], - "idx": 1475 + "idx": 2122 }, { "filingDate": "2011-08-10", @@ -27668,7 +33491,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811002577/zmtp-20110630_pre.xml" } ], - "idx": 1476 + "idx": 2123 }, { "filingDate": "2011-08-10", @@ -27702,7 +33525,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811002577/zmtp-20110630_pre.xml" } ], - "idx": 1477 + "idx": 2124 }, { "filingDate": "2011-08-10", @@ -27736,7 +33559,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811002577/zmtp-20110630_pre.xml" } ], - "idx": 1478 + "idx": 2125 }, { "filingDate": "2011-08-03", @@ -27745,7 +33568,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811002433/zmpt_8k.htm", "dataFiles": [], - "idx": 1479 + "idx": 2126 }, { "filingDate": "2011-08-03", @@ -27754,7 +33577,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811002433/zmpt_ex991.htm", "dataFiles": [], - "idx": 1480 + "idx": 2127 }, { "filingDate": "2011-08-03", @@ -27763,7 +33586,79 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811002433/img001.jpg", "dataFiles": [], - "idx": 1481 + "idx": 2128 + }, + { + "filingDate": "2011-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776111000013/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2129 + }, + { + "filingDate": "2011-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776111000013/primary_doc.xml", + "dataFiles": [], + "idx": 2130 + }, + { + "filingDate": "2011-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776111000012/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2131 + }, + { + "filingDate": "2011-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776111000012/primary_doc.xml", + "dataFiles": [], + "idx": 2132 + }, + { + "filingDate": "2011-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776111000011/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2133 + }, + { + "filingDate": "2011-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776111000011/primary_doc.xml", + "dataFiles": [], + "idx": 2134 + }, + { + "filingDate": "2011-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776111000010/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2135 + }, + { + "filingDate": "2011-07-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776111000010/primary_doc.xml", + "dataFiles": [], + "idx": 2136 }, { "filingDate": "2011-07-06", @@ -27772,7 +33667,7 @@ export const fileList = [ "formDescription": "Current report, item 5.07", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811002095/zmtp_8k.htm", "dataFiles": [], - "idx": 1482 + "idx": 2137 }, { "filingDate": "2011-05-31", @@ -27781,7 +33676,7 @@ export const fileList = [ "formDescription": "[Paper]Annual Report to Security Holders", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999711011415/9999999997-11-011415.paper", "dataFiles": [], - "idx": 1483 + "idx": 2138 }, { "filingDate": "2011-05-16", @@ -27815,7 +33710,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811001551/zmtp-20110331_def.xml" } ], - "idx": 1484 + "idx": 2139 }, { "filingDate": "2011-05-16", @@ -27849,7 +33744,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811001551/zmtp-20110331_def.xml" } ], - "idx": 1485 + "idx": 2140 }, { "filingDate": "2011-05-16", @@ -27883,7 +33778,7 @@ export const fileList = [ "fileUrl": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811001551/zmtp-20110331_def.xml" } ], - "idx": 1486 + "idx": 2141 }, { "filingDate": "2011-05-11", @@ -27892,7 +33787,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811001447/zmtp_14a.htm", "dataFiles": [], - "idx": 1487 + "idx": 2142 }, { "filingDate": "2011-05-05", @@ -27901,7 +33796,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811001364/zmtp_8k.htm", "dataFiles": [], - "idx": 1488 + "idx": 2143 }, { "filingDate": "2011-05-05", @@ -27910,7 +33805,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811001364/zmtp_ex991.htm", "dataFiles": [], - "idx": 1489 + "idx": 2144 }, { "filingDate": "2011-04-29", @@ -27919,7 +33814,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811001294/zmtp_def14a.htm", "dataFiles": [], - "idx": 1490 + "idx": 2145 }, { "filingDate": "2011-04-29", @@ -27928,7 +33823,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811001294/zmtp_img01.jpg", "dataFiles": [], - "idx": 1491 + "idx": 2146 }, { "filingDate": "2011-03-29", @@ -27937,7 +33832,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000971/zmtp_s8.htm", "dataFiles": [], - "idx": 1492 + "idx": 2147 }, { "filingDate": "2011-03-29", @@ -27946,7 +33841,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000971/zmtp_ex51.htm", "dataFiles": [], - "idx": 1493 + "idx": 2148 }, { "filingDate": "2011-03-29", @@ -27955,7 +33850,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000971/zmtp_ex231.htm", "dataFiles": [], - "idx": 1494 + "idx": 2149 }, { "filingDate": "2011-03-29", @@ -27964,7 +33859,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000971/zmtp_ex232.htm", "dataFiles": [], - "idx": 1495 + "idx": 2150 }, { "filingDate": "2011-03-29", @@ -27973,7 +33868,7 @@ export const fileList = [ "formDescription": "Securities to be offered to employees in employee benefit plans", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000971/img001.jpg", "dataFiles": [], - "idx": 1496 + "idx": 2151 }, { "filingDate": "2011-03-29", @@ -27982,7 +33877,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000969/zmtp_10k.htm", "dataFiles": [], - "idx": 1497 + "idx": 2152 }, { "filingDate": "2011-03-29", @@ -27991,7 +33886,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000969/zmtp_ex211.htm", "dataFiles": [], - "idx": 1498 + "idx": 2153 }, { "filingDate": "2011-03-29", @@ -28000,7 +33895,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000969/zmtp_ex311.htm", "dataFiles": [], - "idx": 1499 + "idx": 2154 }, { "filingDate": "2011-03-29", @@ -28009,7 +33904,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000969/zmtp_ex321.htm", "dataFiles": [], - "idx": 1500 + "idx": 2155 }, { "filingDate": "2011-03-04", @@ -28018,7 +33913,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000734/zmtp_8k.htm", "dataFiles": [], - "idx": 1501 + "idx": 2156 }, { "filingDate": "2011-03-04", @@ -28027,7 +33922,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000734/zmtp_ex991.htm", "dataFiles": [], - "idx": 1502 + "idx": 2157 }, { "filingDate": "2011-03-04", @@ -28036,7 +33931,61 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000734/img001.jpg", "dataFiles": [], - "idx": 1503 + "idx": 2158 + }, + { + "filingDate": "2011-03-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776111000009/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2159 + }, + { + "filingDate": "2011-03-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776111000009/primary_doc.xml", + "dataFiles": [], + "idx": 2160 + }, + { + "filingDate": "2011-03-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776111000008/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2161 + }, + { + "filingDate": "2011-03-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776111000008/primary_doc.xml", + "dataFiles": [], + "idx": 2162 + }, + { + "filingDate": "2011-03-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776111000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2163 + }, + { + "filingDate": "2011-03-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776111000007/primary_doc.xml", + "dataFiles": [], + "idx": 2164 }, { "filingDate": "2011-02-17", @@ -28045,7 +33994,7 @@ export const fileList = [ "formDescription": "[Paper]Annual Report to Security Holders", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999711001252/9999999997-11-001252.paper", "dataFiles": [], - "idx": 1504 + "idx": 2165 }, { "filingDate": "2011-02-09", @@ -28054,7 +34003,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000135448811000384/zmtp_sc13ga.htm", "dataFiles": [], - "idx": 1505 + "idx": 2166 }, { "filingDate": "2011-02-08", @@ -28063,7 +34012,7 @@ export const fileList = [ "formDescription": "[Amend] Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448811000374/mann_sc13ga.htm", "dataFiles": [], - "idx": 1506 + "idx": 2167 }, { "filingDate": "2011-01-12", @@ -28072,7 +34021,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999511000143/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 1507 + "idx": 2168 }, { "filingDate": "2011-01-12", @@ -28081,7 +34030,79 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999511000143/primary_doc.xml", "dataFiles": [], - "idx": 1508 + "idx": 2169 + }, + { + "filingDate": "2011-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776111000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2170 + }, + { + "filingDate": "2011-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776111000006/primary_doc.xml", + "dataFiles": [], + "idx": 2171 + }, + { + "filingDate": "2011-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776111000005/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2172 + }, + { + "filingDate": "2011-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776111000005/primary_doc.xml", + "dataFiles": [], + "idx": 2173 + }, + { + "filingDate": "2011-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776111000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2174 + }, + { + "filingDate": "2011-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776111000004/primary_doc.xml", + "dataFiles": [], + "idx": 2175 + }, + { + "filingDate": "2011-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776111000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2176 + }, + { + "filingDate": "2011-01-11", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776111000003/primary_doc.xml", + "dataFiles": [], + "idx": 2177 }, { "filingDate": "2011-01-05", @@ -28090,7 +34111,43 @@ export const fileList = [ "formDescription": "Post-Effective amendments for registration statement", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448811000045/zmtp_posam.htm", "dataFiles": [], - "idx": 1509 + "idx": 2178 + }, + { + "filingDate": "2011-01-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776111000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2179 + }, + { + "filingDate": "2011-01-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776111000002/primary_doc.xml", + "dataFiles": [], + "idx": 2180 + }, + { + "filingDate": "2011-01-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776111000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2181 + }, + { + "filingDate": "2011-01-04", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776111000001/primary_doc.xml", + "dataFiles": [], + "idx": 2182 }, { "filingDate": "2010-12-28", @@ -28099,7 +34156,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810004042/zmtp_8k.htm", "dataFiles": [], - "idx": 1510 + "idx": 2183 }, { "filingDate": "2010-12-28", @@ -28108,7 +34165,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810004042/zmtp_ex991.htm", "dataFiles": [], - "idx": 1511 + "idx": 2184 }, { "filingDate": "2010-12-28", @@ -28117,7 +34174,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810004042/img001.gif", "dataFiles": [], - "idx": 1512 + "idx": 2185 }, { "filingDate": "2010-12-17", @@ -28126,7 +34183,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003923/zmtp_8k.htm", "dataFiles": [], - "idx": 1513 + "idx": 2186 }, { "filingDate": "2010-12-17", @@ -28135,7 +34192,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003923/zmtp_ex991.htm", "dataFiles": [], - "idx": 1514 + "idx": 2187 }, { "filingDate": "2010-12-17", @@ -28144,7 +34201,7 @@ export const fileList = [ "formDescription": "Current report, items 8.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003923/img001.gif", "dataFiles": [], - "idx": 1515 + "idx": 2188 }, { "filingDate": "2010-11-24 10:00:00", @@ -28153,7 +34210,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999510003368/xslEFFECTX01/primary_doc.xml", "dataFiles": [], - "idx": 1516 + "idx": 2189 }, { "filingDate": "2010-11-24 10:00:00", @@ -28162,7 +34219,7 @@ export const fileList = [ "formDescription": "Notice of Effectiveness", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/999999999510003368/primary_doc.xml", "dataFiles": [], - "idx": 1517 + "idx": 2190 }, { "filingDate": "2010-11-19", @@ -28171,7 +34228,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_s1a.htm", "dataFiles": [], - "idx": 1518 + "idx": 2191 }, { "filingDate": "2010-11-19", @@ -28180,7 +34237,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_ex42.htm", "dataFiles": [], - "idx": 1519 + "idx": 2192 }, { "filingDate": "2010-11-19", @@ -28189,7 +34246,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_ex44.htm", "dataFiles": [], - "idx": 1520 + "idx": 2193 }, { "filingDate": "2010-11-19", @@ -28198,7 +34255,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_ex51.htm", "dataFiles": [], - "idx": 1521 + "idx": 2194 }, { "filingDate": "2010-11-19", @@ -28207,7 +34264,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_ex231.htm", "dataFiles": [], - "idx": 1522 + "idx": 2195 }, { "filingDate": "2010-11-19", @@ -28216,7 +34273,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_ex991.htm", "dataFiles": [], - "idx": 1523 + "idx": 2196 }, { "filingDate": "2010-11-19", @@ -28225,7 +34282,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_ex992.htm", "dataFiles": [], - "idx": 1524 + "idx": 2197 }, { "filingDate": "2010-11-19", @@ -28234,7 +34291,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_ex993.htm", "dataFiles": [], - "idx": 1525 + "idx": 2198 }, { "filingDate": "2010-11-19", @@ -28243,7 +34300,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/zmtp_ex994.htm", "dataFiles": [], - "idx": 1526 + "idx": 2199 }, { "filingDate": "2010-11-19", @@ -28252,7 +34309,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/img001.jpg", "dataFiles": [], - "idx": 1527 + "idx": 2200 }, { "filingDate": "2010-11-19", @@ -28261,7 +34318,7 @@ export const fileList = [ "formDescription": "[Amend] General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003638/img002.jpg", "dataFiles": [], - "idx": 1528 + "idx": 2201 }, { "filingDate": "2010-11-12", @@ -28270,7 +34327,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003492/zmtp_10q.htm", "dataFiles": [], - "idx": 1529 + "idx": 2202 }, { "filingDate": "2010-11-12", @@ -28279,7 +34336,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003492/zmtp_ex311.htm", "dataFiles": [], - "idx": 1530 + "idx": 2203 }, { "filingDate": "2010-11-12", @@ -28288,7 +34345,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003492/zmtp_ex321.htm", "dataFiles": [], - "idx": 1531 + "idx": 2204 }, { "filingDate": "2010-11-05", @@ -28297,7 +34354,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003385/zmtp_8k.htm", "dataFiles": [], - "idx": 1532 + "idx": 2205 }, { "filingDate": "2010-11-05", @@ -28306,7 +34363,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003385/zmtp_ex991.htm", "dataFiles": [], - "idx": 1533 + "idx": 2206 }, { "filingDate": "2010-11-05", @@ -28315,7 +34372,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003385/img002.gif", "dataFiles": [], - "idx": 1534 + "idx": 2207 }, { "filingDate": "2010-10-22", @@ -28324,7 +34381,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003253/zmtp_8k.htm", "dataFiles": [], - "idx": 1535 + "idx": 2208 }, { "filingDate": "2010-10-22", @@ -28333,7 +34390,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003253/zmtp_ex101.htm", "dataFiles": [], - "idx": 1536 + "idx": 2209 }, { "filingDate": "2010-10-22", @@ -28342,7 +34399,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003253/zmtp_ex102.htm", "dataFiles": [], - "idx": 1537 + "idx": 2210 }, { "filingDate": "2010-10-22", @@ -28351,7 +34408,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003253/zmtp_ex103.htm", "dataFiles": [], - "idx": 1538 + "idx": 2211 }, { "filingDate": "2010-10-22", @@ -28360,7 +34417,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003253/zmtp_ex104.htm", "dataFiles": [], - "idx": 1539 + "idx": 2212 }, { "filingDate": "2010-10-22", @@ -28369,7 +34426,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003253/zmtp_ex105.htm", "dataFiles": [], - "idx": 1540 + "idx": 2213 }, { "filingDate": "2010-10-22", @@ -28378,7 +34435,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003253/zmtp_ex991.htm", "dataFiles": [], - "idx": 1541 + "idx": 2214 }, { "filingDate": "2010-10-22", @@ -28387,7 +34444,7 @@ export const fileList = [ "formDescription": "Current report, items 1.01, 1.02, 2.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003253/img001.jpg", "dataFiles": [], - "idx": 1542 + "idx": 2215 }, { "filingDate": "2010-10-05", @@ -28396,7 +34453,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003102/zmtp_s1.htm", "dataFiles": [], - "idx": 1543 + "idx": 2216 }, { "filingDate": "2010-10-05", @@ -28405,7 +34462,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003102/zmtp_ex41.htm", "dataFiles": [], - "idx": 1544 + "idx": 2217 }, { "filingDate": "2010-10-05", @@ -28414,7 +34471,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003102/zmtp_ex42.htm", "dataFiles": [], - "idx": 1545 + "idx": 2218 }, { "filingDate": "2010-10-05", @@ -28423,7 +34480,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003102/zmtp_ex43.htm", "dataFiles": [], - "idx": 1546 + "idx": 2219 }, { "filingDate": "2010-10-05", @@ -28432,7 +34489,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003102/zmtp_ex44.htm", "dataFiles": [], - "idx": 1547 + "idx": 2220 }, { "filingDate": "2010-10-05", @@ -28441,7 +34498,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003102/zmtp_ex231.htm", "dataFiles": [], - "idx": 1548 + "idx": 2221 }, { "filingDate": "2010-10-05", @@ -28450,7 +34507,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003102/img001.jpg", "dataFiles": [], - "idx": 1549 + "idx": 2222 }, { "filingDate": "2010-10-05", @@ -28459,7 +34516,7 @@ export const fileList = [ "formDescription": "General form for registration of securities under the Securities Act of 1933", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810003102/img002.jpg", "dataFiles": [], - "idx": 1550 + "idx": 2223 }, { "filingDate": "2010-08-13", @@ -28468,7 +34525,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002518/zmtp_10q.htm", "dataFiles": [], - "idx": 1551 + "idx": 2224 }, { "filingDate": "2010-08-13", @@ -28477,7 +34534,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002518/zmtp_ex101.htm", "dataFiles": [], - "idx": 1552 + "idx": 2225 }, { "filingDate": "2010-08-13", @@ -28486,7 +34543,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002518/zmtp_ex311.htm", "dataFiles": [], - "idx": 1553 + "idx": 2226 }, { "filingDate": "2010-08-13", @@ -28495,7 +34552,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002518/zmtp_ex321.htm", "dataFiles": [], - "idx": 1554 + "idx": 2227 }, { "filingDate": "2010-08-13", @@ -28504,7 +34561,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002518/zmtp_ex101002.gif", "dataFiles": [], - "idx": 1555 + "idx": 2228 }, { "filingDate": "2010-08-13", @@ -28513,7 +34570,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002518/zmtp_ex101004.gif", "dataFiles": [], - "idx": 1556 + "idx": 2229 }, { "filingDate": "2010-08-13", @@ -28522,7 +34579,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002518/zmtp_ex101006.gif", "dataFiles": [], - "idx": 1557 + "idx": 2230 }, { "filingDate": "2010-08-13", @@ -28531,7 +34588,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002518/zmtp_ex101008.gif", "dataFiles": [], - "idx": 1558 + "idx": 2231 }, { "filingDate": "2010-08-10", @@ -28540,7 +34597,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002449/zmtp_8k.htm", "dataFiles": [], - "idx": 1559 + "idx": 2232 }, { "filingDate": "2010-08-10", @@ -28549,7 +34606,7 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002449/zmtp_ex991.htm", "dataFiles": [], - "idx": 1560 + "idx": 2233 }, { "filingDate": "2010-08-10", @@ -28558,7 +34615,79 @@ export const fileList = [ "formDescription": "Current report, items 2.02, 5.07, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810002449/zmtp_ex991002.gif", "dataFiles": [], - "idx": 1561 + "idx": 2234 + }, + { + "filingDate": "2010-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000027/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2235 + }, + { + "filingDate": "2010-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000027/primary_doc.xml", + "dataFiles": [], + "idx": 2236 + }, + { + "filingDate": "2010-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000026/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2237 + }, + { + "filingDate": "2010-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000026/primary_doc.xml", + "dataFiles": [], + "idx": 2238 + }, + { + "filingDate": "2010-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000025/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2239 + }, + { + "filingDate": "2010-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000025/primary_doc.xml", + "dataFiles": [], + "idx": 2240 + }, + { + "filingDate": "2010-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000024/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2241 + }, + { + "filingDate": "2010-07-15", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000024/primary_doc.xml", + "dataFiles": [], + "idx": 2242 }, { "filingDate": "2010-05-25", @@ -28567,7 +34696,7 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001750/zmtp_8k.htm", "dataFiles": [], - "idx": 1562 + "idx": 2243 }, { "filingDate": "2010-05-25", @@ -28576,7 +34705,7 @@ export const fileList = [ "formDescription": "Additional definitive proxy soliciting materials and Rule 14(a)(12) material", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001749/zmtp_defa14a.htm", "dataFiles": [], - "idx": 1563 + "idx": 2244 }, { "filingDate": "2010-05-14", @@ -28585,7 +34714,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_10q.htm", "dataFiles": [], - "idx": 1564 + "idx": 2245 }, { "filingDate": "2010-05-14", @@ -28594,7 +34723,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_ex101.htm", "dataFiles": [], - "idx": 1565 + "idx": 2246 }, { "filingDate": "2010-05-14", @@ -28603,7 +34732,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_ex102.htm", "dataFiles": [], - "idx": 1566 + "idx": 2247 }, { "filingDate": "2010-05-14", @@ -28612,7 +34741,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_ex103.htm", "dataFiles": [], - "idx": 1567 + "idx": 2248 }, { "filingDate": "2010-05-14", @@ -28621,7 +34750,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_ex104.htm", "dataFiles": [], - "idx": 1568 + "idx": 2249 }, { "filingDate": "2010-05-14", @@ -28630,7 +34759,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_ex311.htm", "dataFiles": [], - "idx": 1569 + "idx": 2250 }, { "filingDate": "2010-05-14", @@ -28639,7 +34768,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_ex312.htm", "dataFiles": [], - "idx": 1570 + "idx": 2251 }, { "filingDate": "2010-05-14", @@ -28648,7 +34777,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_ex321.htm", "dataFiles": [], - "idx": 1571 + "idx": 2252 }, { "filingDate": "2010-05-14", @@ -28657,7 +34786,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001540/zmtp_ex322.htm", "dataFiles": [], - "idx": 1572 + "idx": 2253 }, { "filingDate": "2010-04-30", @@ -28666,7 +34795,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001351/zmtp_def14a.htm", "dataFiles": [], - "idx": 1573 + "idx": 2254 }, { "filingDate": "2010-04-30", @@ -28675,7 +34804,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001351/zmtp_def14a002.gif", "dataFiles": [], - "idx": 1574 + "idx": 2255 }, { "filingDate": "2010-04-30", @@ -28684,7 +34813,7 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001351/zmtp_def14a004.gif", "dataFiles": [], - "idx": 1575 + "idx": 2256 }, { "filingDate": "2010-04-30", @@ -28693,7 +34822,439 @@ export const fileList = [ "formDescription": "Other definitive proxy statements", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001351/zmtp_def14a006.gif", "dataFiles": [], - "idx": 1576 + "idx": 2257 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776110000023/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2258 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776110000023/primary_doc.xml", + "dataFiles": [], + "idx": 2259 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "POWER OF ATTORNEY FM", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776110000023/poafmanning.txt", + "dataFiles": [], + "idx": 2260 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000022/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2261 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000022/primary_doc.xml", + "dataFiles": [], + "idx": 2262 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "POWER OF ATTORNEY KRAMER", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000022/poakramer.txt", + "dataFiles": [], + "idx": 2263 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776110000021/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2264 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776110000021/primary_doc.xml", + "dataFiles": [], + "idx": 2265 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "POWER OF ATTORNEY- TERRY M", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776110000021/poaterrym.txt", + "dataFiles": [], + "idx": 2266 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000020/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2267 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000020/primary_doc.xml", + "dataFiles": [], + "idx": 2268 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "POWER OF ATTORNEY WOODS", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000020/poawoods.txt", + "dataFiles": [], + "idx": 2269 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000019/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2270 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000019/primary_doc.xml", + "dataFiles": [], + "idx": 2271 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "POWER OF ATTORNEY- FURMAN", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000019/poafurman.txt", + "dataFiles": [], + "idx": 2272 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000018/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2273 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000018/primary_doc.xml", + "dataFiles": [], + "idx": 2274 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "POWER OF ATTORNEY DONOVAN", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000018/poadonovan.txt", + "dataFiles": [], + "idx": 2275 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776110000017/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2276 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776110000017/primary_doc.xml", + "dataFiles": [], + "idx": 2277 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "POWER OF ATTORNEY RANDALL", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776110000017/poarandall.txt", + "dataFiles": [], + "idx": 2278 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238513/000146776110000016/xslF345X02/primary_doc.xml", + "dataFiles": [], + "idx": 2279 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "PRIMARY DOCUMENT", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238513/000146776110000016/primary_doc.xml", + "dataFiles": [], + "idx": 2280 + }, + { + "filingDate": "2010-04-30", + "form": "3", + "description": "POWER OF ATTORNEY CRIST", + "formDescription": "Initial statement of beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238513/000146776110000016/poacrist.txt", + "dataFiles": [], + "idx": 2281 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000014/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2282 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000014/primary_doc.xml", + "dataFiles": [], + "idx": 2283 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000013/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2284 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000013/primary_doc.xml", + "dataFiles": [], + "idx": 2285 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000012/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2286 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000012/primary_doc.xml", + "dataFiles": [], + "idx": 2287 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000011/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2288 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000011/primary_doc.xml", + "dataFiles": [], + "idx": 2289 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776110000010/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2290 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776110000010/primary_doc.xml", + "dataFiles": [], + "idx": 2291 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238513/000146776110000009/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2292 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238513/000146776110000009/primary_doc.xml", + "dataFiles": [], + "idx": 2293 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776110000008/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2294 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776110000008/primary_doc.xml", + "dataFiles": [], + "idx": 2295 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238513/000146776110000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2296 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238513/000146776110000007/primary_doc.xml", + "dataFiles": [], + "idx": 2297 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2298 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000006/primary_doc.xml", + "dataFiles": [], + "idx": 2299 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000005/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2300 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238529/000146776110000005/primary_doc.xml", + "dataFiles": [], + "idx": 2301 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2302 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1331597/000146776110000004/primary_doc.xml", + "dataFiles": [], + "idx": 2303 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2304 + }, + { + "filingDate": "2010-04-30", + "form": "4/A", + "description": "PRIMARY DOCUMENT", + "formDescription": "[Amend] Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238525/000146776110000003/primary_doc.xml", + "dataFiles": [], + "idx": 2305 }, { "filingDate": "2010-04-21", @@ -28702,7 +35263,7 @@ export const fileList = [ "formDescription": "Current report, items 4.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001258/zoomd_8k.htm", "dataFiles": [], - "idx": 1577 + "idx": 2306 }, { "filingDate": "2010-04-21", @@ -28711,7 +35272,7 @@ export const fileList = [ "formDescription": "Current report, items 4.01 and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001258/zoomd_ex161.htm", "dataFiles": [], - "idx": 1578 + "idx": 2307 }, { "filingDate": "2010-03-31", @@ -28720,7 +35281,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmtp_10k.htm", "dataFiles": [], - "idx": 1579 + "idx": 2308 }, { "filingDate": "2010-03-31", @@ -28729,7 +35290,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmtp_ex311.htm", "dataFiles": [], - "idx": 1580 + "idx": 2309 }, { "filingDate": "2010-03-31", @@ -28738,7 +35299,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmpt_ex312.htm", "dataFiles": [], - "idx": 1581 + "idx": 2310 }, { "filingDate": "2010-03-31", @@ -28747,7 +35308,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmpt_ex321.htm", "dataFiles": [], - "idx": 1582 + "idx": 2311 }, { "filingDate": "2010-03-31", @@ -28756,7 +35317,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmpt_ex322.htm", "dataFiles": [], - "idx": 1583 + "idx": 2312 }, { "filingDate": "2010-03-31", @@ -28765,7 +35326,7 @@ export const fileList = [ "formDescription": "Annual report [Section 13 and 15(d), not S-K Item 405]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448810001043/zmpt_ex211.htm", "dataFiles": [], - "idx": 1584 + "idx": 2313 }, { "filingDate": "2010-02-17", @@ -28774,7 +35335,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000135448810000453/sc13g_72056.htm", "dataFiles": [], - "idx": 1585 + "idx": 2314 }, { "filingDate": "2010-02-16", @@ -28783,7 +35344,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000135448810000418/sc13g_72056.htm", "dataFiles": [], - "idx": 1586 + "idx": 2315 }, { "filingDate": "2010-02-16", @@ -28792,7 +35353,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448810000373/zoom_sc13g.htm", "dataFiles": [], - "idx": 1587 + "idx": 2316 }, { "filingDate": "2010-02-16", @@ -28801,7 +35362,25 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000135448810000373/zoom_sc13g002.gif", "dataFiles": [], - "idx": 1588 + "idx": 2317 + }, + { + "filingDate": "2010-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2318 + }, + { + "filingDate": "2010-01-12", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776110000001/primary_doc.xml", + "dataFiles": [], + "idx": 2319 }, { "filingDate": "2009-12-16", @@ -28810,7 +35389,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.05, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448809002346/zoom_8k.htm", "dataFiles": [], - "idx": 1589 + "idx": 2320 }, { "filingDate": "2009-12-16", @@ -28819,7 +35398,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.05, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448809002346/zoom_ex41.htm", "dataFiles": [], - "idx": 1590 + "idx": 2321 }, { "filingDate": "2009-12-16", @@ -28828,7 +35407,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.05, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448809002346/zoom_ex42.htm", "dataFiles": [], - "idx": 1591 + "idx": 2322 }, { "filingDate": "2009-12-16", @@ -28837,7 +35416,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.05, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448809002346/zoom_ex43.htm", "dataFiles": [], - "idx": 1592 + "idx": 2323 }, { "filingDate": "2009-12-16", @@ -28846,7 +35425,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.05, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448809002346/zoom_ex44.htm", "dataFiles": [], - "idx": 1593 + "idx": 2324 }, { "filingDate": "2009-12-16", @@ -28855,7 +35434,7 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.05, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448809002346/zoom_ex45.htm", "dataFiles": [], - "idx": 1594 + "idx": 2325 }, { "filingDate": "2009-12-16", @@ -28864,7 +35443,133 @@ export const fileList = [ "formDescription": "Current report, items 5.02, 5.05, 8.01, and 9.01", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448809002346/zoom_ex141.htm", "dataFiles": [], - "idx": 1595 + "idx": 2326 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776109000007/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2327 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776109000007/primary_doc.xml", + "dataFiles": [], + "idx": 2328 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776109000006/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2329 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776109000006/primary_doc.xml", + "dataFiles": [], + "idx": 2330 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776109000005/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2331 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776109000005/primary_doc.xml", + "dataFiles": [], + "idx": 2332 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776109000004/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2333 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238517/000146776109000004/primary_doc.xml", + "dataFiles": [], + "idx": 2334 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776109000003/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2335 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938721/000146776109000003/primary_doc.xml", + "dataFiles": [], + "idx": 2336 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776109000002/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2337 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/1238508/000146776109000002/primary_doc.xml", + "dataFiles": [], + "idx": 2338 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776109000001/xslF345X03/primary_doc.xml", + "dataFiles": [], + "idx": 2339 + }, + { + "filingDate": "2009-12-14", + "form": "4", + "description": "PRIMARY DOCUMENT", + "formDescription": "Statement of changes in beneficial ownership of securities", + "fileLink": "https://www.sec.gov/Archives/edgar/data/938720/000146776109000001/primary_doc.xml", + "dataFiles": [], + "idx": 2340 }, { "filingDate": "2009-11-24", @@ -28873,7 +35578,7 @@ export const fileList = [ "formDescription": "Current report, item 5.02", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000135448809002198/zoom_8k.htm", "dataFiles": [], - "idx": 1596 + "idx": 2341 }, { "filingDate": "2009-11-13", @@ -28882,7 +35587,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001771/zoom_10q.htm", "dataFiles": [], - "idx": 1597 + "idx": 2342 }, { "filingDate": "2009-11-13", @@ -28891,7 +35596,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001771/zoom_311.htm", "dataFiles": [], - "idx": 1598 + "idx": 2343 }, { "filingDate": "2009-11-13", @@ -28900,7 +35605,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001771/zoom_312.htm", "dataFiles": [], - "idx": 1599 + "idx": 2344 }, { "filingDate": "2009-11-13", @@ -28909,7 +35614,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001771/zoom_321.htm", "dataFiles": [], - "idx": 1600 + "idx": 2345 }, { "filingDate": "2009-11-13", @@ -28918,7 +35623,7 @@ export const fileList = [ "formDescription": "Quarterly report [Sections 13 or 15(d)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001771/zoom_322.htm", "dataFiles": [], - "idx": 1601 + "idx": 2346 }, { "filingDate": "2009-10-15", @@ -28927,7 +35632,7 @@ export const fileList = [ "formDescription": "Statement of Beneficial Ownership by Certain Investors", "fileLink": "https://www.sec.gov/Archives/edgar/data/938506/000093583609001353/zoomtelephonics13g.htm", "dataFiles": [], - "idx": 1602 + "idx": 2347 }, { "filingDate": "2009-09-04", @@ -28936,7 +35641,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001356/zoom1012ga.htm", "dataFiles": [], - "idx": 1603 + "idx": 2348 }, { "filingDate": "2009-09-04", @@ -28945,7 +35650,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001356/zoom31.htm", "dataFiles": [], - "idx": 1604 + "idx": 2349 }, { "filingDate": "2009-09-04", @@ -28954,7 +35659,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001356/zoom32.htm", "dataFiles": [], - "idx": 1605 + "idx": 2350 }, { "filingDate": "2009-09-04", @@ -28963,7 +35668,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001356/zoom991.htm", "dataFiles": [], - "idx": 1606 + "idx": 2351 }, { "filingDate": "2009-09-04", @@ -28972,7 +35677,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001356/zoom991001.jpg", "dataFiles": [], - "idx": 1607 + "idx": 2352 }, { "filingDate": "2009-08-06", @@ -28981,7 +35686,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001180/zoom1012ga.htm", "dataFiles": [], - "idx": 1608 + "idx": 2353 }, { "filingDate": "2009-08-06", @@ -28990,7 +35695,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001180/zoom31.htm", "dataFiles": [], - "idx": 1609 + "idx": 2354 }, { "filingDate": "2009-08-06", @@ -28999,7 +35704,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001180/zoom32.htm", "dataFiles": [], - "idx": 1610 + "idx": 2355 }, { "filingDate": "2009-08-06", @@ -29008,7 +35713,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001180/zoom991.htm", "dataFiles": [], - "idx": 1611 + "idx": 2356 }, { "filingDate": "2009-08-06", @@ -29017,7 +35722,7 @@ export const fileList = [ "formDescription": "[Amend] Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001180/zoom991001.jpg", "dataFiles": [], - "idx": 1612 + "idx": 2357 }, { "filingDate": "2009-07-10", @@ -29026,7 +35731,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001064/zoom1012g.htm", "dataFiles": [], - "idx": 1613 + "idx": 2358 }, { "filingDate": "2009-07-10", @@ -29035,7 +35740,7 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001064/zoom991.htm", "dataFiles": [], - "idx": 1614 + "idx": 2359 }, { "filingDate": "2009-07-10", @@ -29044,6 +35749,6 @@ export const fileList = [ "formDescription": "Registration of securities [Section 12(g)]", "fileLink": "https://www.sec.gov/Archives/edgar/data/1467761/000111650209001064/zoom991001.jpg", "dataFiles": [], - "idx": 1615 + "idx": 2360 } ] diff --git a/src/locales/en.js b/src/locales/en.js index 94c6762..b8a28ec 100644 --- a/src/locales/en.js +++ b/src/locales/en.js @@ -570,8 +570,8 @@ export default { CONTAINY: { STOCK_INFO: { TITLE: "Stock Information", - LAST_PRICE: "Last Price", - CHANGE: "Change", + LAST_PRICE: "Price", + CHANGE: "% Change", STOCK_CODE: "Stock Code", VOLUME: "Volume", MARKET_CAP: "Market Cap", @@ -675,25 +675,25 @@ export default { "FiEE, Inc.’s core solutions encompass the following four major categories.", paragraph: { ONE: { - TITLE: "(1)Cloud-Managed Connectivity (WiFi) Platform: ", + TITLE: "(1) Cloud-Managed Connectivity (WiFi) Platform: ", CONTENT: "SaaS powering OS for consumers and SMBs ", CONTENTTWO: "AI-driven threat protection, and over-the-air updates", }, TWO: { - TITLE: "(2)IoT Hardware Sales & Licensing: ", + TITLE: "(2) IoT Hardware Sales & Licensing: ", CONTENT: "IoT products and technologies, including developing VR/AR online sharing technologies", CONTENTTWO: "IoT data collection, analysis and management", }, THREE: { - TITLE: "(3)SAAS Solutions", + TITLE: "(3) SAAS Solutions", CONTENT: "Internet sales and IoT support", CONTENTTWO: "KOL branding services", CONTENTTHREE: "AI-enabled content creation and fans habit analysis solutions", }, FOUR: { - TITLE: "(4)Professional To-C and To-B Services & Support", + TITLE: "(4) Professional To-C and To-B Services & Support", CONTENT: "Managed-service agreements with ISPs and enterprise customers for network-support, security monitoring, and custom development", CONTENTTWO: "KOL branding services", @@ -707,7 +707,7 @@ export default { // 管理 MANAGEMENT: { ONE: { - TITLE: "Wai Chung Li", + TITLE: "Li Wai Chung", TITLETWO: "Chief Executive Officer", CONTENT: "Mr. Li is our Chief Executive Officer. Mr. Li has extensive experience in accounting, corporate management and finance management. His role encompasses the oversight of our daily business operations and plays a vital part in the overall management of our Group.With a track record spanning prestigious roles at Deloitte China, Shanghai Prime Machinery Company Limited, Lens Technology Co., Ltd., and more, Mr. Li brings invaluable expertise to our team.", @@ -719,7 +719,7 @@ export default { TITLE: "Cao Yu", TITLETWO: "Chief Financial Officer, Secretary, Treasurer and Director", CONTENTONE: - "Ms. Cao is our Chief Financial Officer. Secretary, Treasurer and Director. Ms. Cao has a wealth of experience in financial management. She oversees financial operations, strategic planning, risk management, and reporting to ensure our financial health and compliance with regulations.", + "Ms. Cao is our Chief Financial Officer, Secretary, Treasurer and Director. Ms. Cao has a wealth of experience in financial management. She oversees financial operations, strategic planning, risk management, and reporting to ensure our financial health and compliance with regulations.", CONTENTTWO: "Ms. Cao previously served as the treasury director of Taifeng Cultural Communication Co., Ltd where she oversaw its financial matters from November 2018 to November 2024. Prior to that, Ms. Cao served as a business manager of Yangfeng Art Exchange Co., Ltd from February 2016 to October 2018. From March 2011 to January 2016, she served as the treasury officer of financial department of Suzhou Industrial Park Xinfushida Plastic Profile Products Co., Ltd.", }, diff --git a/src/store/auth/index.js b/src/store/auth/index.js index 7a516f9..05246da 100644 --- a/src/store/auth/index.js +++ b/src/store/auth/index.js @@ -15,7 +15,7 @@ import { useRouter } from "vue-router"; import { showImagePreview } from "vant"; export const useAuth = createGlobalState(() => { - console.log("useRouter", useRouter); + // console.log("useRouter", useRouter); const router = useRouter(); const token = useStorage("token", "", localStorage); const workUid = useStorage("workUid", "", localStorage); @@ -44,7 +44,7 @@ export const useAuth = createGlobalState(() => { const millisecondsIn48Hours = 48 * 60 * 60 * 1000; voteToken.value.expireTime = currentTimestamp + millisecondsIn48Hours; voteToken.value.authorization = res.data?.authorization; - console.log("voteToken", voteToken.value); + // console.log("voteToken", voteToken.value); } }; const sendVote = async () => { diff --git a/src/store/stock-quote/index.js b/src/store/stock-quote/index.js index 2c197a8..9631a6d 100644 --- a/src/store/stock-quote/index.js +++ b/src/store/stock-quote/index.js @@ -18,65 +18,62 @@ export const useStockQuote = createGlobalState(() => { ] }) const date = new Date(); -const options = { - year: 'numeric', - month: 'short', - day: 'numeric', - hour: 'numeric', - minute: '2-digit', - hour12: true, - timeZone: 'America/New_York', - timeZoneName: 'short' -}; - -dayjs.extend(utc) -dayjs.extend(timezone) -/* -美股的常规发行日(交易日)为周一至周五,遇到法定假日则顺延。 -如果你只需要“上一个交易日”(不考虑法定假日)的情况下 -获取当前美东时间。 -如果今天是周一,则上一个交易日为上周五。 -如果今天是周日,则上一个交易日为上周五。 -如果今天是周六,则上一个交易日为周五。 -其他情况,上一个交易日为昨天。 -*/ -const getLastTradingDay = () => { - const now = dayjs().tz('America/New_York') + const options = { + year: 'numeric', + month: 'short', + day: 'numeric', + hour: 'numeric', + minute: '2-digit', + hour12: true, + timeZone: 'America/New_York', + timeZoneName: 'short' + }; let lastTradingDay - const dayOfWeek = now.day() // 0:周日, 1:周一, ..., 5:周五, 6:周六 - const isBeforeClose = now.hour() < 16 || (now.hour() === 16 && now.minute() === 0 && now.second() === 0) + dayjs.extend(utc) + dayjs.extend(timezone) + /* + 美股的常规发行日(交易日)为周一至周五,遇到法定假日则顺延。 + 如果你只需要“上一个交易日”(不考虑法定假日)的情况下 + 获取当前美东时间。 + 如果今天是周一,则上一个交易日为上周五。 + 如果今天是周日,则上一个交易日为上周五。 + 如果今天是周六,则上一个交易日为周五。 + 其他情况,上一个交易日为昨天。 + */ - if (dayOfWeek === 0) { // 周日 - // 返回本周五16:00 - lastTradingDay = now.day(-2).hour(16).minute(0).second(0).millisecond(0) - } else if (dayOfWeek === 6) { // 周六 - // 返回本周五16:00 - lastTradingDay = now.day(-1).hour(16).minute(0).second(0).millisecond(0) - } else if (dayOfWeek === 1 && isBeforeClose) { // 周一16:00前 - // 返回上周五16:00 - lastTradingDay = now.day(-2).hour(16).minute(0).second(0).millisecond(0) - } else if (isBeforeClose) { // 工作日16:00前 - // 返回前一天16:00 - lastTradingDay = now.subtract(1, 'day').hour(16).minute(0).second(0).millisecond(0) - } else { - // 工作日16:00后,返回今天16:00 - lastTradingDay = now.hour(16).minute(0).second(0).millisecond(0) + const getLastTradingDay = async () => { + const toDate = dayjs().format('YYYY-MM-DD'); + const finalFromDate = dayjs().subtract(7, 'day').format('YYYY-MM-DD'); + let url = + 'https://common.szjixun.cn/api/stock/history/list?from=' + + finalFromDate + + '&to=' + + toDate; + const res = await axios.get(url) + if (res.status === 200) { + if (res.data.status === 0) { + lastTradingDay = dayjs(res.data.data[0].date) + } + return lastTradingDay.format('MMM D, YYYY') + ' 4:00 PM EDT' + } } - return lastTradingDay.format('MMM D, YYYY, h:mm A [EDT]') -} -const formatted = ref(getLastTradingDay()) -const getStockQuate= async()=>{ - // const res = await axios.get('https://saas-test.szjixun.cn/api/fiee/chart/forward/test') + const formatted = ref(null) + const init = async () => { + formatted.value = await getLastTradingDay() + } + init() + const getStockQuate = async () => { + // const res = await axios.get('https://saas-test.szjixun.cn/api/fiee/chart/forward/test') const res = await axios.get('https://common.szjixun.cn/api/stock/company/data') - console.error(res) - if(res.status === 200){ - if(res.data.status === 0){ - stockQuote.value=res.data.data - console.error(stockQuote.value) + // console.error(res) + if (res.status === 200) { + if (res.data.status === 0) { + stockQuote.value = res.data.data + } } -} + } return { formatted, getStockQuate, diff --git a/src/views/CommitteeAppointment/size1440/index.vue b/src/views/CommitteeAppointment/size1440/index.vue index 122703b..501da91 100644 --- a/src/views/CommitteeAppointment/size1440/index.vue +++ b/src/views/CommitteeAppointment/size1440/index.vue @@ -131,7 +131,7 @@ const committeeRoles = { "Hu Bin": { Audit: "Member", Compensation: "Member", - Governance: "Chair", + Governance: "Member", }, "David Natan": { Audit: "Chair", @@ -141,7 +141,7 @@ const committeeRoles = { "Chan Oi Fat": { Audit: "Member", Compensation: "Chair", - Governance: "Member", + Governance: "Chair", }, }; diff --git a/src/views/CommitteeAppointment/size1920/index.vue b/src/views/CommitteeAppointment/size1920/index.vue index 17ba6be..8258164 100644 --- a/src/views/CommitteeAppointment/size1920/index.vue +++ b/src/views/CommitteeAppointment/size1920/index.vue @@ -129,7 +129,7 @@ const committeeRoles = { "Hu Bin": { Audit: "Member", Compensation: "Member", - Governance: "Chair", + Governance: "Member", }, "David Natan": { Audit: "Chair", @@ -139,7 +139,7 @@ const committeeRoles = { "Chan Oi Fat": { Audit: "Member", Compensation: "Chair", - Governance: "Member", + Governance: "Chair", }, }; diff --git a/src/views/CommitteeAppointment/size375/index.vue b/src/views/CommitteeAppointment/size375/index.vue index eb0c6d2..c6b32fb 100644 --- a/src/views/CommitteeAppointment/size375/index.vue +++ b/src/views/CommitteeAppointment/size375/index.vue @@ -84,7 +84,7 @@ const committeeRoles = { "Hu Bin": { Audit: "Member", Compensation: "Member", - Governance: "Chair", + Governance: "Member", }, "David Natan": { Audit: "Chair", @@ -94,7 +94,7 @@ const committeeRoles = { "Chan Oi Fat": { Audit: "Member", Compensation: "Chair", - Governance: "Member", + Governance: "Chair", }, }; diff --git a/src/views/CommitteeAppointment/size768/index.vue b/src/views/CommitteeAppointment/size768/index.vue index eb0c6d2..c6b32fb 100644 --- a/src/views/CommitteeAppointment/size768/index.vue +++ b/src/views/CommitteeAppointment/size768/index.vue @@ -84,7 +84,7 @@ const committeeRoles = { "Hu Bin": { Audit: "Member", Compensation: "Member", - Governance: "Chair", + Governance: "Member", }, "David Natan": { Audit: "Chair", @@ -94,7 +94,7 @@ const committeeRoles = { "Chan Oi Fat": { Audit: "Member", Compensation: "Chair", - Governance: "Member", + Governance: "Chair", }, }; diff --git a/src/views/boarddirectors/size1440/index.vue b/src/views/boarddirectors/size1440/index.vue index aee8f7b..2b85bba 100644 --- a/src/views/boarddirectors/size1440/index.vue +++ b/src/views/boarddirectors/size1440/index.vue @@ -39,17 +39,17 @@ const otherDirectors = [ "Previously served as the treasury director of Taifeng Cultural Communication Co., Ltd where she oversees its financial matters from November 2018 to November 2024. Prior to that, Ms. Cao served as a business manager of Yangfeng Art Exchange Co., Ltd from February 2016 to October 2018. From March 2011 to January 2016, she served as the treasury officer of financial department of Suzhou Industrial Park Xinfushida Plastic Profile Products Co., Ltd.", }, { - name: "David Lazar", + name: "David E. Lazar", title: "Director", contain: - "Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", + "Served as the Chief Executive Officer of OpGen, Inc., a precision medicine company listed on the Nasdaq (OPGN) since April 11, 2024, where he also servs as a director and board chairman, beginning on March 25, 2024. Mr. Lazar served as the Chief Executive Officer of Titan Pharmaceuticals Inc. listed on the Nasdaq (TTNP) from August 2022 through April 11, 2024, where he also served as a director and board chairman from August 2022 until October 2023. He has also served as the CEO of Custodian Ventures LLC, a company which specializes in assisting distressed public companies through custodianship, since February 2018, and Activist Investing LLC, an actively managed private investment fund, since March 2018. Previously, Mr. Lazar served as Managing Partner at Zenith Partners International Inc., a boutique consulting firm, from July 2012 to April 2018. In his role as Chief Executive Officer of Custodian Ventures LLC, Mr. Lazar has successfully served as a custodian to numerous public companies across a wide range of industries.", }, { name: "David Natan", title: "Director", contain: - "David Natan,age 72, currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financialofficer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company fromNovember 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc.(OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served asExecutive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and,from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysisinstruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP,a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc.(Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for thefollowing public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrandsCorp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", + "Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", }, { name: "Chan Oi Fat", diff --git a/src/views/boarddirectors/size1920/index.vue b/src/views/boarddirectors/size1920/index.vue index affeabf..0ec6fbd 100644 --- a/src/views/boarddirectors/size1920/index.vue +++ b/src/views/boarddirectors/size1920/index.vue @@ -35,17 +35,17 @@ const otherDirectors = [ "Previously served as the treasury director of Taifeng Cultural Communication Co., Ltd where she oversees its financial matters from November 2018 to November 2024. Prior to that, Ms. Cao served as a business manager of Yangfeng Art Exchange Co., Ltd from February 2016 to October 2018. From March 2011 to January 2016, she served as the treasury officer of financial department of Suzhou Industrial Park Xinfushida Plastic Profile Products Co., Ltd.", }, { - name: "David Lazar", + name: "David E. Lazar", title: "Director", contain: - "Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", + "Served as the Chief Executive Officer of OpGen, Inc., a precision medicine company listed on the Nasdaq (OPGN) since April 11, 2024, where he also servs as a director and board chairman, beginning on March 25, 2024. Mr. Lazar served as the Chief Executive Officer of Titan Pharmaceuticals Inc. listed on the Nasdaq (TTNP) from August 2022 through April 11, 2024, where he also served as a director and board chairman from August 2022 until October 2023. He has also served as the CEO of Custodian Ventures LLC, a company which specializes in assisting distressed public companies through custodianship, since February 2018, and Activist Investing LLC, an actively managed private investment fund, since March 2018. Previously, Mr. Lazar served as Managing Partner at Zenith Partners International Inc., a boutique consulting firm, from July 2012 to April 2018. In his role as Chief Executive Officer of Custodian Ventures LLC, Mr. Lazar has successfully served as a custodian to numerous public companies across a wide range of industries.", }, { name: "David Natan", title: "Director", contain: - "David Natan,age 72, currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financialofficer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company fromNovember 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc.(OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served asExecutive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and,from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysisinstruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP,a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc.(Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for thefollowing public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrandsCorp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", + "Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", }, { name: "Chan Oi Fat", diff --git a/src/views/boarddirectors/size375/index.vue b/src/views/boarddirectors/size375/index.vue index 52357f8..b83c131 100644 --- a/src/views/boarddirectors/size375/index.vue +++ b/src/views/boarddirectors/size375/index.vue @@ -35,17 +35,17 @@ const otherDirectors = [ "Previously served as the treasury director of Taifeng Cultural Communication Co., Ltd where she oversees its financial matters from November 2018 to November 2024. Prior to that, Ms. Cao served as a business manager of Yangfeng Art Exchange Co., Ltd from February 2016 to October 2018. From March 2011 to January 2016, she served as the treasury officer of financial department of Suzhou Industrial Park Xinfushida Plastic Profile Products Co., Ltd.", }, { - name: "David Lazar", + name: "David E. Lazar", title: "Director", contain: - "Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", + "Served as the Chief Executive Officer of OpGen, Inc., a precision medicine company listed on the Nasdaq (OPGN) since April 11, 2024, where he also servs as a director and board chairman, beginning on March 25, 2024. Mr. Lazar served as the Chief Executive Officer of Titan Pharmaceuticals Inc. listed on the Nasdaq (TTNP) from August 2022 through April 11, 2024, where he also served as a director and board chairman from August 2022 until October 2023. He has also served as the CEO of Custodian Ventures LLC, a company which specializes in assisting distressed public companies through custodianship, since February 2018, and Activist Investing LLC, an actively managed private investment fund, since March 2018. Previously, Mr. Lazar served as Managing Partner at Zenith Partners International Inc., a boutique consulting firm, from July 2012 to April 2018. In his role as Chief Executive Officer of Custodian Ventures LLC, Mr. Lazar has successfully served as a custodian to numerous public companies across a wide range of industries.", }, { name: "David Natan", title: "Director", contain: - "David Natan,age 72, currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financialofficer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company fromNovember 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc.(OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served asExecutive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and,from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysisinstruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP,a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc.(Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for thefollowing public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrandsCorp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", + "Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", }, { name: "Chan Oi Fat", diff --git a/src/views/boarddirectors/size768/index.vue b/src/views/boarddirectors/size768/index.vue index aee8f7b..2b85bba 100644 --- a/src/views/boarddirectors/size768/index.vue +++ b/src/views/boarddirectors/size768/index.vue @@ -39,17 +39,17 @@ const otherDirectors = [ "Previously served as the treasury director of Taifeng Cultural Communication Co., Ltd where she oversees its financial matters from November 2018 to November 2024. Prior to that, Ms. Cao served as a business manager of Yangfeng Art Exchange Co., Ltd from February 2016 to October 2018. From March 2011 to January 2016, she served as the treasury officer of financial department of Suzhou Industrial Park Xinfushida Plastic Profile Products Co., Ltd.", }, { - name: "David Lazar", + name: "David E. Lazar", title: "Director", contain: - "Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", + "Served as the Chief Executive Officer of OpGen, Inc., a precision medicine company listed on the Nasdaq (OPGN) since April 11, 2024, where he also servs as a director and board chairman, beginning on March 25, 2024. Mr. Lazar served as the Chief Executive Officer of Titan Pharmaceuticals Inc. listed on the Nasdaq (TTNP) from August 2022 through April 11, 2024, where he also served as a director and board chairman from August 2022 until October 2023. He has also served as the CEO of Custodian Ventures LLC, a company which specializes in assisting distressed public companies through custodianship, since February 2018, and Activist Investing LLC, an actively managed private investment fund, since March 2018. Previously, Mr. Lazar served as Managing Partner at Zenith Partners International Inc., a boutique consulting firm, from July 2012 to April 2018. In his role as Chief Executive Officer of Custodian Ventures LLC, Mr. Lazar has successfully served as a custodian to numerous public companies across a wide range of industries.", }, { name: "David Natan", title: "Director", contain: - "David Natan,age 72, currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financialofficer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company fromNovember 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc.(OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served asExecutive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and,from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysisinstruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP,a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc.(Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for thefollowing public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrandsCorp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", + "Currently serves as President and Chief Executive Officer of Natan & Associates, LLC, a consulting firm offering chief financial officer services to public and private companies in a variety of industries, since 2007. Mr. Natan previously served as a Director of the Company from November 2023 to February 2025. From February 2010 to May 2020, Mr. Natan served as Chief Executive Officer of ForceField Energy, Inc. (OTCMKTS: FNRG), a company focused on the solar industry and LED lighting products. From February 2002 to November 2007, Mr. Natan served as Executive Vice President of Reporting and Chief Financial Officer of PharmaNet Development Group, Inc., a drug development services company, and, from June 1995 to February 2002, as Chief Financial Officer and Vice President of Global Technovations, Inc., a manufacturer and marketer of oil analysis instruments and speakers and speaker components. Prior to that, Mr. Natan served in various roles of increasing responsibility with Deloitte & Touche LLP, a global consulting firm. Mr. Natan currently serves as a member of the Board of Directors and Chair of the Audit Committee of Sunshine Biopharma, Inc. (Nasdaq: SBFM), a pharmaceutical and nutritional supplement company, since February 2022. Previously, Mr. Natan has served as a director for the following public companies: Global Technovations, Forcefield Energy, Titan Pharmaceuticals (Nasdaq: TTNP), Vivakor Inc. (Nasdaq: VIVK), NetBrands Corp. (OTC: NBND), and OpGen Inc. (OTC: OPGN), and Cyclacel Pharmaceuticals (Nasdaq: CYCC). Mr. Natan holds a B.A. in Economics from Boston University.", }, { name: "Chan Oi Fat", diff --git a/src/views/companyoverview/size1440/index.vue b/src/views/companyoverview/size1440/index.vue index 04b50ca..4fb8dde 100644 --- a/src/views/companyoverview/size1440/index.vue +++ b/src/views/companyoverview/size1440/index.vue @@ -25,10 +25,7 @@
- {{ - $t("COMPANYOVERVIEW.TITLETHREE.CONTENT") - }} -
+ {{ $t("COMPANYOVERVIEW.TITLETHREE.CONTENTTWO") diff --git a/src/views/companyoverview/size1920/index.vue b/src/views/companyoverview/size1920/index.vue index 7d8ca3a..07bd696 100644 --- a/src/views/companyoverview/size1920/index.vue +++ b/src/views/companyoverview/size1920/index.vue @@ -25,11 +25,6 @@
- {{ - $t("COMPANYOVERVIEW.TITLETHREE.CONTENT") - }} -
- {{ $t("COMPANYOVERVIEW.TITLETHREE.CONTENTTWO") }} diff --git a/src/views/companyoverview/size375/index.vue b/src/views/companyoverview/size375/index.vue index 03489e5..fde7b05 100644 --- a/src/views/companyoverview/size375/index.vue +++ b/src/views/companyoverview/size375/index.vue @@ -26,10 +26,6 @@ {{ $t("COMPANYOVERVIEW.TITLETHREE.TITLE") }}
- {{ - $t("COMPANYOVERVIEW.TITLETHREE.CONTENT") - }} -
{{ $t("COMPANYOVERVIEW.TITLETHREE.CONTENTTWO") diff --git a/src/views/companyoverview/size768/index.vue b/src/views/companyoverview/size768/index.vue index efe0afd..b7f9000 100644 --- a/src/views/companyoverview/size768/index.vue +++ b/src/views/companyoverview/size768/index.vue @@ -25,11 +25,6 @@
- {{ - $t("COMPANYOVERVIEW.TITLETHREE.CONTENT") - }} -
- {{ $t("COMPANYOVERVIEW.TITLETHREE.CONTENTTWO") }} diff --git a/src/views/events-calendar/size1920/index.vue b/src/views/events-calendar/size1920/index.vue index 1d5320b..be594df 100644 --- a/src/views/events-calendar/size1920/index.vue +++ b/src/views/events-calendar/size1920/index.vue @@ -40,7 +40,7 @@ const state = reactive({ const handleSearch = () => { // 搜索处理逻辑 - console.log('搜索:', state.selectedDateValue) + // console.log('搜索:', state.selectedDateValue) } diff --git a/src/views/events-calendar/size375/index.vue b/src/views/events-calendar/size375/index.vue index b0371c4..ad8840d 100644 --- a/src/views/events-calendar/size375/index.vue +++ b/src/views/events-calendar/size375/index.vue @@ -40,7 +40,7 @@ const state = reactive({ const handleSearch = () => { // 搜索处理逻辑 - console.log('搜索:', state.selectedDateValue) + // console.log('搜索:', state.selectedDateValue) } diff --git a/src/views/financialinformation/quarterlyreports/size1440/index.vue b/src/views/financialinformation/quarterlyreports/size1440/index.vue index ce54fa7..12f6792 100644 --- a/src/views/financialinformation/quarterlyreports/size1440/index.vue +++ b/src/views/financialinformation/quarterlyreports/size1440/index.vue @@ -343,7 +343,7 @@ const filteredList = computed(() => { const handleSearch = () => { // 搜索处理逻辑 - console.log("搜索:", searchQuery.value); + // console.log("搜索:", searchQuery.value); }; const downloadPdf = async (pdfResource, filename = "") => { try { @@ -367,7 +367,7 @@ const downloadPdf = async (pdfResource, filename = "") => { // 释放Blob URL URL.revokeObjectURL(blobUrl); } catch (error) { - console.error("下载PDF文件失败:", error); + // console.error("下载PDF文件失败:", error); } }; diff --git a/src/views/financialinformation/quarterlyreports/size1920/index.vue b/src/views/financialinformation/quarterlyreports/size1920/index.vue index 27a8b46..9c9ff18 100644 --- a/src/views/financialinformation/quarterlyreports/size1920/index.vue +++ b/src/views/financialinformation/quarterlyreports/size1920/index.vue @@ -342,7 +342,7 @@ const filteredList = computed(() => { const handleSearch = () => { // 搜索处理逻辑 - console.log("搜索:", searchQuery.value); + // console.log("搜索:", searchQuery.value); }; const downloadPdf = async (pdfResource, filename = "") => { @@ -367,7 +367,7 @@ const downloadPdf = async (pdfResource, filename = "") => { // 释放Blob URL URL.revokeObjectURL(blobUrl); } catch (error) { - console.error("下载PDF文件失败:", error); + // console.error("下载PDF文件失败:", error); } }; diff --git a/src/views/financialinformation/quarterlyreports/size375/index.vue b/src/views/financialinformation/quarterlyreports/size375/index.vue index 6ec2532..8375ab9 100644 --- a/src/views/financialinformation/quarterlyreports/size375/index.vue +++ b/src/views/financialinformation/quarterlyreports/size375/index.vue @@ -342,7 +342,7 @@ const filteredList = computed(() => { const handleSearch = () => { // 搜索处理逻辑 - console.log("搜索:", searchQuery.value); + // console.log("搜索:", searchQuery.value); }; const downloadPdf = (url) => { @@ -384,7 +384,7 @@ const downloadPdf = (url) => { }, 100); }) .catch((error) => { - console.error("下载文件时出错:", error); + // console.error("下载文件时出错:", error); // 如果fetch失败,尝试直接下载 link.href = url; link.download = fileName; diff --git a/src/views/financialinformation/quarterlyreports/size768/index.vue b/src/views/financialinformation/quarterlyreports/size768/index.vue index f163340..f8da92c 100644 --- a/src/views/financialinformation/quarterlyreports/size768/index.vue +++ b/src/views/financialinformation/quarterlyreports/size768/index.vue @@ -342,7 +342,7 @@ const filteredList = computed(() => { const handleSearch = () => { // 搜索处理逻辑 - console.log("搜索:", searchQuery.value); + // console.log("搜索:", searchQuery.value); }; const downloadPdf = (url) => { @@ -384,7 +384,7 @@ const downloadPdf = (url) => { }, 100); }) .catch((error) => { - console.error("下载文件时出错:", error); + // console.error("下载文件时出错:", error); // 如果fetch失败,尝试直接下载 link.href = url; link.download = fileName; diff --git a/src/views/financialinformation/secfilingsdetail/size1440/index.vue b/src/views/financialinformation/secfilingsdetail/size1440/index.vue index 30d54d1..d7f0cb8 100644 --- a/src/views/financialinformation/secfilingsdetail/size1440/index.vue +++ b/src/views/financialinformation/secfilingsdetail/size1440/index.vue @@ -103,7 +103,7 @@ onMounted(() => { issuer: "FiEE, Inc. ", }; } - console.log(filingData.value); + // console.log(filingData.value); }); diff --git a/src/views/financialinformation/secfilingsdetail/size375/index.vue b/src/views/financialinformation/secfilingsdetail/size375/index.vue index 1ce42a1..702207e 100644 --- a/src/views/financialinformation/secfilingsdetail/size375/index.vue +++ b/src/views/financialinformation/secfilingsdetail/size375/index.vue @@ -103,7 +103,7 @@ onMounted(() => { issuer: "FiEE, Inc. ", }; } - console.log(filingData.value); + // console.log(filingData.value); }); diff --git a/src/views/financialinformation/secfilingsdetail/size768/index.vue b/src/views/financialinformation/secfilingsdetail/size768/index.vue index 97df02b..a69bbcc 100644 --- a/src/views/financialinformation/secfilingsdetail/size768/index.vue +++ b/src/views/financialinformation/secfilingsdetail/size768/index.vue @@ -103,7 +103,7 @@ onMounted(() => { issuer: "FiEE, Inc. ", }; } - console.log(filingData.value); + // console.log(filingData.value); }); diff --git a/src/views/footerLinks/privacyPolicy/index.vue b/src/views/footerLinks/privacyPolicy/index.vue index 46dc0ed..b37f9b1 100644 --- a/src/views/footerLinks/privacyPolicy/index.vue +++ b/src/views/footerLinks/privacyPolicy/index.vue @@ -3,8 +3,8 @@ import { computed } from 'vue' import { useWindowSize } from '@vueuse/core' import size375 from '@/views/footerLinks/privacyPolicy/size375/index.vue' -import size768 from '@/views/footerLinks/privacyPolicy/size375/index.vue' -import size1440 from '@/views/footerLinks/privacyPolicy/size1920/index.vue' +import size768 from '@/views/footerLinks/privacyPolicy/size768/index.vue' +import size1440 from '@/views/footerLinks/privacyPolicy/size1440/index.vue' import size1920 from '@/views/footerLinks/privacyPolicy/size1920/index.vue' import { useRouter } from 'vue-router' import { useI18n } from 'vue-i18n' diff --git a/src/views/footerLinks/privacyPolicy/size1440/index.vue b/src/views/footerLinks/privacyPolicy/size1440/index.vue new file mode 100644 index 0000000..d1a684a --- /dev/null +++ b/src/views/footerLinks/privacyPolicy/size1440/index.vue @@ -0,0 +1,252 @@ + + + + + diff --git a/src/views/footerLinks/privacyPolicy/size1920/index.vue b/src/views/footerLinks/privacyPolicy/size1920/index.vue index b4d63a5..448ce00 100644 --- a/src/views/footerLinks/privacyPolicy/size1920/index.vue +++ b/src/views/footerLinks/privacyPolicy/size1920/index.vue @@ -4,11 +4,249 @@ import { onUnmounted, ref, watch, onMounted, computed } from 'vue' diff --git a/src/views/footerLinks/privacyPolicy/size375/index.vue b/src/views/footerLinks/privacyPolicy/size375/index.vue index 3ada20b..d1a684a 100644 --- a/src/views/footerLinks/privacyPolicy/size375/index.vue +++ b/src/views/footerLinks/privacyPolicy/size375/index.vue @@ -4,11 +4,249 @@ import { onUnmounted, ref, watch, onMounted, computed } from 'vue' diff --git a/src/views/footerLinks/privacyPolicy/size768/index.vue b/src/views/footerLinks/privacyPolicy/size768/index.vue new file mode 100644 index 0000000..d1a684a --- /dev/null +++ b/src/views/footerLinks/privacyPolicy/size768/index.vue @@ -0,0 +1,252 @@ + + + + + diff --git a/src/views/footerLinks/siteMap/index.vue b/src/views/footerLinks/siteMap/index.vue index 5bbc2d1..33436a6 100644 --- a/src/views/footerLinks/siteMap/index.vue +++ b/src/views/footerLinks/siteMap/index.vue @@ -3,8 +3,8 @@ import { computed } from 'vue' import { useWindowSize } from '@vueuse/core' import size375 from '@/views/footerLinks/siteMap/size375/index.vue' -import size768 from '@/views/footerLinks/siteMap/size375/index.vue' -import size1440 from '@/views/footerLinks/siteMap/size1920/index.vue' +import size768 from '@/views/footerLinks/siteMap/size768/index.vue' +import size1440 from '@/views/footerLinks/siteMap/size1440/index.vue' import size1920 from '@/views/footerLinks/siteMap/size1920/index.vue' import { useRouter } from 'vue-router' import { useI18n } from 'vue-i18n' diff --git a/src/views/footerLinks/siteMap/size1440/index.vue b/src/views/footerLinks/siteMap/size1440/index.vue new file mode 100644 index 0000000..3528991 --- /dev/null +++ b/src/views/footerLinks/siteMap/size1440/index.vue @@ -0,0 +1,147 @@ + + + + + \ No newline at end of file diff --git a/src/views/footerLinks/siteMap/size1920/index.vue b/src/views/footerLinks/siteMap/size1920/index.vue index ebca6d3..83f59a3 100644 --- a/src/views/footerLinks/siteMap/size1920/index.vue +++ b/src/views/footerLinks/siteMap/size1920/index.vue @@ -1,14 +1,148 @@ - diff --git a/src/views/footerLinks/siteMap/size375/index.vue b/src/views/footerLinks/siteMap/size375/index.vue index 4f64724..5b7f26b 100644 --- a/src/views/footerLinks/siteMap/size375/index.vue +++ b/src/views/footerLinks/siteMap/size375/index.vue @@ -1,14 +1,148 @@ - diff --git a/src/views/footerLinks/siteMap/size768/index.vue b/src/views/footerLinks/siteMap/size768/index.vue new file mode 100644 index 0000000..3bf0d21 --- /dev/null +++ b/src/views/footerLinks/siteMap/size768/index.vue @@ -0,0 +1,147 @@ + + + + + \ No newline at end of file diff --git a/src/views/footerLinks/termsOfUse/index.vue b/src/views/footerLinks/termsOfUse/index.vue index 77d2c15..0d68933 100644 --- a/src/views/footerLinks/termsOfUse/index.vue +++ b/src/views/footerLinks/termsOfUse/index.vue @@ -3,8 +3,8 @@ import { computed } from 'vue' import { useWindowSize } from '@vueuse/core' import size375 from '@/views/footerLinks/termsOfUse/size375/index.vue' -import size768 from '@/views/footerLinks/termsOfUse/size375/index.vue' -import size1440 from '@/views/footerLinks/termsOfUse/size1920/index.vue' +import size768 from '@/views/footerLinks/termsOfUse/size768/index.vue' +import size1440 from '@/views/footerLinks/termsOfUse/size1440/index.vue' import size1920 from '@/views/footerLinks/termsOfUse/size1920/index.vue' import { useRouter } from 'vue-router' import { useI18n } from 'vue-i18n' diff --git a/src/views/footerLinks/termsOfUse/size1440/index.vue b/src/views/footerLinks/termsOfUse/size1440/index.vue new file mode 100644 index 0000000..6e1b2f4 --- /dev/null +++ b/src/views/footerLinks/termsOfUse/size1440/index.vue @@ -0,0 +1,193 @@ + + + + + \ No newline at end of file diff --git a/src/views/footerLinks/termsOfUse/size1920/index.vue b/src/views/footerLinks/termsOfUse/size1920/index.vue index 790c0a2..885a883 100644 --- a/src/views/footerLinks/termsOfUse/size1920/index.vue +++ b/src/views/footerLinks/termsOfUse/size1920/index.vue @@ -4,11 +4,191 @@ import { onUnmounted, ref, watch, onMounted, computed } from 'vue' - diff --git a/src/views/footerLinks/termsOfUse/size375/index.vue b/src/views/footerLinks/termsOfUse/size375/index.vue index b799a7f..5299123 100644 --- a/src/views/footerLinks/termsOfUse/size375/index.vue +++ b/src/views/footerLinks/termsOfUse/size375/index.vue @@ -4,11 +4,191 @@ import { onUnmounted, ref, watch, onMounted, computed } from 'vue' - diff --git a/src/views/footerLinks/termsOfUse/size768/index.vue b/src/views/footerLinks/termsOfUse/size768/index.vue new file mode 100644 index 0000000..5f2c244 --- /dev/null +++ b/src/views/footerLinks/termsOfUse/size768/index.vue @@ -0,0 +1,193 @@ + + + + + \ No newline at end of file diff --git a/src/views/govern/size1440/index.vue b/src/views/govern/size1440/index.vue index b6b1635..e20cab6 100644 --- a/src/views/govern/size1440/index.vue +++ b/src/views/govern/size1440/index.vue @@ -39,6 +39,7 @@

{{ item.title }}

+
@@ -86,28 +87,28 @@ const state = reactive({ description: "Defines the purpose, composition, and responsibilities of the Audit Committee in overseeing financial reporting and disclosure.", url: quarterlyPdfone, - date: "Last updated: March 2025", + date: "May 30, 2025", }, { title: "CODE OF BUSINESS CONDUCT AND ETHICS", description: "Establishes the ethical standards and legal compliance expectations for all directors, officers and employees.", url: quarterlyPdftwo, - date: "Last updated: January 2025", + date: "May 30, 2025", }, { title: "COMPENSATION COMMITTEE CHARTER", description: "Outlines the duties and responsibilities for overseeing executive compensation and benefit plans.", url: quarterlyPdfthree, - date: "Last updated: February 2025", + date: "May 30, 2025", }, { title: "NOMINATING AND CORPORATE GOVERNANCE COMMITTEE CHARTER", description: "Provides the framework for director nominations and corporate governance matters.", url: quarterlyPdffour, - date: "Last updated: April 2025", + date: "May 30, 2025", }, ], }); diff --git a/src/views/govern/size1920/index.vue b/src/views/govern/size1920/index.vue index 519d694..e20cab6 100644 --- a/src/views/govern/size1920/index.vue +++ b/src/views/govern/size1920/index.vue @@ -39,7 +39,7 @@

{{ item.title }}

- {{ item.date }} +
diff --git a/src/views/govern/size375/index.vue b/src/views/govern/size375/index.vue index 70b822f..bf75baf 100644 --- a/src/views/govern/size375/index.vue +++ b/src/views/govern/size375/index.vue @@ -36,6 +36,7 @@

{{ item.title }}

+
@@ -82,28 +83,28 @@ const state = reactive({ description: "Defines the purpose, composition, and responsibilities of the Audit Committee in overseeing financial reporting and disclosure.", url: quarterlyPdfone, - date: "Last updated: March 2025", + date: "May 30, 2025", }, { title: "CODE OF BUSINESS CONDUCT AND ETHICS", description: "Establishes the ethical standards and legal compliance expectations for all directors, officers and employees.", url: quarterlyPdftwo, - date: "Last updated: January 2025", + date: "May 30, 2025", }, { title: "COMPENSATION COMMITTEE CHARTER", description: "Outlines the duties and responsibilities for overseeing executive compensation and benefit plans.", url: quarterlyPdfthree, - date: "Last updated: February 2025", + date: "May 30, 2025", }, { title: "NOMINATING AND CORPORATE GOVERNANCE COMMITTEE CHARTER", description: "Provides the framework for director nominations and corporate governance matters.", url: quarterlyPdffour, - date: "Last updated: April 2025", + date: "May 30, 2025", }, ], }); diff --git a/src/views/govern/size768/index.vue b/src/views/govern/size768/index.vue index 70b822f..bf75baf 100644 --- a/src/views/govern/size768/index.vue +++ b/src/views/govern/size768/index.vue @@ -36,6 +36,7 @@

{{ item.title }}

+
@@ -82,28 +83,28 @@ const state = reactive({ description: "Defines the purpose, composition, and responsibilities of the Audit Committee in overseeing financial reporting and disclosure.", url: quarterlyPdfone, - date: "Last updated: March 2025", + date: "May 30, 2025", }, { title: "CODE OF BUSINESS CONDUCT AND ETHICS", description: "Establishes the ethical standards and legal compliance expectations for all directors, officers and employees.", url: quarterlyPdftwo, - date: "Last updated: January 2025", + date: "May 30, 2025", }, { title: "COMPENSATION COMMITTEE CHARTER", description: "Outlines the duties and responsibilities for overseeing executive compensation and benefit plans.", url: quarterlyPdfthree, - date: "Last updated: February 2025", + date: "May 30, 2025", }, { title: "NOMINATING AND CORPORATE GOVERNANCE COMMITTEE CHARTER", description: "Provides the framework for director nominations and corporate governance matters.", url: quarterlyPdffour, - date: "Last updated: April 2025", + date: "May 30, 2025", }, ], }); diff --git a/src/views/historic-stock/size1440/index.vue b/src/views/historic-stock/size1440/index.vue index c9173ab..5b9070a 100644 --- a/src/views/historic-stock/size1440/index.vue +++ b/src/views/historic-stock/size1440/index.vue @@ -85,201 +85,202 @@ diff --git a/src/views/news/size768/index.vue b/src/views/news/size768/index.vue index 55c43e1..a31ad4e 100644 --- a/src/views/news/size768/index.vue +++ b/src/views/news/size768/index.vue @@ -1,116 +1,366 @@ diff --git a/src/views/press-releases/size1440/index.vue b/src/views/press-releases/size1440/index.vue index 5eae583..0c5b6fa 100644 --- a/src/views/press-releases/size1440/index.vue +++ b/src/views/press-releases/size1440/index.vue @@ -1,52 +1,48 @@ @@ -75,10 +71,22 @@ const state = reactive({ inputValue: "", //输入值 newsData: [ { - date: "May 30, 2025", - title: "FiEE, Inc. Announces Relisting on Nasdaq", + date: "June 3, 2025", + title: "FiEE, Inc. seized market opportunities through 2025 Osaka Expo", content: - 'Hong Kong, May 30, 2025 — FiEE, Inc. ("FiEE, Inc." or the "Company"), a technology company integrating IoT, connectivity and AI to redefine brand management solutions...', + "Hong Kong, 3 June 2025 — FiEE, Inc. (NASDAQ:MINM) (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions in the digital era, is pleased to announce significant business updates....", + }, + { + date: "June 2, 2025", + title: "FiEE, Inc. Closes Its First Day of Trading on NASDAQ", + content: + "Hong Kong, 2 June 2025 — FiEE, Inc. (NASDAQ:MINM) (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions in the digital era, commenced...", + }, + { + date: "May 30, 2025", + title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq", + content: + "Hong Kong, May 30, 2025 — FiEE, Inc. (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions...", }, ], filterNewsData: [], @@ -130,7 +138,7 @@ watch( const handleSearch = () => { // 手动触发筛选(保留这个函数以保持兼容性) handleFilter(); - console.log("筛选结果:", state.filterNewsData); + // console.log("筛选结果:", state.filterNewsData); }; const handleNewClick = (item) => { diff --git a/src/views/press-releases/size1920/index.vue b/src/views/press-releases/size1920/index.vue index de9b942..051e8be 100644 --- a/src/views/press-releases/size1920/index.vue +++ b/src/views/press-releases/size1920/index.vue @@ -1,52 +1,48 @@ @@ -75,10 +71,22 @@ const state = reactive({ inputValue: "", //输入值 newsData: [ { - date: "May 30, 2025", - title: "FiEE, Inc. Announces Relisting on Nasdaq", + date: "June 3, 2025", + title: "FiEE, Inc. seized market opportunities through 2025 Osaka Expo", content: - 'Hong Kong, May 30, 2025 — FiEE, Inc. ("FiEE, Inc." or the "Company"), a technology company integrating IoT, connectivity and AI to redefine brand management solutions...', + "Hong Kong, 3 June 2025 — FiEE, Inc. (NASDAQ:MINM) (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions in the digital era, is pleased to announce significant business updates....", + }, + { + date: "June 2, 2025", + title: "FiEE, Inc. Closes Its First Day of Trading on NASDAQ", + content: + "Hong Kong, 2 June 2025 — FiEE, Inc. (NASDAQ:MINM) (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions in the digital era, commenced...", + }, + { + date: "May 30, 2025", + title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq", + content: + "Hong Kong, May 30, 2025 — FiEE, Inc. (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions...", }, ], filterNewsData: [], @@ -130,7 +138,7 @@ watch( const handleSearch = () => { // 手动触发筛选(保留这个函数以保持兼容性) handleFilter(); - console.log("筛选结果:", state.filterNewsData); + // console.log("筛选结果:", state.filterNewsData); }; const handleNewClick = (item) => { diff --git a/src/views/press-releases/size375/index.vue b/src/views/press-releases/size375/index.vue index 84d2039..4a2303b 100644 --- a/src/views/press-releases/size375/index.vue +++ b/src/views/press-releases/size375/index.vue @@ -1,59 +1,52 @@ @@ -82,10 +75,22 @@ const state = reactive({ inputValue: "", //输入值 newsData: [ { - date: "May 30, 2025", - title: "FiEE, Inc. Announces Relisting on Nasdaq", + date: "June 3, 2025", + title: "FiEE, Inc. seized market opportunities through 2025 Osaka Expo", content: - 'Hong Kong, May 30, 2025 — FiEE, Inc. ("FiEE, Inc." or the "Company"), a technology company integrating IoT, connectivity and AI to redefine brand management solutions...', + "Hong Kong, 3 June 2025 — FiEE, Inc. (NASDAQ:MINM) (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions in the digital era, is pleased to announce significant business updates....", + }, + { + date: "June 2, 2025", + title: "FiEE, Inc. Closes Its First Day of Trading on NASDAQ", + content: + "Hong Kong, 2 June 2025 — FiEE, Inc. (NASDAQ:MINM) (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions in the digital era, commenced...", + }, + { + date: "May 30, 2025", + title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq", + content: + "Hong Kong, May 30, 2025 — FiEE, Inc. (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions...", }, ], filterNewsData: [], @@ -137,7 +142,7 @@ watch( const handleSearch = () => { // 手动触发筛选(保留这个函数以保持兼容性) handleFilter(); - console.log("筛选结果:", state.filterNewsData); + // console.log("筛选结果:", state.filterNewsData); }; const handleNewClick = (item) => { diff --git a/src/views/press-releases/size768/index.vue b/src/views/press-releases/size768/index.vue index acc5042..c416783 100644 --- a/src/views/press-releases/size768/index.vue +++ b/src/views/press-releases/size768/index.vue @@ -1,52 +1,48 @@ @@ -75,10 +71,22 @@ const state = reactive({ inputValue: "", //输入值 newsData: [ { - date: "May 30, 2025", - title: "FiEE, Inc. Announces Relisting on Nasdaq", + date: "June 3, 2025", + title: "FiEE, Inc. seized market opportunities through 2025 Osaka Expo", content: - 'Hong Kong, May 30, 2025 — FiEE, Inc. ("FiEE, Inc." or the "Company"), a technology company integrating IoT, connectivity and AI to redefine brand management solutions...', + "Hong Kong, 3 June 2025 — FiEE, Inc. (NASDAQ:MINM) (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions in the digital era, is pleased to announce significant business updates....", + }, + { + date: "June 2, 2025", + title: "FiEE, Inc. Closes Its First Day of Trading on NASDAQ", + content: + "Hong Kong, 2 June 2025 — FiEE, Inc. (NASDAQ:MINM) (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions in the digital era, commenced...", + }, + { + date: "May 30, 2025", + title: "FiEE, Inc. Announces Reinitiation of Trading on Nasdaq", + content: + "Hong Kong, May 30, 2025 — FiEE, Inc. (“FiEE, Inc.” or the “Company”), a technology company integrating IoT, connectivity and AI to redefine brand management solutions...", }, ], filterNewsData: [], @@ -130,7 +138,7 @@ watch( const handleSearch = () => { // 手动触发筛选(保留这个函数以保持兼容性) handleFilter(); - console.log("筛选结果:", state.filterNewsData); + // console.log("筛选结果:", state.filterNewsData); }; const handleNewClick = (item) => { diff --git a/src/views/stock-quote/size1440/index.vue b/src/views/stock-quote/size1440/index.vue index a8db8ef..5cf1458 100644 --- a/src/views/stock-quote/size1440/index.vue +++ b/src/views/stock-quote/size1440/index.vue @@ -12,7 +12,7 @@ getStockQuate()
-
${{ stockQuote.change?.slice(0,4) }}
+
${{ stockQuote.price }}
NASDAQ: MINM
{{ formatted }}
@@ -23,9 +23,9 @@ getStockQuate()
{{ stockQuote.open }}
-
Change
+
% Change
+ :class="stockQuote.change?.includes('-') ? 'text-green-500' : 'text-red-500'"> {{ stockQuote.change }}
diff --git a/src/views/stock-quote/size1920/index.vue b/src/views/stock-quote/size1920/index.vue index 2ba1cdf..b2096cd 100644 --- a/src/views/stock-quote/size1920/index.vue +++ b/src/views/stock-quote/size1920/index.vue @@ -12,7 +12,7 @@ getStockQuate() >
-
${{ stockQuote.change?.slice(0,4) }}
+
${{ stockQuote.price }}
NASDAQ: MINM
{{ formatted }}
@@ -23,12 +23,12 @@ getStockQuate()
{{ stockQuote.open }}
-
Change
+
% Change
+ :class="stockQuote.change?.includes('-') ? 'text-green-500' : 'text-red-500'"> {{ stockQuote.change }}
diff --git a/src/views/stock-quote/size375/index.vue b/src/views/stock-quote/size375/index.vue index 2f99fe5..3804d38 100644 --- a/src/views/stock-quote/size375/index.vue +++ b/src/views/stock-quote/size375/index.vue @@ -8,7 +8,7 @@ getStockQuate();
-
${{ stockQuote.change?.slice(0,4) }}
+
${{ stockQuote.price }}
NASDAQ: MINM
{{ formatted }}
@@ -19,10 +19,10 @@ getStockQuate();
{{ stockQuote.open }}
-
Change
+
% Change
+ :class="stockQuote.change?.includes('-') ? 'text-green-500' : 'text-red-500'"> {{ stockQuote.change }}
diff --git a/src/views/stock-quote/size768/index.vue b/src/views/stock-quote/size768/index.vue index 9985088..71e4d31 100644 --- a/src/views/stock-quote/size768/index.vue +++ b/src/views/stock-quote/size768/index.vue @@ -12,7 +12,7 @@ getStockQuate();
-
${{ stockQuote.change?.slice(0,4) }}
+
${{ stockQuote.price }}
NASDAQ: MINM
{{ formatted }}
@@ -23,9 +23,9 @@ getStockQuate();
{{ stockQuote.open }}
-
Change
+
% Change
+ :class="stockQuote.change?.includes('-') ? 'text-green-500' : 'text-red-500'"> {{ stockQuote.change }}