diff --git a/site/docs/DATABASE.md b/site/docs/DATABASE.md index 7ace6ae99f..6f9021bcc9 100644 --- a/site/docs/DATABASE.md +++ b/site/docs/DATABASE.md @@ -65,7 +65,6 @@ Administering data requires administrative access to the database. This access i * `date_published`: `2019-07-25` # (Date) The publication date of the report. * `epoch_incident_date`: `1564016400` # (Int) Date the incident occurred in the Unix Epoch. * `epoch_date_submitted`:`1564016400` # (Int) Date the report was submitted to the AIID in the Unix Epoch. -* `epoch_date_published`: `1564016400` # (Int) The publication date of the report in the Unix Epoch. ### People diff --git a/site/gatsby-site/page-creators/createCitationPages.js b/site/gatsby-site/page-creators/createCitationPages.js index 73e2d9916d..1b527d4668 100644 --- a/site/gatsby-site/page-creators/createCitationPages.js +++ b/site/gatsby-site/page-creators/createCitationPages.js @@ -44,7 +44,7 @@ const createCitationPages = async (graphql, createPage, { languages }) => { allMongodbAiidprodIncidents.nodes.forEach((incident, index) => { const incident_id = incident.incident_id; - const nlp_similar_incidents = incident.nlp_similar_incidents.map( + const nlp_similar_incidents = incident.nlp_similar_incidents?.map( ({ incident_id, similarity }) => ({ ...allMongodbAiidprodIncidents.nodes.find( (incident) => incident.incident_id === incident_id diff --git a/site/gatsby-site/playwright/e2e/submit.spec.ts b/site/gatsby-site/playwright/e2e/submit.spec.ts index 47535146de..e86a4965db 100644 --- a/site/gatsby-site/playwright/e2e/submit.spec.ts +++ b/site/gatsby-site/playwright/e2e/submit.spec.ts @@ -470,9 +470,9 @@ test.describe('The Submit form', () => { incident_ids: 1, }; - const epoch_date_published_gt = getUnixTime(subWeeks(new Date(date_published), 2)); + const date_published_gt = subWeeks(new Date(date_published), 2).toISOString(); - const epoch_date_published_lt = getUnixTime(addWeeks(new Date(date_published), 2)); + const date_published_lt = addWeeks(new Date(date_published), 2).toISOString(); const { data: { reports: reportsAuthors } } = await query({ query: gql` @@ -487,7 +487,7 @@ test.describe('The Submit form', () => { const { data: { reports: reportsPublished } } = await query({ query: gql` query { - reports(filter: { epoch_date_published: {GT: ${epoch_date_published_gt}, LT: ${epoch_date_published_lt} } }) { + reports(filter: { date_published: {GT: "${date_published_gt}", LT: "${date_published_lt}" } }) { report_number } } @@ -564,9 +564,9 @@ test.describe('The Submit form', () => { date_published, }; - const epoch_date_published_gt = getUnixTime(subWeeks(new Date(date_published), 2)); + const date_published_gt = subWeeks(new Date(date_published), 2).toISOString(); - const epoch_date_published_lt = getUnixTime(addWeeks(new Date(date_published), 2)); + const date_published_lt = addWeeks(new Date(date_published), 2).toISOString(); const { data: { reports: reportsAuthors } } = await query({ query: gql` @@ -581,7 +581,7 @@ test.describe('The Submit form', () => { const { data: { reports: reportsPublished } } = await query({ query: gql` query { - reports(filter: { epoch_date_published: {GT: ${epoch_date_published_gt}, LT: ${epoch_date_published_lt} } }) { + reports(filter: { date_published: {GT: "${date_published_gt}", LT: "${date_published_lt}" } }) { report_number } } diff --git a/site/gatsby-site/playwright/e2e/unit/AlgoliaUpdater.spec.ts b/site/gatsby-site/playwright/e2e/unit/AlgoliaUpdater.spec.ts index 230efb4914..839b7f6210 100644 --- a/site/gatsby-site/playwright/e2e/unit/AlgoliaUpdater.spec.ts +++ b/site/gatsby-site/playwright/e2e/unit/AlgoliaUpdater.spec.ts @@ -24,7 +24,6 @@ test.describe('AlgoliaUpdater', () => { date_published: '2015-05-19', date_submitted: '2019-06-01', description: 'Description of report 1', - epoch_date_published: 1431993600, epoch_date_submitted: 1559347200, image_url: 'http://url.com', cloudinary_id: 'http://cloudinary.com', @@ -46,7 +45,6 @@ test.describe('AlgoliaUpdater', () => { date_published: '2015-05-19', date_submitted: '2019-06-01', description: 'Description of report 23', - epoch_date_published: 1431993600, epoch_date_submitted: 1559347200, image_url: 'http://url.com', cloudinary_id: 'http://cloudinary.com', @@ -135,7 +133,6 @@ test.describe('AlgoliaUpdater', () => { date_published: '2015-05-19', date_submitted: '2019-06-01', description: 'Description of report', - epoch_date_published: 1431993600, epoch_date_submitted: 1559347200, image_url: 'http://url.com', cloudinary_id: 'http://cloudinary.com', @@ -278,10 +275,10 @@ test.describe('AlgoliaUpdater', () => { 'instant_search-en_epoch_incident_date_desc', 'instant_search-es_epoch_incident_date_asc', 'instant_search-en_epoch_incident_date_asc', - 'instant_search-es_epoch_date_published_desc', - 'instant_search-en_epoch_date_published_desc', - 'instant_search-es_epoch_date_published_asc', - 'instant_search-en_epoch_date_published_asc', + 'instant_search-es_date_published_desc', + 'instant_search-en_date_published_desc', + 'instant_search-es_date_published_asc', + 'instant_search-en_date_published_asc', 'instant_search-es_epoch_date_submitted_desc', 'instant_search-en_epoch_date_submitted_desc', 'instant_search-es_epoch_date_submitted_asc', diff --git a/site/gatsby-site/playwright/e2e/unit/discover/routing.spec.ts b/site/gatsby-site/playwright/e2e/unit/discover/routing.spec.ts index c86334f57d..8b50339c5a 100644 --- a/site/gatsby-site/playwright/e2e/unit/discover/routing.spec.ts +++ b/site/gatsby-site/playwright/e2e/unit/discover/routing.spec.ts @@ -10,7 +10,7 @@ test('Should parse back and forth a discover URL', async () => { const location = { search: - '?authors=Christopher%20Knaus%7C%7CSam%20Levin&classifications=CSETv0%3AIntent%3AAccident&epoch_date_published_max=1670371200&hideDuplicates=1&is_incident_report=true&page=1&s=tesla&sortBy=published-date-asc&source_domain=theguardian.com', + '?authors=Christopher%20Knaus%7C%7CSam%20Levin&classifications=CSETv0%3AIntent%3AAccident&date_published_max=2022-12-07&hideDuplicates=1&is_incident_report=true&page=1&s=tesla&sortBy=published-date-asc&source_domain=theguardian.com', }; const result = parseURL({ location, indexName, queryConfig }); @@ -27,7 +27,7 @@ test('Should parse back and forth a discover URL', async () => { is_incident_report: ['true'], }); expect(state.range).toEqual({ - epoch_date_published: `:1670371200`, + date_published: `:2022-12-07`, }); expect(state.configure).toEqual({ diff --git a/site/gatsby-site/playwright/e2e/unit/reportTranslator.spec.ts b/site/gatsby-site/playwright/e2e/unit/reportTranslator.spec.ts index 54c2e84078..74996cfeca 100644 --- a/site/gatsby-site/playwright/e2e/unit/reportTranslator.spec.ts +++ b/site/gatsby-site/playwright/e2e/unit/reportTranslator.spec.ts @@ -17,7 +17,6 @@ const reports = [ date_published: '2015-05-19', date_submitted: '2019-06-01', description: 'Description of report 1', - epoch_date_published: 1431993600, epoch_date_submitted: 1559347200, image_url: 'http://url.com', source_domain: 'blogs.wsj.com', @@ -38,7 +37,6 @@ const reports = [ date_published: '2015-05-19', date_submitted: '2020-06-01', description: 'Descripción del reporte 2', - epoch_date_published: 1431993600, epoch_date_submitted: 1559347200, image_url: 'http://url.com', source_domain: 'blogs.wsj.com', @@ -59,7 +57,6 @@ const reports = [ date_published: '2015-05-19', date_submitted: '2021-06-01', description: 'Descripción del reporte 3', - epoch_date_published: 1431993600, epoch_date_submitted: 1559347200, image_url: 'http://url.com', source_domain: 'blogs.wsj.com', diff --git a/site/gatsby-site/playwright/fixtures/algoliaMock.ts b/site/gatsby-site/playwright/fixtures/algoliaMock.ts index 306ace3d71..cb5857b536 100644 --- a/site/gatsby-site/playwright/fixtures/algoliaMock.ts +++ b/site/gatsby-site/playwright/fixtures/algoliaMock.ts @@ -7,7 +7,7 @@ export const algoliaMock = { description: "Some employees at the coffee chain say it isn't living up to promises to improve the company's labor practices", date_downloaded: '2019-04-13', - epoch_date_published: 1443052800, + date_published: '2015-09-23T14:00:00.000Z', epoch_date_submitted: 1559347200, image_url: 'https://cbsnews1.cbsistatic.com/hub/i/r/2015/03/17/01a38576-5108-40f7-8df8-5416164ed878/thumbnail/1200x630/ca8d35fe6bc065b5c9a747d92bc6d94c/154211248.jpg', @@ -381,7 +381,7 @@ export const algoliaMock = { description: '😱 Wait! What? Just when you think you’ve seen it all…. Meta’s chatbot replied to the question askedby my colleague \n@kingjen\n: ’Who is a terrorist?’ with my (given) name! That’s right, not Bin Laden ', date_downloaded: '2022-08-26', - epoch_date_published: 1661385600, + date_published: '2022-08-25T16:00:00.000Z', epoch_date_submitted: 1661472000, image_url: 'https://pbs.twimg.com/media/Fa8rYYVWIAAI0xN?format=jpg', language: 'en', @@ -600,7 +600,7 @@ export const algoliaMock = { description: 'Cuando el covid-19 golpeó Europa en marzo de 2020, los hospitales se sumieron en una crisis sanitaria que aún se entendía mal. “Los médicos realmente no tenían idea de cómo manejar a estos pacientes”, dice Laure Wyn', date_downloaded: '2022-01-30', - epoch_date_published: 1627603200, + date_published: '2021-07-30T14:00:00.000Z', epoch_date_submitted: 1648598400, image_url: 'https://wp.technologyreview.com/wp-content/uploads/2021/07/AP_20178810286930.jpg?resize=1200,600', @@ -5495,683 +5495,683 @@ export const algoliaMock = { '828489600': 1, '889056000': 4, '921542400': 3, - '1048291200': 1, - '1049241600': 4, - '1054425600': 3, - '1057017600': 2, - '1140825600': 3, - '1185408000': 7, - '1211500800': 24, - '1214870400': 1, - '1216339200': 4, - '1238371200': 1, - '1251763200': 1, - '1273276800': 30, - '1301961600': 29, - '1303084800': 1, - '1316476800': 2, - '1325376000': 1, - '1325721600': 1, - '1330128000': 7, - '1336089600': 4, - '1343779200': 10, - '1349740800': 11, - '1354320000': 2, - '1355097600': 2, - '1358899200': 27, - '1375142400': 2, - '1377993600': 5, - '1379030400': 3, - '1380585600': 12, - '1385510400': 1, - '1388534400': 1, - '1390262400': 6, - '1393891200': 5, - '1397606400': 2, - '1399507200': 2, - '1405382400': 27, - '1407974400': 10, - '1408060800': 10, - '1409011200': 2, - '1412121600': 2, - '1413590400': 20, - '1418083200': 3, - '1419206400': 1, - '1425168000': 16, - '1427155200': 1, - '1427846400': 3, - '1428105600': 11, - '1430438400': 2, - '1431302400': 11, - '1431993600': 14, - '1433116800': 2, - '1433289600': 24, - '1434240000': 1, - '1435708800': 39, - '1435795200': 12, - '1436745600': 12, - '1436918400': 1, - '1438387200': 1, - '1441065600': 13, - '1443139200': 5, - '1446508800': 22, - '1447372800': 3, - '1447804800': 13, - '1449273600': 35, - '1451606400': 1, - '1453248000': 4, - '1454284800': 1, - '1454457600': 1, - '1455062400': 7, - '1456790400': 8, - '1458777600': 28, - '1459382400': 18, - '1459468800': 4, - '1459814400': 4, - '1460160000': 1, - '1460678400': 1, - '1463961600': 37, - '1464220800': 3, - '1464739200': 10, - '1464825600': 12, - '1465948800': 5, - '1466121600': 24, - '1467244800': 22, - '1467331200': 29, - '1468281600': 27, - '1469059200': 1, - '1470787200': 33, - '1472688000': 5, - '1473033600': 10, - '1473120000': 9, - '1473379200': 13, - '1474848000': 28, - '1475280000': 2, - '1475884800': 29, - '1479254400': 2, - '1481068800': 22, - '1481760000': 1, - '1482364800': 1, - '1483056000': 16, - '1483142400': 4, - '1483228800': 1, - '1484438400': 4, - '1485907200': 1, - '1487894400': 6, - '1488153600': 9, - '1488326400': 2, - '1489363200': 3, - '1489536000': 2, - '1491436800': 5, - '1491523200': 2, - '1491782400': 3, - '1492041600': 10, - '1492214400': 1, - '1493078400': 23, - '1493337600': 1, - '1493596800': 1, - '1494201600': 1, - '1495152000': 3, - '1496448000': 8, - '1497484800': 10, - '1498867200': 35, - '1499040000': 2, - '1499644800': 7, - '1500249600': 30, - '1501545600': 2, - '1501632000': 16, - '1502755200': 2, - '1503705600': 4, - '1504742400': 1, - '1505260800': 45, - '1505433600': 1, - '1505692800': 1, - '1505952000': 2, - '1506470400': 1, - '1507593600': 5, - '1507766400': 5, - '1508198400': 26, - '1508976000': 7, - '1509494400': 1, - '1510099200': 24, - '1510185600': 4, - '1510704000': 8, - '1511222400': 1, - '1512259200': 29, - '1512518400': 22, - '1515715200': 3, - '1515974400': 2, - '1516579200': 5, - '1516838400': 1, - '1517443200': 1, - '1518652800': 2, - '1521331200': 25, - '1521763200': 14, - '1522627200': 28, - '1523404800': 4, - '1523491200': 3, - '1524182400': 2, - '1524441600': 2, - '1524960000': 4, - '1525132800': 6, - '1525910400': 4, - '1525996800': 1, - '1527292800': 4, - '1527552000': 4, - '1527811200': 1, - '1528675200': 3, - '1530489600': 1, - '1530662400': 1, - '1530921600': 4, - '1532044800': 2, - '1532131200': 3, - '1532563200': 1, - '1533081600': 3, - '1534118400': 4, - '1534291200': 5, - '1535760000': 6, - '1538352000': 2, - '1540598400': 19, - '1541462400': 25, - '1541635200': 5, - '1541721600': 2, - '1542931200': 2, - '1543363200': 2, - '1543622400': 25, - '1543795200': 1, - '1543968000': 17, - '1546300800': 1, - '1548806400': 4, - '1548979200': 3, - '1549238400': 3, - '1550102400': 3, - '1551398400': 6, - '1552262400': 3, - '1552608000': 1, - '1554076800': 7, - '1554249600': 3, - '1559260800': 3, - '1559347200': 5, - '1559520000': 2, - '1561161600': 8, - '1561420800': 2, - '1561939200': 3, - '1562112000': 3, - '1562371200': 3, - '1562716800': 1, - '1562803200': 2, - '1564531200': 3, - '1566604800': 1, - '1567728000': 2, - '1569715200': 3, - '1570147200': 5, - '1570492800': 3, - '1570579200': 1, - '1571097600': 6, - '1571875200': 7, - '1572998400': 4, - '1573430400': 6, - '1573516800': 6, - '1573776000': 4, - '1574985600': 4, - '1575676800': 2, - '1577577600': 8, - '1577836800': 6, - '1577923200': 1, - '1579046400': 4, - '1579305600': 1, - '1579564800': 6, - '1580342400': 11, - '1580947200': 1, - '1581033600': 2, - '1582070400': 3, - '1582156800': 3, - '1582502400': 4, - '1583712000': 4, - '1584316800': 4, - '1584403200': 1, - '1584921600': 2, - '1585267200': 4, - '1585699200': 1, - '1586822400': 2, - '1586908800': 1, - '1588032000': 3, - '1588377600': 2, - '1590883200': 9, - '1590969600': 4, - '1591401600': 12, - '1591574400': 2, - '1591747200': 1, - '1591833600': 2, - '1592006400': 2, - '1592179200': 2, - '1592352000': 1, - '1592611200': 8, - '1592956800': 4, - '1593216000': 1, - '1593302400': 6, - '1593561600': 9, - '1593993600': 1, - '1595030400': 1, - '1595894400': 8, - '1596412800': 1, - '1596585600': 2, - '1596672000': 3, - '1596758400': 3, - '1597276800': 8, - '1598918400': 1, - '1600128000': 2, - '1600387200': 5, - '1600560000': 1, - '1601337600': 3, - '1601683200': 3, - '1601942400': 2, - '1602028800': 1, - '1602115200': 2, - '1602201600': 2, - '1602720000': 1, - '1603152000': 5, - '1603238400': 2, - '1603324800': 1, - '1603497600': 2, - '1603929600': 1, - '1604188800': 3, - '1605052800': 4, - '1605398400': 1, - '1606435200': 2, - '1607040000': 2, - '1607212800': 1, - '1607990400': 2, - '1608249600': 5, - '1608681600': 13, - '1608768000': 1, - '1608854400': 2, - '1609027200': 1, - '1609459200': 4, - '1610236800': 4, - '1610323200': 1, - '1610496000': 2, - '1610668800': 1, - '1611187200': 2, - '1612137600': 1, - '1612483200': 3, - '1613001600': 1, - '1613088000': 1, - '1613433600': 1, - '1614124800': 1, - '1614297600': 2, - '1614556800': 1, - '1614643200': 4, - '1615766400': 2, - '1615939200': 7, - '1617235200': 3, - '1618272000': 1, - '1618617600': 9, - '1618963200': 1, - '1619568000': 1, - '1619654400': 2, - '1619827200': 8, - '1620259200': 3, - '1621296000': 7, - '1621728000': 1, - '1622160000': 6, - '1622592000': 7, - '1622678400': 4, - '1623456000': 2, - '1624924800': 5, - '1625097600': 1, - '1625184000': 1, - '1625356800': 4, - '1625875200': 3, - '1625961600': 2, - '1626134400': 2, - '1626393600': 4, - '1626739200': 1, - '1626998400': 3, - '1627603200': 1, - '1627776000': 14, - '1627948800': 4, - '1628985600': 4, - '1630454400': 3, - '1631836800': 3, - '1632096000': 2, - '1633046400': 4, - '1633478400': 1, - '1634256000': 3, - '1634515200': 1, - '1634774400': 1, - '1634860800': 3, - '1635379200': 10, - '1635724800': 8, - '1635811200': 4, - '1635897600': 1, - '1636243200': 1, - '1636502400': 5, - '1637452800': 3, - '1638748800': 18, - '1638921600': 1, - '1639180800': 7, - '1640390400': 2, - '1640476800': 2, - '1640563200': 2, - '1640995200': 1, - '1642118400': 1, - '1642204800': 10, - '1642809600': 3, - '1643155200': 1, - '1643932800': 5, - '1644451200': 3, - '1644537600': 6, - '1644883200': 1, - '1645574400': 1, - '1645747200': 4, - '1646006400': 4, - '1646092800': 7, - '1646179200': 1, - '1646265600': 1, - '1646611200': 2, - '1647302400': 3, - '1647388800': 9, - '1647475200': 2, - '1647907200': 2, - '1648771200': 8, - '1648944000': 1, - '1649116800': 2, - '1649203200': 2, - '1649808000': 1, - '1650326400': 5, - '1650412800': 3, - '1650499200': 8, - '1651968000': 2, - '1652400000': 2, - '1652659200': 17, - '1652832000': 4, - '1653436800': 3, - '1654041600': 1, - '1654214400': 12, - '1654905600': 4, - '1654992000': 2, - '1656374400': 1, - '1658102400': 1, - '1658361600': 5, - '1658448000': 3, - '1658620800': 3, - '1658793600': 2, - '1659830400': 3, - '1660521600': 3, - '1660694400': 1, - '1661040000': 2, - '1661126400': 3, - '1661385600': 2, - '1661731200': 1, - '1662508800': 2, - '1662854400': 2, - '1663027200': 3, - '1663200000': 18, - '1663891200': 1, - '1664755200': 2, - '1664841600': 8, - '1665446400': 1, - '1665878400': 5, - '1667952000': 1, - '1668124800': 14, - '1668470400': 6, - '1668902400': 9, - '1669075200': 6, - '1669248000': 8, - '1669334400': 9, - '1669507200': 1, - '1669766400': 18, - '1669852800': 15, - '1671408000': 23, - '1671580800': 26, - '1672185600': 10, - '1672531200': 5, - '1672704000': 8, - '1672876800': 1, - '1673395200': 9, - '1674000000': 4, - '1674172800': 3, - '1674259200': 2, - '1675036800': 19, - '1675296000': 2, - '1675382400': 6, - '1675641600': 5, - '1675728000': 18, - '1675814400': 4, - '1675987200': 2, - '1676160000': 11, - '1676332800': 12, - '1676419200': 3, - '1676505600': 23, - '1676851200': 4, - '1677024000': 1, - '1677456000': 2, - '1677542400': 22, - '1677801600': 2, - '1677974400': 5, - '1678492800': 2, - '1678838400': 5, - '1679011200': 2, - '1679270400': 2, - '1679356800': 11, - '1679529600': 2, - '1679616000': 5, - '1679875200': 7, - '1680048000': 2, - '1680220800': 5, - '1680307200': 3, - '1680912000': 2, - '1681430400': 7, - '1681689600': 2, - '1682380800': 1, - '1682899200': 1, - '1683072000': 2, - '1683158400': 58, - '1683763200': 22, - '1683849600': 1, - '1684108800': 10, - '1684368000': 1, - '1684627200': 1, - '1684713600': 19, - '1684886400': 2, - '1685232000': 1, - '1685318400': 46, - '1685577600': 3, - '1685923200': 2, - '1686096000': 1, - '1686528000': 1, - '1686614400': 4, - '1687392000': 2, - '1687478400': 2, - '1687564800': 1, - '1687737600': 1, - '1687910400': 1, - '1688083200': 3, - '1688342400': 1, - '1688515200': 1, - '1689033600': 2, - '1689552000': 1, - '1689897600': 1, - '1690156800': 3, - '1691452800': 4, - '1691625600': 1, - '1691712000': 1, - '1691971200': 2, - '1692144000': 2, - '1693094400': 1, - '1693353600': 1, - '1693612800': 1, - '1694390400': 1, - '1694908800': 10, - '1695081600': 1, - '1696204800': 27, - '1696377600': 1, - '1696636800': 14, - '1696723200': 10, - '1697414400': 44, - '1697500800': 1, - '1698105600': 1, - '1698278400': 3, - '1698710400': 17, - '1698883200': 1, - '1699401600': 2, - '1699488000': 3, - '1699574400': 3, - '1700697600': 1, - '1701043200': 43, - '1701388800': 3, - '1701820800': 3, - '1702252800': 8, - '1702339200': 12, - '1702512000': 3, - '1702684800': 1, - '1702857600': 6, - '1703030400': 32, - '1703548800': 30, - '1703635200': 1, - '1703808000': 1, - '1704758400': 8, - '1704931200': 1, - '1705017600': 5, - '1705104000': 1, - '1705276800': 4, - '1705536000': 2, - '1705795200': 14, - '1705968000': 2, - '1706054400': 31, - '1706400000': 17, - '1706572800': 2, - '1706745600': 3, - '1706832000': 21, - '1707091200': 1, - '1707264000': 2, - '1707350400': 1, - '1707609600': 1, - '1707696000': 1, - '1707782400': 6, - '1707868800': 7, - '1708128000': 1, - '1708214400': 6, - '1708300800': 1, - '1708387200': 17, - '1708473600': 35, - '1708560000': 1, - '1709078400': 34, - '1709251200': 6, - '1709510400': 1, - '1709683200': 3, - '1710374400': 7, - '1710979200': 1, - '1711065600': 3, - '1711152000': 3, - '1711411200': 9, - '1711584000': 2, - '1711670400': 2, - '1711929600': 3, - '1712016000': 3, - '1712102400': 9, - '1712188800': 2, - '1712275200': 1, - '1712361600': 3, - '1712448000': 2, - '1712534400': 1, - '1713052800': 1, - '1713139200': 1, - '1713225600': 2, - '1713484800': 10, - '1713830400': 1, - '1713916800': 3, - '1714003200': 2, - '1714089600': 4, - '1714348800': 2, - '1714694400': 3, - '1715558400': 2, - '1715644800': 9, - '1715731200': 2, - '1715817600': 1, - '1716163200': 16, - '1716249600': 1, - '1716422400': 4, - '1716508800': 16, - '1716595200': 2, - '1716681600': 1, - '1716940800': 1, - '1717027200': 2, - '1717113600': 2, - '1717200000': 3, - '1717459200': 1, - '1717632000': 1, - '1717718400': 5, - '1717804800': 2, - '1717891200': 2, - '1718150400': 2, - '1718236800': 1, - '1718668800': 3, - '1718755200': 1, - '1718841600': 1, - '1718928000': 2, - '1719014400': 1, - '1719100800': 5, - '1719273600': 1, - '1719360000': 4, - '1719446400': 2, - '1719619200': 1, - '1719792000': 4, - '1719878400': 2, - '1719964800': 2, - '1720051200': 2, - '1720310400': 2, - '1720569600': 1, - '1720828800': 1, - '1721088000': 1, - '1721260800': 1, - '1721520000': 2, - '1721606400': 1, - '1721692800': 1, - '1721865600': 2, - '1721952000': 3, - '1722211200': 1, - '1722297600': 5, - '1722902400': 1, - '1723075200': 1, - '1723507200': 3, - '1723593600': 4, - '1723766400': 3, - '1723939200': 4, - '1724112000': 1, - '1724198400': 1, - '1724371200': 1, - '1724803200': 7, - '1725235200': 2, - '1725321600': 2, - '1725408000': 3, - '1725753600': 1, - '1725840000': 2, - '1726185600': 2, - '1726617600': 1, - '1726704000': 12, - '1727136000': 8, - '1727222400': 7, - '1727481600': 2, - '1727740800': 3, - '1727827200': 13, - '1728172800': 1, - '1728259200': 20, - '1728345600': 2, - '1728432000': 1, - '1728604800': 1, - '1728777600': 3, - '1728950400': 7, - '1729036800': 11, - '1729209600': 2, - '1729468800': 2, - '1729641600': 1, - '1729728000': 1, - '1729900800': 1, - '1730505600': 1, - '1731456000': 1, - '1732060800': 2, + '2003-03-22T00:00:00.000Z': 1, + '2003-04-02T00:00:00.000Z': 4, + '2003-06-01T00:00:00.000Z': 3, + '2003-07-01T00:00:00.000Z': 2, + '2006-02-25T00:00:00.000Z': 3, + '2007-07-26T00:00:00.000Z': 7, + '2008-05-23T00:00:00.000Z': 24, + '2008-07-01T00:00:00.000Z': 1, + '2008-07-18T00:00:00.000Z': 4, + '2009-03-30T00:00:00.000Z': 1, + '2009-09-01T00:00:00.000Z': 1, + '2010-05-08T00:00:00.000Z': 30, + '2011-04-05T00:00:00.000Z': 29, + '2011-04-18T00:00:00.000Z': 1, + '2011-09-20T00:00:00.000Z': 2, + '2012-01-01T00:00:00.000Z': 1, + '2012-01-05T00:00:00.000Z': 1, + '2012-02-25T00:00:00.000Z': 7, + '2012-05-04T00:00:00.000Z': 4, + '2012-08-01T00:00:00.000Z': 10, + '2012-10-09T00:00:00.000Z': 11, + '2012-12-01T00:00:00.000Z': 2, + '2012-12-10T00:00:00.000Z': 2, + '2013-01-23T00:00:00.000Z': 27, + '2013-07-30T00:00:00.000Z': 2, + '2013-09-01T00:00:00.000Z': 5, + '2013-09-13T00:00:00.000Z': 3, + '2013-10-01T00:00:00.000Z': 12, + '2013-11-27T00:00:00.000Z': 1, + '2014-01-01T00:00:00.000Z': 1, + '2014-01-21T00:00:00.000Z': 6, + '2014-03-04T00:00:00.000Z': 5, + '2014-04-16T00:00:00.000Z': 2, + '2014-05-08T00:00:00.000Z': 2, + '2014-07-15T00:00:00.000Z': 27, + '2014-08-14T00:00:00.000Z': 10, + '2014-08-15T00:00:00.000Z': 10, + '2014-08-26T00:00:00.000Z': 2, + '2014-10-01T00:00:00.000Z': 2, + '2014-10-18T00:00:00.000Z': 20, + '2014-12-09T00:00:00.000Z': 3, + '2014-12-22T00:00:00.000Z': 1, + '2015-03-01T00:00:00.000Z': 16, + '2015-03-24T00:00:00.000Z': 1, + '2015-04-01T00:00:00.000Z': 3, + '2015-04-04T00:00:00.000Z': 11, + '2015-05-01T00:00:00.000Z': 2, + '2015-05-11T00:00:00.000Z': 11, + '2015-05-19T00:00:00.000Z': 14, + '2015-06-01T00:00:00.000Z': 2, + '2015-06-03T00:00:00.000Z': 24, + '2015-06-14T00:00:00.000Z': 1, + '2015-07-01T00:00:00.000Z': 39, + '2015-07-02T00:00:00.000Z': 12, + '2015-07-13T00:00:00.000Z': 12, + '2015-07-15T00:00:00.000Z': 1, + '2015-08-01T00:00:00.000Z': 1, + '2015-09-01T00:00:00.000Z': 13, + '2015-09-25T00:00:00.000Z': 5, + '2015-11-03T00:00:00.000Z': 22, + '2015-11-13T00:00:00.000Z': 3, + '2015-11-18T00:00:00.000Z': 13, + '2015-12-05T00:00:00.000Z': 35, + '2016-01-01T00:00:00.000Z': 1, + '2016-01-20T00:00:00.000Z': 4, + '2016-02-01T00:00:00.000Z': 1, + '2016-02-03T00:00:00.000Z': 1, + '2016-02-10T00:00:00.000Z': 7, + '2016-03-01T00:00:00.000Z': 8, + '2016-03-24T00:00:00.000Z': 28, + '2016-03-31T00:00:00.000Z': 18, + '2016-04-01T00:00:00.000Z': 4, + '2016-04-05T00:00:00.000Z': 4, + '2016-04-09T00:00:00.000Z': 1, + '2016-04-15T00:00:00.000Z': 1, + '2016-05-23T00:00:00.000Z': 37, + '2016-05-26T00:00:00.000Z': 3, + '2016-06-01T00:00:00.000Z': 10, + '2016-06-02T00:00:00.000Z': 12, + '2016-06-15T00:00:00.000Z': 5, + '2016-06-17T00:00:00.000Z': 24, + '2016-06-30T00:00:00.000Z': 22, + '2016-07-01T00:00:00.000Z': 29, + '2016-07-12T00:00:00.000Z': 27, + '2016-07-21T00:00:00.000Z': 1, + '2016-08-10T00:00:00.000Z': 33, + '2016-09-01T00:00:00.000Z': 5, + '2016-09-05T00:00:00.000Z': 10, + '2016-09-06T00:00:00.000Z': 9, + '2016-09-09T00:00:00.000Z': 13, + '2016-09-26T00:00:00.000Z': 28, + '2016-10-01T00:00:00.000Z': 2, + '2016-10-08T00:00:00.000Z': 29, + '2016-11-16T00:00:00.000Z': 2, + '2016-12-07T00:00:00.000Z': 22, + '2016-12-15T00:00:00.000Z': 1, + '2016-12-22T00:00:00.000Z': 1, + '2016-12-30T00:00:00.000Z': 16, + '2016-12-31T00:00:00.000Z': 4, + '2017-01-01T00:00:00.000Z': 1, + '2017-01-15T00:00:00.000Z': 4, + '2017-02-01T00:00:00.000Z': 1, + '2017-02-24T00:00:00.000Z': 6, + '2017-02-27T00:00:00.000Z': 9, + '2017-03-01T00:00:00.000Z': 2, + '2017-03-13T00:00:00.000Z': 3, + '2017-03-15T00:00:00.000Z': 2, + '2017-04-06T00:00:00.000Z': 5, + '2017-04-07T00:00:00.000Z': 2, + '2017-04-10T00:00:00.000Z': 3, + '2017-04-13T00:00:00.000Z': 10, + '2017-04-15T00:00:00.000Z': 1, + '2017-04-25T00:00:00.000Z': 23, + '2017-04-28T00:00:00.000Z': 1, + '2017-05-01T00:00:00.000Z': 1, + '2017-05-08T00:00:00.000Z': 1, + '2017-05-19T00:00:00.000Z': 3, + '2017-06-03T00:00:00.000Z': 8, + '2017-06-15T00:00:00.000Z': 10, + '2017-07-01T00:00:00.000Z': 35, + '2017-07-03T00:00:00.000Z': 2, + '2017-07-10T00:00:00.000Z': 7, + '2017-07-17T00:00:00.000Z': 30, + '2017-08-01T00:00:00.000Z': 2, + '2017-08-02T00:00:00.000Z': 16, + '2017-08-15T00:00:00.000Z': 2, + '2017-08-26T00:00:00.000Z': 4, + '2017-09-07T00:00:00.000Z': 1, + '2017-09-13T00:00:00.000Z': 45, + '2017-09-15T00:00:00.000Z': 1, + '2017-09-18T00:00:00.000Z': 1, + '2017-09-21T00:00:00.000Z': 2, + '2017-09-27T00:00:00.000Z': 1, + '2017-10-10T00:00:00.000Z': 5, + '2017-10-12T00:00:00.000Z': 5, + '2017-10-17T00:00:00.000Z': 26, + '2017-10-26T00:00:00.000Z': 7, + '2017-11-01T00:00:00.000Z': 1, + '2017-11-08T00:00:00.000Z': 24, + '2017-11-09T00:00:00.000Z': 4, + '2017-11-15T00:00:00.000Z': 8, + '2017-11-21T00:00:00.000Z': 1, + '2017-12-03T00:00:00.000Z': 29, + '2017-12-06T00:00:00.000Z': 22, + '2018-01-12T00:00:00.000Z': 3, + '2018-01-15T00:00:00.000Z': 2, + '2018-01-22T00:00:00.000Z': 5, + '2018-01-25T00:00:00.000Z': 1, + '2018-02-01T00:00:00.000Z': 1, + '2018-02-15T00:00:00.000Z': 2, + '2018-03-18T00:00:00.000Z': 25, + '2018-03-23T00:00:00.000Z': 14, + '2018-04-02T00:00:00.000Z': 28, + '2018-04-11T00:00:00.000Z': 4, + '2018-04-12T00:00:00.000Z': 3, + '2018-04-20T00:00:00.000Z': 2, + '2018-04-23T00:00:00.000Z': 2, + '2018-04-29T00:00:00.000Z': 4, + '2018-05-01T00:00:00.000Z': 6, + '2018-05-10T00:00:00.000Z': 4, + '2018-05-11T00:00:00.000Z': 1, + '2018-05-26T00:00:00.000Z': 4, + '2018-05-29T00:00:00.000Z': 4, + '2018-06-01T00:00:00.000Z': 1, + '2018-06-11T00:00:00.000Z': 3, + '2018-07-02T00:00:00.000Z': 1, + '2018-07-04T00:00:00.000Z': 1, + '2018-07-07T00:00:00.000Z': 4, + '2018-07-20T00:00:00.000Z': 2, + '2018-07-21T00:00:00.000Z': 3, + '2018-07-26T00:00:00.000Z': 1, + '2018-08-01T00:00:00.000Z': 3, + '2018-08-13T00:00:00.000Z': 4, + '2018-08-15T00:00:00.000Z': 5, + '2018-09-01T00:00:00.000Z': 6, + '2018-10-01T00:00:00.000Z': 2, + '2018-10-27T00:00:00.000Z': 19, + '2018-11-06T00:00:00.000Z': 25, + '2018-11-08T00:00:00.000Z': 5, + '2018-11-09T00:00:00.000Z': 2, + '2018-11-23T00:00:00.000Z': 2, + '2018-11-28T00:00:00.000Z': 2, + '2018-12-01T00:00:00.000Z': 25, + '2018-12-03T00:00:00.000Z': 1, + '2018-12-05T00:00:00.000Z': 17, + '2019-01-01T00:00:00.000Z': 1, + '2019-01-30T00:00:00.000Z': 4, + '2019-02-01T00:00:00.000Z': 3, + '2019-02-04T00:00:00.000Z': 3, + '2019-02-14T00:00:00.000Z': 3, + '2019-03-01T00:00:00.000Z': 6, + '2019-03-11T00:00:00.000Z': 3, + '2019-03-15T00:00:00.000Z': 1, + '2019-04-01T00:00:00.000Z': 7, + '2019-04-03T00:00:00.000Z': 3, + '2019-05-31T00:00:00.000Z': 3, + '2019-06-01T00:00:00.000Z': 5, + '2019-06-03T00:00:00.000Z': 2, + '2019-06-22T00:00:00.000Z': 8, + '2019-06-25T00:00:00.000Z': 2, + '2019-07-01T00:00:00.000Z': 3, + '2019-07-03T00:00:00.000Z': 3, + '2019-07-06T00:00:00.000Z': 3, + '2019-07-10T00:00:00.000Z': 1, + '2019-07-11T00:00:00.000Z': 2, + '2019-07-31T00:00:00.000Z': 3, + '2019-08-24T00:00:00.000Z': 1, + '2019-09-06T00:00:00.000Z': 2, + '2019-09-29T00:00:00.000Z': 3, + '2019-10-04T00:00:00.000Z': 5, + '2019-10-08T00:00:00.000Z': 3, + '2019-10-09T00:00:00.000Z': 1, + '2019-10-15T00:00:00.000Z': 6, + '2019-10-24T00:00:00.000Z': 7, + '2019-11-06T00:00:00.000Z': 4, + '2019-11-11T00:00:00.000Z': 6, + '2019-11-12T00:00:00.000Z': 6, + '2019-11-15T00:00:00.000Z': 4, + '2019-11-29T00:00:00.000Z': 4, + '2019-12-07T00:00:00.000Z': 2, + '2019-12-29T00:00:00.000Z': 8, + '2020-01-01T00:00:00.000Z': 6, + '2020-01-02T00:00:00.000Z': 1, + '2020-01-15T00:00:00.000Z': 4, + '2020-01-18T00:00:00.000Z': 1, + '2020-01-21T00:00:00.000Z': 6, + '2020-01-30T00:00:00.000Z': 11, + '2020-02-06T00:00:00.000Z': 1, + '2020-02-07T00:00:00.000Z': 2, + '2020-02-19T00:00:00.000Z': 3, + '2020-02-20T00:00:00.000Z': 3, + '2020-02-24T00:00:00.000Z': 4, + '2020-03-09T00:00:00.000Z': 4, + '2020-03-16T00:00:00.000Z': 4, + '2020-03-17T00:00:00.000Z': 1, + '2020-03-23T00:00:00.000Z': 2, + '2020-03-27T00:00:00.000Z': 4, + '2020-04-01T00:00:00.000Z': 1, + '2020-04-14T00:00:00.000Z': 2, + '2020-04-15T00:00:00.000Z': 1, + '2020-04-28T00:00:00.000Z': 3, + '2020-05-02T00:00:00.000Z': 2, + '2020-05-31T00:00:00.000Z': 9, + '2020-06-01T00:00:00.000Z': 4, + '2020-06-06T00:00:00.000Z': 12, + '2020-06-08T00:00:00.000Z': 2, + '2020-06-10T00:00:00.000Z': 1, + '2020-06-11T00:00:00.000Z': 2, + '2020-06-13T00:00:00.000Z': 2, + '2020-06-15T00:00:00.000Z': 2, + '2020-06-17T00:00:00.000Z': 1, + '2020-06-20T00:00:00.000Z': 8, + '2020-06-24T00:00:00.000Z': 4, + '2020-06-27T00:00:00.000Z': 1, + '2020-06-28T00:00:00.000Z': 6, + '2020-07-01T00:00:00.000Z': 9, + '2020-07-06T00:00:00.000Z': 1, + '2020-07-18T00:00:00.000Z': 1, + '2020-07-28T00:00:00.000Z': 8, + '2020-08-03T00:00:00.000Z': 1, + '2020-08-05T00:00:00.000Z': 2, + '2020-08-06T00:00:00.000Z': 3, + '2020-08-07T00:00:00.000Z': 3, + '2020-08-13T00:00:00.000Z': 8, + '2020-09-01T00:00:00.000Z': 1, + '2020-09-15T00:00:00.000Z': 2, + '2020-09-18T00:00:00.000Z': 5, + '2020-09-20T00:00:00.000Z': 1, + '2020-09-29T00:00:00.000Z': 3, + '2020-10-03T00:00:00.000Z': 3, + '2020-10-06T00:00:00.000Z': 2, + '2020-10-07T00:00:00.000Z': 1, + '2020-10-08T00:00:00.000Z': 2, + '2020-10-09T00:00:00.000Z': 2, + '2020-10-15T00:00:00.000Z': 1, + '2020-10-20T00:00:00.000Z': 5, + '2020-10-21T00:00:00.000Z': 2, + '2020-10-22T00:00:00.000Z': 1, + '2020-10-24T00:00:00.000Z': 2, + '2020-10-29T00:00:00.000Z': 1, + '2020-11-01T00:00:00.000Z': 3, + '2020-11-11T00:00:00.000Z': 4, + '2020-11-15T00:00:00.000Z': 1, + '2020-11-27T00:00:00.000Z': 2, + '2020-12-04T00:00:00.000Z': 2, + '2020-12-06T00:00:00.000Z': 1, + '2020-12-15T00:00:00.000Z': 2, + '2020-12-18T00:00:00.000Z': 5, + '2020-12-23T00:00:00.000Z': 13, + '2020-12-24T00:00:00.000Z': 1, + '2020-12-25T00:00:00.000Z': 2, + '2020-12-27T00:00:00.000Z': 1, + '2021-01-01T00:00:00.000Z': 4, + '2021-01-10T00:00:00.000Z': 4, + '2021-01-11T00:00:00.000Z': 1, + '2021-01-13T00:00:00.000Z': 2, + '2021-01-15T00:00:00.000Z': 1, + '2021-01-21T00:00:00.000Z': 2, + '2021-02-01T00:00:00.000Z': 1, + '2021-02-05T00:00:00.000Z': 3, + '2021-02-11T00:00:00.000Z': 1, + '2021-02-12T00:00:00.000Z': 1, + '2021-02-16T00:00:00.000Z': 1, + '2021-02-24T00:00:00.000Z': 1, + '2021-02-26T00:00:00.000Z': 2, + '2021-03-01T00:00:00.000Z': 1, + '2021-03-02T00:00:00.000Z': 4, + '2021-03-15T00:00:00.000Z': 2, + '2021-03-17T00:00:00.000Z': 7, + '2021-04-01T00:00:00.000Z': 3, + '2021-04-13T00:00:00.000Z': 1, + '2021-04-17T00:00:00.000Z': 9, + '2021-04-21T00:00:00.000Z': 1, + '2021-04-28T00:00:00.000Z': 1, + '2021-04-29T00:00:00.000Z': 2, + '2021-05-01T00:00:00.000Z': 8, + '2021-05-06T00:00:00.000Z': 3, + '2021-05-18T00:00:00.000Z': 7, + '2021-05-23T00:00:00.000Z': 1, + '2021-05-28T00:00:00.000Z': 6, + '2021-06-02T00:00:00.000Z': 7, + '2021-06-03T00:00:00.000Z': 4, + '2021-06-12T00:00:00.000Z': 2, + '2021-06-29T00:00:00.000Z': 5, + '2021-07-01T00:00:00.000Z': 1, + '2021-07-02T00:00:00.000Z': 1, + '2021-07-04T00:00:00.000Z': 4, + '2021-07-10T00:00:00.000Z': 3, + '2021-07-11T00:00:00.000Z': 2, + '2021-07-13T00:00:00.000Z': 2, + '2021-07-16T00:00:00.000Z': 4, + '2021-07-20T00:00:00.000Z': 1, + '2021-07-23T00:00:00.000Z': 3, + '2021-07-30T00:00:00.000Z': 1, + '2021-08-01T00:00:00.000Z': 14, + '2021-08-03T00:00:00.000Z': 4, + '2021-08-15T00:00:00.000Z': 4, + '2021-09-01T00:00:00.000Z': 3, + '2021-09-17T00:00:00.000Z': 3, + '2021-09-20T00:00:00.000Z': 2, + '2021-10-01T00:00:00.000Z': 4, + '2021-10-06T00:00:00.000Z': 1, + '2021-10-15T00:00:00.000Z': 3, + '2021-10-18T00:00:00.000Z': 1, + '2021-10-21T00:00:00.000Z': 1, + '2021-10-22T00:00:00.000Z': 3, + '2021-10-28T00:00:00.000Z': 10, + '2021-11-01T00:00:00.000Z': 8, + '2021-11-02T00:00:00.000Z': 4, + '2021-11-03T00:00:00.000Z': 1, + '2021-11-07T00:00:00.000Z': 1, + '2021-11-10T00:00:00.000Z': 5, + '2021-11-21T00:00:00.000Z': 3, + '2021-12-06T00:00:00.000Z': 18, + '2021-12-08T00:00:00.000Z': 1, + '2021-12-11T00:00:00.000Z': 7, + '2021-12-25T00:00:00.000Z': 2, + '2021-12-26T00:00:00.000Z': 2, + '2021-12-27T00:00:00.000Z': 2, + '2022-01-01T00:00:00.000Z': 1, + '2022-01-14T00:00:00.000Z': 1, + '2022-01-15T00:00:00.000Z': 10, + '2022-01-22T00:00:00.000Z': 3, + '2022-01-26T00:00:00.000Z': 1, + '2022-02-04T00:00:00.000Z': 5, + '2022-02-10T00:00:00.000Z': 3, + '2022-02-11T00:00:00.000Z': 6, + '2022-02-15T00:00:00.000Z': 1, + '2022-02-23T00:00:00.000Z': 1, + '2022-02-25T00:00:00.000Z': 4, + '2022-02-28T00:00:00.000Z': 4, + '2022-03-01T00:00:00.000Z': 7, + '2022-03-02T00:00:00.000Z': 1, + '2022-03-03T00:00:00.000Z': 1, + '2022-03-07T00:00:00.000Z': 2, + '2022-03-15T00:00:00.000Z': 3, + '2022-03-16T00:00:00.000Z': 9, + '2022-03-17T00:00:00.000Z': 2, + '2022-03-22T00:00:00.000Z': 2, + '2022-04-01T00:00:00.000Z': 8, + '2022-04-03T00:00:00.000Z': 1, + '2022-04-05T00:00:00.000Z': 2, + '2022-04-06T00:00:00.000Z': 2, + '2022-04-13T00:00:00.000Z': 1, + '2022-04-19T00:00:00.000Z': 5, + '2022-04-20T00:00:00.000Z': 3, + '2022-04-21T00:00:00.000Z': 8, + '2022-05-08T00:00:00.000Z': 2, + '2022-05-13T00:00:00.000Z': 2, + '2022-05-16T00:00:00.000Z': 17, + '2022-05-18T00:00:00.000Z': 4, + '2022-05-25T00:00:00.000Z': 3, + '2022-06-01T00:00:00.000Z': 1, + '2022-06-03T00:00:00.000Z': 12, + '2022-06-11T00:00:00.000Z': 4, + '2022-06-12T00:00:00.000Z': 2, + '2022-06-28T00:00:00.000Z': 1, + '2022-07-18T00:00:00.000Z': 1, + '2022-07-21T00:00:00.000Z': 5, + '2022-07-22T00:00:00.000Z': 3, + '2022-07-24T00:00:00.000Z': 3, + '2022-07-26T00:00:00.000Z': 2, + '2022-08-07T00:00:00.000Z': 3, + '2022-08-15T00:00:00.000Z': 3, + '2022-08-17T00:00:00.000Z': 1, + '2022-08-21T00:00:00.000Z': 2, + '2022-08-22T00:00:00.000Z': 3, + '2022-08-25T00:00:00.000Z': 2, + '2022-08-29T00:00:00.000Z': 1, + '2022-09-07T00:00:00.000Z': 2, + '2022-09-11T00:00:00.000Z': 2, + '2022-09-13T00:00:00.000Z': 3, + '2022-09-15T00:00:00.000Z': 18, + '2022-09-23T00:00:00.000Z': 1, + '2022-10-03T00:00:00.000Z': 2, + '2022-10-04T00:00:00.000Z': 8, + '2022-10-11T00:00:00.000Z': 1, + '2022-10-16T00:00:00.000Z': 5, + '2022-11-09T00:00:00.000Z': 1, + '2022-11-11T00:00:00.000Z': 14, + '2022-11-15T00:00:00.000Z': 6, + '2022-11-20T00:00:00.000Z': 9, + '2022-11-22T00:00:00.000Z': 6, + '2022-11-24T00:00:00.000Z': 8, + '2022-11-25T00:00:00.000Z': 9, + '2022-11-27T00:00:00.000Z': 1, + '2022-11-30T00:00:00.000Z': 18, + '2022-12-01T00:00:00.000Z': 15, + '2022-12-19T00:00:00.000Z': 23, + '2022-12-21T00:00:00.000Z': 26, + '2022-12-28T00:00:00.000Z': 10, + '2023-01-01T00:00:00.000Z': 5, + '2023-01-03T00:00:00.000Z': 8, + '2023-01-05T00:00:00.000Z': 1, + '2023-01-11T00:00:00.000Z': 9, + '2023-01-18T00:00:00.000Z': 4, + '2023-01-20T00:00:00.000Z': 3, + '2023-01-21T00:00:00.000Z': 2, + '2023-01-30T00:00:00.000Z': 19, + '2023-02-02T00:00:00.000Z': 2, + '2023-02-03T00:00:00.000Z': 6, + '2023-02-06T00:00:00.000Z': 5, + '2023-02-07T00:00:00.000Z': 18, + '2023-02-08T00:00:00.000Z': 4, + '2023-02-10T00:00:00.000Z': 2, + '2023-02-12T00:00:00.000Z': 11, + '2023-02-14T00:00:00.000Z': 12, + '2023-02-15T00:00:00.000Z': 3, + '2023-02-16T00:00:00.000Z': 23, + '2023-02-20T00:00:00.000Z': 4, + '2023-02-22T00:00:00.000Z': 1, + '2023-02-27T00:00:00.000Z': 2, + '2023-02-28T00:00:00.000Z': 22, + '2023-03-03T00:00:00.000Z': 2, + '2023-03-05T00:00:00.000Z': 5, + '2023-03-11T00:00:00.000Z': 2, + '2023-03-15T00:00:00.000Z': 5, + '2023-03-17T00:00:00.000Z': 2, + '2023-03-20T00:00:00.000Z': 2, + '2023-03-21T00:00:00.000Z': 11, + '2023-03-23T00:00:00.000Z': 2, + '2023-03-24T00:00:00.000Z': 5, + '2023-03-27T00:00:00.000Z': 7, + '2023-03-29T00:00:00.000Z': 2, + '2023-03-31T00:00:00.000Z': 5, + '2023-04-01T00:00:00.000Z': 3, + '2023-04-08T00:00:00.000Z': 2, + '2023-04-14T00:00:00.000Z': 7, + '2023-04-17T00:00:00.000Z': 2, + '2023-04-25T00:00:00.000Z': 1, + '2023-05-01T00:00:00.000Z': 1, + '2023-05-03T00:00:00.000Z': 2, + '2023-05-04T00:00:00.000Z': 58, + '2023-05-11T00:00:00.000Z': 22, + '2023-05-12T00:00:00.000Z': 1, + '2023-05-15T00:00:00.000Z': 10, + '2023-05-18T00:00:00.000Z': 1, + '2023-05-21T00:00:00.000Z': 1, + '2023-05-22T00:00:00.000Z': 19, + '2023-05-24T00:00:00.000Z': 2, + '2023-05-28T00:00:00.000Z': 1, + '2023-05-29T00:00:00.000Z': 46, + '2023-06-01T00:00:00.000Z': 3, + '2023-06-05T00:00:00.000Z': 2, + '2023-06-07T00:00:00.000Z': 1, + '2023-06-12T00:00:00.000Z': 1, + '2023-06-13T00:00:00.000Z': 4, + '2023-06-22T00:00:00.000Z': 2, + '2023-06-23T00:00:00.000Z': 2, + '2023-06-24T00:00:00.000Z': 1, + '2023-06-26T00:00:00.000Z': 1, + '2023-06-28T00:00:00.000Z': 1, + '2023-06-30T00:00:00.000Z': 3, + '2023-07-03T00:00:00.000Z': 1, + '2023-07-05T00:00:00.000Z': 1, + '2023-07-11T00:00:00.000Z': 2, + '2023-07-17T00:00:00.000Z': 1, + '2023-07-21T00:00:00.000Z': 1, + '2023-07-24T00:00:00.000Z': 3, + '2023-08-08T00:00:00.000Z': 4, + '2023-08-10T00:00:00.000Z': 1, + '2023-08-11T00:00:00.000Z': 1, + '2023-08-14T00:00:00.000Z': 2, + '2023-08-16T00:00:00.000Z': 2, + '2023-08-27T00:00:00.000Z': 1, + '2023-08-30T00:00:00.000Z': 1, + '2023-09-02T00:00:00.000Z': 1, + '2023-09-11T00:00:00.000Z': 1, + '2023-09-17T00:00:00.000Z': 10, + '2023-09-19T00:00:00.000Z': 1, + '2023-10-02T00:00:00.000Z': 27, + '2023-10-04T00:00:00.000Z': 1, + '2023-10-07T00:00:00.000Z': 14, + '2023-10-08T00:00:00.000Z': 10, + '2023-10-16T00:00:00.000Z': 44, + '2023-10-17T00:00:00.000Z': 1, + '2023-10-24T00:00:00.000Z': 1, + '2023-10-26T00:00:00.000Z': 3, + '2023-10-31T00:00:00.000Z': 17, + '2023-11-02T00:00:00.000Z': 1, + '2023-11-08T00:00:00.000Z': 2, + '2023-11-09T00:00:00.000Z': 3, + '2023-11-10T00:00:00.000Z': 3, + '2023-11-23T00:00:00.000Z': 1, + '2023-11-27T00:00:00.000Z': 43, + '2023-12-01T00:00:00.000Z': 3, + '2023-12-06T00:00:00.000Z': 3, + '2023-12-11T00:00:00.000Z': 8, + '2023-12-12T00:00:00.000Z': 12, + '2023-12-14T00:00:00.000Z': 3, + '2023-12-16T00:00:00.000Z': 1, + '2023-12-18T00:00:00.000Z': 6, + '2023-12-20T00:00:00.000Z': 32, + '2023-12-26T00:00:00.000Z': 30, + '2023-12-27T00:00:00.000Z': 1, + '2023-12-29T00:00:00.000Z': 1, + '2024-01-09T00:00:00.000Z': 8, + '2024-01-11T00:00:00.000Z': 1, + '2024-01-12T00:00:00.000Z': 5, + '2024-01-13T00:00:00.000Z': 1, + '2024-01-15T00:00:00.000Z': 4, + '2024-01-18T00:00:00.000Z': 2, + '2024-01-21T00:00:00.000Z': 14, + '2024-01-23T00:00:00.000Z': 2, + '2024-01-24T00:00:00.000Z': 31, + '2024-01-28T00:00:00.000Z': 17, + '2024-01-30T00:00:00.000Z': 2, + '2024-02-01T00:00:00.000Z': 3, + '2024-02-02T00:00:00.000Z': 21, + '2024-02-05T00:00:00.000Z': 1, + '2024-02-07T00:00:00.000Z': 2, + '2024-02-08T00:00:00.000Z': 1, + '2024-02-11T00:00:00.000Z': 1, + '2024-02-12T00:00:00.000Z': 1, + '2024-02-13T00:00:00.000Z': 6, + '2024-02-14T00:00:00.000Z': 7, + '2024-02-17T00:00:00.000Z': 1, + '2024-02-18T00:00:00.000Z': 6, + '2024-02-19T00:00:00.000Z': 1, + '2024-02-20T00:00:00.000Z': 17, + '2024-02-21T00:00:00.000Z': 35, + '2024-02-22T00:00:00.000Z': 1, + '2024-02-28T00:00:00.000Z': 34, + '2024-03-01T00:00:00.000Z': 6, + '2024-03-04T00:00:00.000Z': 1, + '2024-03-06T00:00:00.000Z': 3, + '2024-03-14T00:00:00.000Z': 7, + '2024-03-21T00:00:00.000Z': 1, + '2024-03-22T00:00:00.000Z': 3, + '2024-03-23T00:00:00.000Z': 3, + '2024-03-26T00:00:00.000Z': 9, + '2024-03-28T00:00:00.000Z': 2, + '2024-03-29T00:00:00.000Z': 2, + '2024-04-01T00:00:00.000Z': 3, + '2024-04-02T00:00:00.000Z': 3, + '2024-04-03T00:00:00.000Z': 9, + '2024-04-04T00:00:00.000Z': 2, + '2024-04-05T00:00:00.000Z': 1, + '2024-04-06T00:00:00.000Z': 3, + '2024-04-07T00:00:00.000Z': 2, + '2024-04-08T00:00:00.000Z': 1, + '2024-04-14T00:00:00.000Z': 1, + '2024-04-15T00:00:00.000Z': 1, + '2024-04-16T00:00:00.000Z': 2, + '2024-04-19T00:00:00.000Z': 10, + '2024-04-23T00:00:00.000Z': 1, + '2024-04-24T00:00:00.000Z': 3, + '2024-04-25T00:00:00.000Z': 2, + '2024-04-26T00:00:00.000Z': 4, + '2024-04-29T00:00:00.000Z': 2, + '2024-05-03T00:00:00.000Z': 3, + '2024-05-13T00:00:00.000Z': 2, + '2024-05-14T00:00:00.000Z': 9, + '2024-05-15T00:00:00.000Z': 2, + '2024-05-16T00:00:00.000Z': 1, + '2024-05-20T00:00:00.000Z': 16, + '2024-05-21T00:00:00.000Z': 1, + '2024-05-23T00:00:00.000Z': 4, + '2024-05-24T00:00:00.000Z': 16, + '2024-05-25T00:00:00.000Z': 2, + '2024-05-26T00:00:00.000Z': 1, + '2024-05-29T00:00:00.000Z': 1, + '2024-05-30T00:00:00.000Z': 2, + '2024-05-31T00:00:00.000Z': 2, + '2024-06-01T00:00:00.000Z': 3, + '2024-06-04T00:00:00.000Z': 1, + '2024-06-06T00:00:00.000Z': 1, + '2024-06-07T00:00:00.000Z': 5, + '2024-06-08T00:00:00.000Z': 2, + '2024-06-09T00:00:00.000Z': 2, + '2024-06-12T00:00:00.000Z': 2, + '2024-06-13T00:00:00.000Z': 1, + '2024-06-18T00:00:00.000Z': 3, + '2024-06-19T00:00:00.000Z': 1, + '2024-06-20T00:00:00.000Z': 1, + '2024-06-21T00:00:00.000Z': 2, + '2024-06-22T00:00:00.000Z': 1, + '2024-06-23T00:00:00.000Z': 5, + '2024-06-25T00:00:00.000Z': 1, + '2024-06-26T00:00:00.000Z': 4, + '2024-06-27T00:00:00.000Z': 2, + '2024-06-29T00:00:00.000Z': 1, + '2024-07-01T00:00:00.000Z': 4, + '2024-07-02T00:00:00.000Z': 2, + '2024-07-03T00:00:00.000Z': 2, + '2024-07-04T00:00:00.000Z': 2, + '2024-07-07T00:00:00.000Z': 2, + '2024-07-10T00:00:00.000Z': 1, + '2024-07-13T00:00:00.000Z': 1, + '2024-07-16T00:00:00.000Z': 1, + '2024-07-18T00:00:00.000Z': 1, + '2024-07-21T00:00:00.000Z': 2, + '2024-07-22T00:00:00.000Z': 1, + '2024-07-23T00:00:00.000Z': 1, + '2024-07-25T00:00:00.000Z': 2, + '2024-07-26T00:00:00.000Z': 3, + '2024-07-29T00:00:00.000Z': 1, + '2024-07-30T00:00:00.000Z': 5, + '2024-08-06T00:00:00.000Z': 1, + '2024-08-08T00:00:00.000Z': 1, + '2024-08-13T00:00:00.000Z': 3, + '2024-08-14T00:00:00.000Z': 4, + '2024-08-16T00:00:00.000Z': 3, + '2024-08-18T00:00:00.000Z': 4, + '2024-08-20T00:00:00.000Z': 1, + '2024-08-21T00:00:00.000Z': 1, + '2024-08-23T00:00:00.000Z': 1, + '2024-08-28T00:00:00.000Z': 7, + '2024-09-02T00:00:00.000Z': 2, + '2024-09-03T00:00:00.000Z': 2, + '2024-09-04T00:00:00.000Z': 3, + '2024-09-08T00:00:00.000Z': 1, + '2024-09-09T00:00:00.000Z': 2, + '2024-09-13T00:00:00.000Z': 2, + '2024-09-18T00:00:00.000Z': 1, + '2024-09-19T00:00:00.000Z': 12, + '2024-09-24T00:00:00.000Z': 8, + '2024-09-25T00:00:00.000Z': 7, + '2024-09-28T00:00:00.000Z': 2, + '2024-10-01T00:00:00.000Z': 3, + '2024-10-02T00:00:00.000Z': 13, + '2024-10-06T00:00:00.000Z': 1, + '2024-10-07T00:00:00.000Z': 20, + '2024-10-08T00:00:00.000Z': 2, + '2024-10-09T00:00:00.000Z': 1, + '2024-10-11T00:00:00.000Z': 1, + '2024-10-13T00:00:00.000Z': 3, + '2024-10-15T00:00:00.000Z': 7, + '2024-10-16T00:00:00.000Z': 11, + '2024-10-18T00:00:00.000Z': 2, + '2024-10-21T00:00:00.000Z': 2, + '2024-10-23T00:00:00.000Z': 1, + '2024-10-24T00:00:00.000Z': 1, + '2024-10-26T00:00:00.000Z': 1, + '2024-11-02T00:00:00.000Z': 1, + '2024-11-13T00:00:00.000Z': 1, + '2024-11-20T00:00:00.000Z': 2, }, 'CSETv1.AI Harm Level': { none: 1003, @@ -6187,1006 +6187,1006 @@ export const algoliaMock = { 'non-imminent risk of tangible harm (an issue) occurred': 97, unclear: 9, }, - epoch_date_published: { - '1062028800': 1, - '1084579200': 1, - '1085011200': 1, - '1095292800': 1, - '1102723200': 1, - '1170806400': 1, - '1211500800': 1, - '1214870400': 1, - '1219104000': 1, - '1238803200': 1, - '1239494400': 5, - '1239580800': 7, - '1239667200': 5, - '1239840000': 1, - '1240012800': 1, - '1240531200': 1, - '1242259200': 1, - '1273276800': 1, - '1282176000': 1, - '1285804800': 1, - '1301961600': 2, - '1302048000': 1, - '1303430400': 1, - '1303862400': 1, - '1304553600': 1, - '1308009600': 1, - '1316476800': 1, - '1325721600': 2, - '1329350400': 2, - '1330128000': 1, - '1330300800': 1, - '1330387200': 1, - '1330560000': 1, - '1332720000': 1, - '1332892800': 1, - '1347753600': 1, - '1348099200': 1, - '1348704000': 1, - '1351641600': 1, - '1352160000': 1, - '1357948800': 1, - '1359417600': 1, - '1359676800': 1, - '1359936000': 5, - '1360022400': 5, - '1360108800': 4, - '1360195200': 2, - '1360800000': 1, - '1364860800': 1, - '1366070400': 1, - '1366243200': 1, - '1368403200': 1, - '1368489600': 1, - '1369785600': 1, - '1375142400': 1, - '1375747200': 1, - '1376697600': 1, - '1380153600': 1, - '1382140800': 1, - '1382572800': 1, - '1390262400': 1, - '1396569600': 1, - '1396656000': 1, - '1398211200': 1, - '1398643200': 1, - '1399334400': 1, - '1400630400': 1, - '1400803200': 2, - '1405382400': 1, - '1407283200': 2, - '1407369600': 1, - '1407974400': 1, - '1411689600': 1, - '1413590400': 1, - '1415318400': 1, - '1418083200': 1, - '1419379200': 1, - '1419811200': 2, - '1423267200': 1, - '1427932800': 1, - '1428105600': 1, - '1428537600': 2, - '1428624000': 2, - '1428710400': 1, - '1429056000': 1, - '1429142400': 1, - '1429574400': 2, - '1429660800': 7, - '1429747200': 5, - '1430092800': 1, - '1430784000': 1, - '1430870400': 1, - '1431302400': 1, - '1431993600': 1, - '1433289600': 1, - '1433376000': 1, - '1435276800': 3, - '1435363200': 1, - '1435449600': 1, - '1435536000': 1, - '1435622400': 1, - '1435708800': 9, - '1435795200': 28, - '1435881600': 1, - '1435968000': 1, - '1436140800': 2, - '1436313600': 1, - '1436572800': 1, - '1436745600': 2, - '1437350400': 1, - '1437436800': 6, - '1437523200': 2, - '1437868800': 1, - '1438560000': 1, - '1439078400': 1, - '1439424000': 5, - '1439510400': 2, - '1439683200': 1, - '1440633600': 1, - '1441065600': 1, - '1443052800': 2, - '1443571200': 1, - '1446422400': 1, - '1446508800': 6, - '1446595200': 1, - '1446681600': 1, - '1446854400': 1, - '1447286400': 1, - '1447804800': 1, - '1448409600': 1, - '1449273600': 1, - '1451606400': 1, - '1452729600': 1, - '1454112000': 1, - '1454457600': 1, - '1454544000': 1, - '1455062400': 2, - '1455235200': 1, - '1455840000': 1, - '1456444800': 1, - '1456704000': 3, - '1456790400': 9, - '1457049600': 1, - '1457568000': 5, - '1458000000': 1, - '1458691200': 1, - '1458777600': 6, - '1458864000': 7, - '1458950400': 3, - '1459036800': 2, - '1459296000': 1, - '1459382400': 1, - '1459555200': 1, - '1459987200': 2, - '1460073600': 2, - '1460419200': 1, - '1461283200': 1, - '1462060800': 1, - '1463961600': 6, - '1464048000': 1, - '1464220800': 3, - '1464393600': 1, - '1464825600': 2, - '1464912000': 3, - '1464998400': 2, - '1465084800': 1, - '1465171200': 1, - '1465257600': 2, - '1465344000': 2, - '1465430400': 4, - '1465516800': 7, - '1466121600': 1, - '1466208000': 3, - '1466294400': 1, - '1466380800': 1, - '1466553600': 1, - '1466812800': 2, - '1466899200': 1, - '1467244800': 1, - '1467331200': 13, - '1467417600': 7, - '1467504000': 1, - '1467590400': 1, - '1467676800': 1, - '1467849600': 1, - '1467936000': 1, - '1468195200': 1, - '1468281600': 4, - '1468368000': 12, - '1468454400': 6, - '1468540800': 3, - '1468800000': 1, - '1469059200': 1, - '1469232000': 1, - '1469491200': 1, - '1470441600': 2, - '1470700800': 1, - '1470787200': 2, - '1470873600': 1, - '1471392000': 1, - '1471564800': 1, - '1471824000': 2, - '1471996800': 1, - '1472083200': 1, - '1472428800': 1, - '1472601600': 1, - '1473033600': 1, - '1473120000': 2, - '1473206400': 1, - '1473292800': 4, - '1473379200': 5, - '1473465600': 1, - '1473811200': 2, - '1474243200': 1, - '1474329600': 1, - '1474675200': 1, - '1474761600': 2, - '1474848000': 5, - '1475798400': 1, - '1475884800': 1, - '1476057600': 1, - '1476144000': 1, - '1477267200': 1, - '1477872000': 1, - '1479427200': 4, - '1480550400': 1, - '1480636800': 1, - '1480723200': 1, - '1480982400': 1, - '1481068800': 10, - '1481155200': 9, - '1481760000': 1, - '1481846400': 2, - '1482019200': 1, - '1482278400': 1, - '1482364800': 1, - '1482537600': 1, - '1482883200': 3, - '1483056000': 1, - '1483142400': 4, - '1483315200': 1, - '1483401600': 2, - '1483488000': 5, - '1483574400': 3, - '1483660800': 7, - '1483747200': 2, - '1483833600': 2, - '1483920000': 10, - '1484006400': 4, - '1484092800': 3, - '1484524800': 3, - '1484611200': 2, - '1485216000': 1, - '1485561600': 1, - '1486339200': 1, - '1486425600': 2, - '1486857600': 1, - '1487894400': 2, - '1487980800': 2, - '1488067200': 1, - '1488153600': 3, - '1488240000': 1, - '1488326400': 5, - '1488499200': 2, - '1488585600': 1, - '1488931200': 2, - '1489622400': 1, - '1489795200': 1, - '1490227200': 3, - '1490572800': 1, - '1491264000': 1, - '1491782400': 4, - '1491868800': 1, - '1492041600': 1, - '1492128000': 1, - '1492473600': 1, - '1492560000': 1, - '1493078400': 6, - '1493164800': 1, - '1493251200': 1, - '1493424000': 1, - '1493596800': 1, - '1493769600': 1, - '1493856000': 1, - '1494201600': 1, - '1495152000': 2, - '1495238400': 2, - '1496102400': 1, - '1497225600': 1, - '1497312000': 2, - '1497830400': 1, - '1498003200': 1, - '1498089600': 2, - '1498694400': 1, - '1499040000': 1, - '1499299200': 1, - '1499644800': 3, - '1499731200': 5, - '1499817600': 2, - '1499904000': 2, - '1499990400': 3, - '1500249600': 2, - '1500336000': 21, - '1500422400': 10, - '1500595200': 2, - '1500854400': 1, - '1501027200': 1, - '1501200000': 1, - '1501545600': 1, - '1501718400': 7, - '1501804800': 5, - '1501891200': 3, - '1502064000': 1, - '1502150400': 1, - '1502236800': 2, - '1502323200': 11, - '1502496000': 1, - '1502755200': 1, - '1502928000': 1, - '1503014400': 2, - '1503187200': 1, - '1503273600': 2, - '1503360000': 1, - '1503446400': 1, - '1504224000': 1, - '1504742400': 2, - '1504915200': 1, - '1505088000': 1, - '1505260800': 4, - '1505347200': 4, - '1505433600': 1, - '1505692800': 6, - '1505779200': 3, - '1505952000': 2, - '1506038400': 2, - '1506470400': 1, - '1506556800': 1, - '1506729600': 1, - '1507248000': 1, - '1507507200': 1, - '1507680000': 3, - '1507766400': 3, - '1507852800': 2, - '1507939200': 1, - '1508198400': 1, - '1508630400': 2, - '1508716800': 4, - '1508803200': 12, - '1508889600': 4, - '1508976000': 6, - '1509062400': 3, - '1509235200': 2, - '1509321600': 1, - '1509408000': 5, - '1509494400': 3, - '1509667200': 1, - '1509840000': 1, - '1509926400': 2, - '1510012800': 1, - '1510099200': 2, - '1510185600': 14, - '1510272000': 7, - '1510358400': 2, - '1510531200': 8, - '1510617600': 6, - '1510704000': 4, - '1510876800': 1, - '1510963200': 1, - '1511308800': 1, - '1511740800': 1, - '1511827200': 3, - '1512000000': 1, - '1512086400': 1, - '1512259200': 1, - '1512518400': 2, - '1512604800': 4, - '1512691200': 11, - '1512777600': 4, - '1513036800': 2, - '1513123200': 4, - '1513209600': 1, - '1513296000': 2, - '1513382400': 1, - '1513468800': 1, - '1513555200': 1, - '1513641600': 5, - '1513728000': 11, - '1513814400': 7, - '1514764800': 2, - '1515628800': 3, - '1515715200': 2, - '1516060800': 2, - '1516147200': 7, - '1516233600': 6, - '1516579200': 3, - '1516752000': 4, - '1516838400': 2, - '1517529600': 2, - '1517788800': 3, - '1518566400': 3, - '1519776000': 2, - '1521417600': 2, - '1521504000': 7, - '1521763200': 3, - '1522281600': 6, - '1522454400': 6, - '1522627200': 5, - '1522800000': 2, - '1523404800': 5, - '1523491200': 3, - '1523577600': 4, - '1523664000': 3, - '1523836800': 4, - '1523923200': 3, - '1524009600': 5, - '1524096000': 2, - '1524182400': 2, - '1524528000': 2, - '1525132800': 3, - '1525478400': 2, - '1525651200': 4, - '1525737600': 3, - '1526342400': 2, - '1526428800': 2, - '1526515200': 3, - '1527120000': 2, - '1527206400': 2, - '1527465600': 2, - '1527552000': 4, - '1528070400': 3, - '1528156800': 2, - '1528243200': 2, - '1528329600': 11, - '1528416000': 5, - '1528761600': 2, - '1528848000': 5, - '1529020800': 2, - '1529539200': 5, - '1529625600': 8, - '1529712000': 3, - '1529884800': 6, - '1531180800': 2, - '1532390400': 2, - '1532476800': 2, - '1533686400': 2, - '1536192000': 2, - '1536624000': 2, - '1537228800': 2, - '1537401600': 3, - '1537488000': 3, - '1537833600': 2, - '1537920000': 4, - '1538092800': 2, - '1538438400': 2, - '1539129600': 7, - '1539216000': 14, - '1539302400': 4, - '1540857600': 2, - '1541635200': 5, - '1541808000': 2, - '1542326400': 2, - '1542844800': 2, - '1542931200': 8, - '1543017600': 2, - '1543190400': 2, - '1543276800': 6, - '1543363200': 6, - '1543449600': 4, - '1543622400': 3, - '1543708800': 3, - '1543795200': 6, - '1543881600': 3, - '1543968000': 5, - '1544054400': 11, - '1544140800': 6, - '1544486400': 2, - '1547510400': 2, - '1549324800': 2, - '1553126400': 2, - '1553731200': 2, - '1555113600': 4, - '1555200000': 7, - '1555977600': 3, - '1557360000': 2, - '1557964800': 2, - '1561420800': 2, - '1568592000': 2, - '1570147200': 3, - '1570665600': 2, - '1571270400': 3, - '1571875200': 3, - '1572998400': 4, - '1573516800': 4, - '1574121600': 2, - '1579305600': 3, - '1580256000': 2, - '1581292800': 2, - '1582070400': 2, - '1582588800': 2, - '1582675200': 3, - '1582761600': 3, - '1588291200': 2, - '1588896000': 2, - '1590105600': 2, - '1590710400': 3, - '1590796800': 4, - '1590969600': 5, - '1591056000': 2, - '1591660800': 3, - '1591747200': 2, - '1592956800': 3, - '1594339200': 2, - '1595203200': 2, - '1595980800': 2, - '1596067200': 3, - '1596153600': 2, - '1596499200': 5, - '1596585600': 3, - '1597104000': 2, - '1597190400': 2, - '1597622400': 3, - '1597795200': 2, - '1597881600': 2, - '1597968000': 2, - '1598486400': 2, - '1599091200': 2, - '1599609600': 2, - '1599696000': 2, - '1599782400': 2, - '1600646400': 2, - '1601337600': 2, - '1601942400': 3, - '1602028800': 2, - '1602201600': 4, - '1602720000': 2, - '1603152000': 2, - '1603324800': 2, - '1603670400': 3, - '1605744000': 2, - '1605830400': 2, - '1606262400': 2, - '1606521600': 3, - '1606780800': 2, - '1608249600': 4, - '1608422400': 2, - '1608768000': 2, - '1609027200': 3, - '1609286400': 2, - '1609545600': 2, - '1609718400': 2, - '1609804800': 2, - '1610236800': 2, - '1610323200': 2, - '1610409600': 3, - '1610496000': 4, - '1610582400': 3, - '1610928000': 2, - '1611014400': 2, - '1611878400': 4, - '1612137600': 2, - '1612310400': 2, - '1612569600': 2, - '1612828800': 2, - '1613001600': 2, - '1613433600': 2, - '1613692800': 2, - '1614211200': 2, - '1614556800': 2, - '1614643200': 2, - '1615334400': 2, - '1615507200': 3, - '1615939200': 3, - '1616025600': 3, - '1616112000': 2, - '1617321600': 2, - '1617926400': 3, - '1618704000': 3, - '1618790400': 2, - '1618876800': 2, - '1619395200': 2, - '1619568000': 3, - '1621382400': 2, - '1621468800': 2, - '1622592000': 3, - '1622678400': 3, - '1622764800': 3, - '1624838400': 2, - '1624924800': 4, - '1625184000': 2, - '1625443200': 3, - '1626220800': 3, - '1626652800': 4, - '1626825600': 2, - '1627257600': 2, - '1627603200': 2, - '1628208000': 2, - '1628467200': 2, - '1629331200': 2, - '1629849600': 2, - '1632096000': 2, - '1634083200': 4, - '1634601600': 2, - '1634688000': 3, - '1634860800': 3, - '1635811200': 2, - '1635897600': 3, - '1636329600': 4, - '1636416000': 3, - '1636502400': 2, - '1636588800': 3, - '1636761600': 2, - '1636934400': 6, - '1637193600': 2, - '1637452800': 3, - '1638144000': 3, - '1638403200': 2, - '1638662400': 2, - '1639008000': 4, - '1639094400': 2, - '1639353600': 2, - '1639440000': 8, - '1639526400': 4, - '1639612800': 4, - '1640649600': 2, - '1641427200': 2, - '1641772800': 3, - '1642464000': 3, - '1643241600': 3, - '1643760000': 4, - '1643932800': 2, - '1644192000': 2, - '1644278400': 2, - '1644796800': 2, - '1645574400': 2, - '1646006400': 3, - '1646092800': 2, - '1646611200': 3, - '1646697600': 5, - '1646784000': 3, - '1647388800': 5, - '1647475200': 7, - '1647820800': 3, - '1647907200': 3, - '1647993600': 2, - '1648166400': 3, - '1648425600': 2, - '1648512000': 3, - '1648684800': 2, - '1648771200': 2, - '1649030400': 2, - '1649116800': 2, - '1649548800': 4, - '1649635200': 2, - '1650585600': 3, - '1650672000': 3, - '1650844800': 4, - '1650931200': 2, - '1653177600': 2, - '1653609600': 2, - '1653868800': 2, - '1654128000': 2, - '1654214400': 2, - '1654473600': 4, - '1655164800': 2, - '1655251200': 2, - '1657065600': 2, - '1657152000': 3, - '1657238400': 3, - '1657497600': 2, - '1658102400': 2, - '1658361600': 2, - '1658448000': 5, - '1658620800': 4, - '1658707200': 3, - '1658793600': 3, - '1658880000': 2, - '1658966400': 3, - '1659657600': 2, - '1659744000': 3, - '1659916800': 2, - '1660089600': 2, - '1660521600': 2, - '1661126400': 4, - '1661212800': 2, - '1661299200': 2, - '1661385600': 2, - '1661472000': 2, - '1661904000': 2, - '1661990400': 2, - '1662076800': 2, - '1662940800': 2, - '1663027200': 2, - '1663113600': 2, - '1663286400': 4, - '1663632000': 2, - '1664755200': 2, - '1664841600': 3, - '1665014400': 3, - '1665100800': 2, - '1665360000': 2, - '1665619200': 3, - '1666224000': 2, - '1667174400': 2, - '1667260800': 2, - '1668124800': 2, - '1668643200': 2, - '1668729600': 2, - '1669075200': 2, - '1669852800': 6, - '1670025600': 2, - '1670198400': 5, - '1670284800': 4, - '1670371200': 3, - '1670457600': 2, - '1670544000': 3, - '1670803200': 2, - '1670976000': 5, - '1671148800': 3, - '1671408000': 4, - '1671494400': 4, - '1671580800': 9, - '1671667200': 5, - '1672272000': 2, - '1672444800': 2, - '1672617600': 6, - '1672704000': 4, - '1672876800': 3, - '1672963200': 5, - '1673049600': 2, - '1673136000': 2, - '1673222400': 9, - '1673308800': 5, - '1673395200': 3, - '1673481600': 4, - '1673568000': 4, - '1673654400': 2, - '1673827200': 3, - '1673913600': 12, - '1674000000': 5, - '1674086400': 4, - '1674172800': 4, - '1674432000': 2, - '1674518400': 3, - '1674604800': 4, - '1674691200': 3, - '1675036800': 5, - '1675123200': 8, - '1675209600': 7, - '1675382400': 3, - '1675641600': 6, - '1675728000': 6, - '1675814400': 16, - '1675900800': 6, - '1675987200': 4, - '1676246400': 8, - '1676332800': 7, - '1676419200': 9, - '1676505600': 20, - '1676592000': 6, - '1676678400': 5, - '1676764800': 5, - '1676851200': 6, - '1676937600': 14, - '1677024000': 3, - '1677110400': 3, - '1677196800': 3, - '1677456000': 3, - '1677542400': 2, - '1677715200': 2, - '1677974400': 2, - '1678060800': 7, - '1678147200': 4, - '1678233600': 2, - '1678492800': 3, - '1678665600': 8, - '1678838400': 2, - '1678924800': 3, - '1679011200': 3, - '1679356800': 4, - '1679443200': 3, - '1679529600': 4, - '1679616000': 2, - '1679961600': 7, - '1680220800': 5, - '1680566400': 2, - '1680652800': 3, - '1681344000': 3, - '1681862400': 4, - '1682121600': 2, - '1682380800': 2, - '1682467200': 3, - '1682553600': 4, - '1683763200': 5, - '1683849600': 9, - '1684195200': 2, - '1684281600': 4, - '1684368000': 5, - '1684454400': 2, - '1684713600': 10, - '1684800000': 9, - '1684972800': 3, - '1685145600': 10, - '1685232000': 3, - '1685318400': 9, - '1685404800': 33, - '1685491200': 15, - '1685577600': 20, - '1685664000': 10, - '1685923200': 4, - '1686096000': 5, - '1686182400': 6, - '1686268800': 2, - '1686614400': 3, - '1687392000': 2, - '1687478400': 3, - '1687737600': 2, - '1687910400': 4, - '1688083200': 2, - '1688774400': 3, - '1689033600': 3, - '1689120000': 2, - '1690156800': 2, - '1693353600': 3, - '1693612800': 2, - '1694563200': 3, - '1695168000': 2, - '1695600000': 2, - '1695859200': 4, - '1696204800': 9, - '1696291200': 8, - '1696377600': 4, - '1696464000': 2, - '1696809600': 7, - '1697500800': 2, - '1698019200': 2, - '1698105600': 6, - '1698278400': 3, - '1698710400': 8, - '1698796800': 4, - '1698883200': 17, - '1698969600': 13, - '1699056000': 3, - '1699228800': 7, - '1699315200': 3, - '1699401600': 9, - '1699488000': 6, - '1699747200': 2, - '1699920000': 3, - '1700006400': 6, - '1700092800': 9, - '1700179200': 2, - '1700265600': 2, - '1700438400': 2, - '1700697600': 2, - '1701043200': 2, - '1701129600': 11, - '1701820800': 2, - '1701907200': 2, - '1702252800': 4, - '1702339200': 20, - '1702512000': 3, - '1702857600': 3, - '1702944000': 6, - '1703030400': 15, - '1703116800': 5, - '1703548800': 3, - '1703635200': 4, - '1703721600': 2, - '1703808000': 11, - '1704067200': 2, - '1704758400': 4, - '1704844800': 8, - '1704931200': 8, - '1705017600': 6, - '1705104000': 4, - '1705276800': 4, - '1705363200': 7, - '1705622400': 2, - '1705881600': 5, - '1705968000': 2, - '1706054400': 4, - '1706140800': 3, - '1706227200': 6, - '1706486400': 2, - '1706572800': 16, - '1706659200': 14, - '1706832000': 3, - '1707004800': 4, - '1707091200': 14, - '1707177600': 5, - '1707264000': 2, - '1707350400': 4, - '1707696000': 6, - '1707782400': 9, - '1707868800': 12, - '1707955200': 8, - '1708041600': 3, - '1708128000': 2, - '1708214400': 2, - '1708300800': 4, - '1708473600': 14, - '1708560000': 26, - '1708646400': 9, - '1708732800': 3, - '1708905600': 4, - '1708992000': 3, - '1709251200': 2, - '1709856000': 2, - '1710374400': 5, - '1711152000': 3, - '1711497600': 3, - '1711584000': 2, - '1711670400': 2, - '1712016000': 3, - '1712102400': 8, - '1712188800': 3, - '1712275200': 4, - '1712448000': 2, - '1712534400': 3, - '1712707200': 2, - '1713139200': 2, - '1713830400': 2, - '1713916800': 2, - '1714003200': 8, - '1714089600': 7, - '1714176000': 3, - '1714348800': 2, - '1715644800': 3, - '1715731200': 4, - '1715817600': 2, - '1715904000': 4, - '1716163200': 12, - '1716249600': 6, - '1716336000': 4, - '1716422400': 7, - '1716508800': 3, - '1716595200': 2, - '1716681600': 2, - '1716768000': 2, - '1717113600': 2, - '1717200000': 2, - '1717977600': 3, - '1718064000': 3, - '1718150400': 5, - '1718236800': 4, - '1718668800': 2, - '1718841600': 3, - '1718928000': 2, - '1719187200': 4, - '1719273600': 2, - '1719532800': 2, - '1719619200': 3, - '1719792000': 2, - '1719878400': 3, - '1719964800': 2, - '1720569600': 2, - '1721692800': 2, - '1721952000': 2, - '1722124800': 2, - '1722384000': 2, - '1723507200': 2, - '1723593600': 6, - '1724025600': 3, - '1724112000': 2, - '1724198400': 2, - '1724716800': 2, - '1724976000': 2, - '1725235200': 5, - '1725321600': 5, - '1725408000': 4, - '1726012800': 2, - '1726185600': 2, - '1726704000': 2, - '1727136000': 2, - '1727222400': 3, - '1727308800': 10, - '1727740800': 3, - '1727827200': 6, - '1727913600': 2, - '1728000000': 2, - '1728086400': 3, - '1728172800': 2, - '1728259200': 4, - '1728432000': 2, - '1728604800': 10, - '1728691200': 6, - '1728777600': 3, - '1728864000': 18, - '1728950400': 7, - '1729036800': 3, - '1729123200': 5, - '1729209600': 7, - '1729468800': 4, - '1729555200': 8, - '1729641600': 12, - '1729728000': 15, - '1729814400': 5, - '1729900800': 3, - '1732060800': 3, + date_published: { + '2003-08-30T00:00:00.000Z': 1, + '2004-05-15T00:00:00.000Z': 1, + '2004-05-20T00:00:00.000Z': 1, + '2004-09-15T00:00:00.000Z': 1, + '2004-12-12T00:00:00.000Z': 1, + '2007-02-07T00:00:00.000Z': 1, + '2008-05-23T00:00:00.000Z': 1, + '2008-07-01T00:00:00.000Z': 1, + '2008-08-19T00:00:00.000Z': 1, + '2009-04-04T00:00:00.000Z': 1, + '2009-04-12T00:00:00.000Z': 5, + '2009-04-13T00:00:00.000Z': 7, + '2009-04-14T00:00:00.000Z': 5, + '2009-04-16T00:00:00.000Z': 1, + '2009-04-18T00:00:00.000Z': 1, + '2009-04-24T00:00:00.000Z': 1, + '2009-05-14T00:00:00.000Z': 1, + '2010-05-08T00:00:00.000Z': 1, + '2010-08-19T00:00:00.000Z': 1, + '2010-09-30T00:00:00.000Z': 1, + '2011-04-05T00:00:00.000Z': 2, + '2011-04-06T00:00:00.000Z': 1, + '2011-04-22T00:00:00.000Z': 1, + '2011-04-27T00:00:00.000Z': 1, + '2011-05-05T00:00:00.000Z': 1, + '2011-06-14T00:00:00.000Z': 1, + '2011-09-20T00:00:00.000Z': 1, + '2012-01-05T00:00:00.000Z': 2, + '2012-02-16T00:00:00.000Z': 2, + '2012-02-25T00:00:00.000Z': 1, + '2012-02-27T00:00:00.000Z': 1, + '2012-02-28T00:00:00.000Z': 1, + '2012-03-01T00:00:00.000Z': 1, + '2012-03-26T00:00:00.000Z': 1, + '2012-03-28T00:00:00.000Z': 1, + '2012-09-16T00:00:00.000Z': 1, + '2012-09-20T00:00:00.000Z': 1, + '2012-09-27T00:00:00.000Z': 1, + '2012-10-31T00:00:00.000Z': 1, + '2012-11-06T00:00:00.000Z': 1, + '2013-01-12T00:00:00.000Z': 1, + '2013-01-29T00:00:00.000Z': 1, + '2013-02-01T00:00:00.000Z': 1, + '2013-02-04T00:00:00.000Z': 5, + '2013-02-05T00:00:00.000Z': 5, + '2013-02-06T00:00:00.000Z': 4, + '2013-02-07T00:00:00.000Z': 2, + '2013-02-14T00:00:00.000Z': 1, + '2013-04-02T00:00:00.000Z': 1, + '2013-04-16T00:00:00.000Z': 1, + '2013-04-18T00:00:00.000Z': 1, + '2013-05-13T00:00:00.000Z': 1, + '2013-05-14T00:00:00.000Z': 1, + '2013-05-29T00:00:00.000Z': 1, + '2013-07-30T00:00:00.000Z': 1, + '2013-08-06T00:00:00.000Z': 1, + '2013-08-17T00:00:00.000Z': 1, + '2013-09-26T00:00:00.000Z': 1, + '2013-10-19T00:00:00.000Z': 1, + '2013-10-24T00:00:00.000Z': 1, + '2014-01-21T00:00:00.000Z': 1, + '2014-04-04T00:00:00.000Z': 1, + '2014-04-05T00:00:00.000Z': 1, + '2014-04-23T00:00:00.000Z': 1, + '2014-04-28T00:00:00.000Z': 1, + '2014-05-06T00:00:00.000Z': 1, + '2014-05-21T00:00:00.000Z': 1, + '2014-05-23T00:00:00.000Z': 2, + '2014-07-15T00:00:00.000Z': 1, + '2014-08-06T00:00:00.000Z': 2, + '2014-08-07T00:00:00.000Z': 1, + '2014-08-14T00:00:00.000Z': 1, + '2014-09-26T00:00:00.000Z': 1, + '2014-10-18T00:00:00.000Z': 1, + '2014-11-07T00:00:00.000Z': 1, + '2014-12-09T00:00:00.000Z': 1, + '2014-12-24T00:00:00.000Z': 1, + '2014-12-29T00:00:00.000Z': 2, + '2015-02-07T00:00:00.000Z': 1, + '2015-04-02T00:00:00.000Z': 1, + '2015-04-04T00:00:00.000Z': 1, + '2015-04-09T00:00:00.000Z': 2, + '2015-04-10T00:00:00.000Z': 2, + '2015-04-11T00:00:00.000Z': 1, + '2015-04-15T00:00:00.000Z': 1, + '2015-04-16T00:00:00.000Z': 1, + '2015-04-21T00:00:00.000Z': 2, + '2015-04-22T00:00:00.000Z': 7, + '2015-04-23T00:00:00.000Z': 5, + '2015-04-27T00:00:00.000Z': 1, + '2015-05-05T00:00:00.000Z': 1, + '2015-05-06T00:00:00.000Z': 1, + '2015-05-11T00:00:00.000Z': 1, + '2015-05-19T00:00:00.000Z': 1, + '2015-06-03T00:00:00.000Z': 1, + '2015-06-04T00:00:00.000Z': 1, + '2015-06-26T00:00:00.000Z': 3, + '2015-06-27T00:00:00.000Z': 1, + '2015-06-28T00:00:00.000Z': 1, + '2015-06-29T00:00:00.000Z': 1, + '2015-06-30T00:00:00.000Z': 1, + '2015-07-01T00:00:00.000Z': 9, + '2015-07-02T00:00:00.000Z': 28, + '2015-07-03T00:00:00.000Z': 1, + '2015-07-04T00:00:00.000Z': 1, + '2015-07-06T00:00:00.000Z': 2, + '2015-07-08T00:00:00.000Z': 1, + '2015-07-11T00:00:00.000Z': 1, + '2015-07-13T00:00:00.000Z': 2, + '2015-07-20T00:00:00.000Z': 1, + '2015-07-21T00:00:00.000Z': 6, + '2015-07-22T00:00:00.000Z': 2, + '2015-07-26T00:00:00.000Z': 1, + '2015-08-03T00:00:00.000Z': 1, + '2015-08-09T00:00:00.000Z': 1, + '2015-08-13T00:00:00.000Z': 5, + '2015-08-14T00:00:00.000Z': 2, + '2015-08-16T00:00:00.000Z': 1, + '2015-08-27T00:00:00.000Z': 1, + '2015-09-01T00:00:00.000Z': 1, + '2015-09-24T00:00:00.000Z': 2, + '2015-09-30T00:00:00.000Z': 1, + '2015-11-02T00:00:00.000Z': 1, + '2015-11-03T00:00:00.000Z': 6, + '2015-11-04T00:00:00.000Z': 1, + '2015-11-05T00:00:00.000Z': 1, + '2015-11-07T00:00:00.000Z': 1, + '2015-11-12T00:00:00.000Z': 1, + '2015-11-18T00:00:00.000Z': 1, + '2015-11-25T00:00:00.000Z': 1, + '2015-12-05T00:00:00.000Z': 1, + '2016-01-01T00:00:00.000Z': 1, + '2016-01-14T00:00:00.000Z': 1, + '2016-01-30T00:00:00.000Z': 1, + '2016-02-03T00:00:00.000Z': 1, + '2016-02-04T00:00:00.000Z': 1, + '2016-02-10T00:00:00.000Z': 2, + '2016-02-12T00:00:00.000Z': 1, + '2016-02-19T00:00:00.000Z': 1, + '2016-02-26T00:00:00.000Z': 1, + '2016-02-29T00:00:00.000Z': 3, + '2016-03-01T00:00:00.000Z': 9, + '2016-03-04T00:00:00.000Z': 1, + '2016-03-10T00:00:00.000Z': 5, + '2016-03-15T00:00:00.000Z': 1, + '2016-03-23T00:00:00.000Z': 1, + '2016-03-24T00:00:00.000Z': 6, + '2016-03-25T00:00:00.000Z': 7, + '2016-03-26T00:00:00.000Z': 3, + '2016-03-27T00:00:00.000Z': 2, + '2016-03-30T00:00:00.000Z': 1, + '2016-03-31T00:00:00.000Z': 1, + '2016-04-02T00:00:00.000Z': 1, + '2016-04-07T00:00:00.000Z': 2, + '2016-04-08T00:00:00.000Z': 2, + '2016-04-12T00:00:00.000Z': 1, + '2016-04-22T00:00:00.000Z': 1, + '2016-05-01T00:00:00.000Z': 1, + '2016-05-23T00:00:00.000Z': 6, + '2016-05-24T00:00:00.000Z': 1, + '2016-05-26T00:00:00.000Z': 3, + '2016-05-28T00:00:00.000Z': 1, + '2016-06-02T00:00:00.000Z': 2, + '2016-06-03T00:00:00.000Z': 3, + '2016-06-04T00:00:00.000Z': 2, + '2016-06-05T00:00:00.000Z': 1, + '2016-06-06T00:00:00.000Z': 1, + '2016-06-07T00:00:00.000Z': 2, + '2016-06-08T00:00:00.000Z': 2, + '2016-06-09T00:00:00.000Z': 4, + '2016-06-10T00:00:00.000Z': 7, + '2016-06-17T00:00:00.000Z': 1, + '2016-06-18T00:00:00.000Z': 3, + '2016-06-19T00:00:00.000Z': 1, + '2016-06-20T00:00:00.000Z': 1, + '2016-06-22T00:00:00.000Z': 1, + '2016-06-25T00:00:00.000Z': 2, + '2016-06-26T00:00:00.000Z': 1, + '2016-06-30T00:00:00.000Z': 1, + '2016-07-01T00:00:00.000Z': 13, + '2016-07-02T00:00:00.000Z': 7, + '2016-07-03T00:00:00.000Z': 1, + '2016-07-04T00:00:00.000Z': 1, + '2016-07-05T00:00:00.000Z': 1, + '2016-07-07T00:00:00.000Z': 1, + '2016-07-08T00:00:00.000Z': 1, + '2016-07-11T00:00:00.000Z': 1, + '2016-07-12T00:00:00.000Z': 4, + '2016-07-13T00:00:00.000Z': 12, + '2016-07-14T00:00:00.000Z': 6, + '2016-07-15T00:00:00.000Z': 3, + '2016-07-18T00:00:00.000Z': 1, + '2016-07-21T00:00:00.000Z': 1, + '2016-07-23T00:00:00.000Z': 1, + '2016-07-26T00:00:00.000Z': 1, + '2016-08-06T00:00:00.000Z': 2, + '2016-08-09T00:00:00.000Z': 1, + '2016-08-10T00:00:00.000Z': 2, + '2016-08-11T00:00:00.000Z': 1, + '2016-08-17T00:00:00.000Z': 1, + '2016-08-19T00:00:00.000Z': 1, + '2016-08-22T00:00:00.000Z': 2, + '2016-08-24T00:00:00.000Z': 1, + '2016-08-25T00:00:00.000Z': 1, + '2016-08-29T00:00:00.000Z': 1, + '2016-08-31T00:00:00.000Z': 1, + '2016-09-05T00:00:00.000Z': 1, + '2016-09-06T00:00:00.000Z': 2, + '2016-09-07T00:00:00.000Z': 1, + '2016-09-08T00:00:00.000Z': 4, + '2016-09-09T00:00:00.000Z': 5, + '2016-09-10T00:00:00.000Z': 1, + '2016-09-14T00:00:00.000Z': 2, + '2016-09-19T00:00:00.000Z': 1, + '2016-09-20T00:00:00.000Z': 1, + '2016-09-24T00:00:00.000Z': 1, + '2016-09-25T00:00:00.000Z': 2, + '2016-09-26T00:00:00.000Z': 5, + '2016-10-07T00:00:00.000Z': 1, + '2016-10-08T00:00:00.000Z': 1, + '2016-10-10T00:00:00.000Z': 1, + '2016-10-11T00:00:00.000Z': 1, + '2016-10-24T00:00:00.000Z': 1, + '2016-10-31T00:00:00.000Z': 1, + '2016-11-18T00:00:00.000Z': 4, + '2016-12-01T00:00:00.000Z': 1, + '2016-12-02T00:00:00.000Z': 1, + '2016-12-03T00:00:00.000Z': 1, + '2016-12-06T00:00:00.000Z': 1, + '2016-12-07T00:00:00.000Z': 10, + '2016-12-08T00:00:00.000Z': 9, + '2016-12-15T00:00:00.000Z': 1, + '2016-12-16T00:00:00.000Z': 2, + '2016-12-18T00:00:00.000Z': 1, + '2016-12-21T00:00:00.000Z': 1, + '2016-12-22T00:00:00.000Z': 1, + '2016-12-24T00:00:00.000Z': 1, + '2016-12-28T00:00:00.000Z': 3, + '2016-12-30T00:00:00.000Z': 1, + '2016-12-31T00:00:00.000Z': 4, + '2017-01-02T00:00:00.000Z': 1, + '2017-01-03T00:00:00.000Z': 2, + '2017-01-04T00:00:00.000Z': 5, + '2017-01-05T00:00:00.000Z': 3, + '2017-01-06T00:00:00.000Z': 7, + '2017-01-07T00:00:00.000Z': 2, + '2017-01-08T00:00:00.000Z': 2, + '2017-01-09T00:00:00.000Z': 10, + '2017-01-10T00:00:00.000Z': 4, + '2017-01-11T00:00:00.000Z': 3, + '2017-01-16T00:00:00.000Z': 3, + '2017-01-17T00:00:00.000Z': 2, + '2017-01-24T00:00:00.000Z': 1, + '2017-01-28T00:00:00.000Z': 1, + '2017-02-06T00:00:00.000Z': 1, + '2017-02-07T00:00:00.000Z': 2, + '2017-02-12T00:00:00.000Z': 1, + '2017-02-24T00:00:00.000Z': 2, + '2017-02-25T00:00:00.000Z': 2, + '2017-02-26T00:00:00.000Z': 1, + '2017-02-27T00:00:00.000Z': 3, + '2017-02-28T00:00:00.000Z': 1, + '2017-03-01T00:00:00.000Z': 5, + '2017-03-03T00:00:00.000Z': 2, + '2017-03-04T00:00:00.000Z': 1, + '2017-03-08T00:00:00.000Z': 2, + '2017-03-16T00:00:00.000Z': 1, + '2017-03-18T00:00:00.000Z': 1, + '2017-03-23T00:00:00.000Z': 3, + '2017-03-27T00:00:00.000Z': 1, + '2017-04-04T00:00:00.000Z': 1, + '2017-04-10T00:00:00.000Z': 4, + '2017-04-11T00:00:00.000Z': 1, + '2017-04-13T00:00:00.000Z': 1, + '2017-04-14T00:00:00.000Z': 1, + '2017-04-18T00:00:00.000Z': 1, + '2017-04-19T00:00:00.000Z': 1, + '2017-04-25T00:00:00.000Z': 6, + '2017-04-26T00:00:00.000Z': 1, + '2017-04-27T00:00:00.000Z': 1, + '2017-04-29T00:00:00.000Z': 1, + '2017-05-01T00:00:00.000Z': 1, + '2017-05-03T00:00:00.000Z': 1, + '2017-05-04T00:00:00.000Z': 1, + '2017-05-08T00:00:00.000Z': 1, + '2017-05-19T00:00:00.000Z': 2, + '2017-05-20T00:00:00.000Z': 2, + '2017-05-30T00:00:00.000Z': 1, + '2017-06-12T00:00:00.000Z': 1, + '2017-06-13T00:00:00.000Z': 2, + '2017-06-19T00:00:00.000Z': 1, + '2017-06-21T00:00:00.000Z': 1, + '2017-06-22T00:00:00.000Z': 2, + '2017-06-29T00:00:00.000Z': 1, + '2017-07-03T00:00:00.000Z': 1, + '2017-07-06T00:00:00.000Z': 1, + '2017-07-10T00:00:00.000Z': 3, + '2017-07-11T00:00:00.000Z': 5, + '2017-07-12T00:00:00.000Z': 2, + '2017-07-13T00:00:00.000Z': 2, + '2017-07-14T00:00:00.000Z': 3, + '2017-07-17T00:00:00.000Z': 2, + '2017-07-18T00:00:00.000Z': 21, + '2017-07-19T00:00:00.000Z': 10, + '2017-07-21T00:00:00.000Z': 2, + '2017-07-24T00:00:00.000Z': 1, + '2017-07-26T00:00:00.000Z': 1, + '2017-07-28T00:00:00.000Z': 1, + '2017-08-01T00:00:00.000Z': 1, + '2017-08-03T00:00:00.000Z': 7, + '2017-08-04T00:00:00.000Z': 5, + '2017-08-05T00:00:00.000Z': 3, + '2017-08-07T00:00:00.000Z': 1, + '2017-08-08T00:00:00.000Z': 1, + '2017-08-09T00:00:00.000Z': 2, + '2017-08-10T00:00:00.000Z': 11, + '2017-08-12T00:00:00.000Z': 1, + '2017-08-15T00:00:00.000Z': 1, + '2017-08-17T00:00:00.000Z': 1, + '2017-08-18T00:00:00.000Z': 2, + '2017-08-20T00:00:00.000Z': 1, + '2017-08-21T00:00:00.000Z': 2, + '2017-08-22T00:00:00.000Z': 1, + '2017-08-23T00:00:00.000Z': 1, + '2017-09-01T00:00:00.000Z': 1, + '2017-09-07T00:00:00.000Z': 2, + '2017-09-09T00:00:00.000Z': 1, + '2017-09-11T00:00:00.000Z': 1, + '2017-09-13T00:00:00.000Z': 4, + '2017-09-14T00:00:00.000Z': 4, + '2017-09-15T00:00:00.000Z': 1, + '2017-09-18T00:00:00.000Z': 6, + '2017-09-19T00:00:00.000Z': 3, + '2017-09-21T00:00:00.000Z': 2, + '2017-09-22T00:00:00.000Z': 2, + '2017-09-27T00:00:00.000Z': 1, + '2017-09-28T00:00:00.000Z': 1, + '2017-09-30T00:00:00.000Z': 1, + '2017-10-06T00:00:00.000Z': 1, + '2017-10-09T00:00:00.000Z': 1, + '2017-10-11T00:00:00.000Z': 3, + '2017-10-12T00:00:00.000Z': 3, + '2017-10-13T00:00:00.000Z': 2, + '2017-10-14T00:00:00.000Z': 1, + '2017-10-17T00:00:00.000Z': 1, + '2017-10-22T00:00:00.000Z': 2, + '2017-10-23T00:00:00.000Z': 4, + '2017-10-24T00:00:00.000Z': 12, + '2017-10-25T00:00:00.000Z': 4, + '2017-10-26T00:00:00.000Z': 6, + '2017-10-27T00:00:00.000Z': 3, + '2017-10-29T00:00:00.000Z': 2, + '2017-10-30T00:00:00.000Z': 1, + '2017-10-31T00:00:00.000Z': 5, + '2017-11-01T00:00:00.000Z': 3, + '2017-11-03T00:00:00.000Z': 1, + '2017-11-05T00:00:00.000Z': 1, + '2017-11-06T00:00:00.000Z': 2, + '2017-11-07T00:00:00.000Z': 1, + '2017-11-08T00:00:00.000Z': 2, + '2017-11-09T00:00:00.000Z': 14, + '2017-11-10T00:00:00.000Z': 7, + '2017-11-11T00:00:00.000Z': 2, + '2017-11-13T00:00:00.000Z': 8, + '2017-11-14T00:00:00.000Z': 6, + '2017-11-15T00:00:00.000Z': 4, + '2017-11-17T00:00:00.000Z': 1, + '2017-11-18T00:00:00.000Z': 1, + '2017-11-22T00:00:00.000Z': 1, + '2017-11-27T00:00:00.000Z': 1, + '2017-11-28T00:00:00.000Z': 3, + '2017-11-30T00:00:00.000Z': 1, + '2017-12-01T00:00:00.000Z': 1, + '2017-12-03T00:00:00.000Z': 1, + '2017-12-06T00:00:00.000Z': 2, + '2017-12-07T00:00:00.000Z': 4, + '2017-12-08T00:00:00.000Z': 11, + '2017-12-09T00:00:00.000Z': 4, + '2017-12-12T00:00:00.000Z': 2, + '2017-12-13T00:00:00.000Z': 4, + '2017-12-14T00:00:00.000Z': 1, + '2017-12-15T00:00:00.000Z': 2, + '2017-12-16T00:00:00.000Z': 1, + '2017-12-17T00:00:00.000Z': 1, + '2017-12-18T00:00:00.000Z': 1, + '2017-12-19T00:00:00.000Z': 5, + '2017-12-20T00:00:00.000Z': 11, + '2017-12-21T00:00:00.000Z': 7, + '2018-01-01T00:00:00.000Z': 2, + '2018-01-11T00:00:00.000Z': 3, + '2018-01-12T00:00:00.000Z': 2, + '2018-01-16T00:00:00.000Z': 2, + '2018-01-17T00:00:00.000Z': 7, + '2018-01-18T00:00:00.000Z': 6, + '2018-01-22T00:00:00.000Z': 3, + '2018-01-24T00:00:00.000Z': 4, + '2018-01-25T00:00:00.000Z': 2, + '2018-02-02T00:00:00.000Z': 2, + '2018-02-05T00:00:00.000Z': 3, + '2018-02-14T00:00:00.000Z': 3, + '2018-02-28T00:00:00.000Z': 2, + '2018-03-19T00:00:00.000Z': 2, + '2018-03-20T00:00:00.000Z': 7, + '2018-03-23T00:00:00.000Z': 3, + '2018-03-29T00:00:00.000Z': 6, + '2018-03-31T00:00:00.000Z': 6, + '2018-04-02T00:00:00.000Z': 5, + '2018-04-04T00:00:00.000Z': 2, + '2018-04-11T00:00:00.000Z': 5, + '2018-04-12T00:00:00.000Z': 3, + '2018-04-13T00:00:00.000Z': 4, + '2018-04-14T00:00:00.000Z': 3, + '2018-04-16T00:00:00.000Z': 4, + '2018-04-17T00:00:00.000Z': 3, + '2018-04-18T00:00:00.000Z': 5, + '2018-04-19T00:00:00.000Z': 2, + '2018-04-20T00:00:00.000Z': 2, + '2018-04-24T00:00:00.000Z': 2, + '2018-05-01T00:00:00.000Z': 3, + '2018-05-05T00:00:00.000Z': 2, + '2018-05-07T00:00:00.000Z': 4, + '2018-05-08T00:00:00.000Z': 3, + '2018-05-15T00:00:00.000Z': 2, + '2018-05-16T00:00:00.000Z': 2, + '2018-05-17T00:00:00.000Z': 3, + '2018-05-24T00:00:00.000Z': 2, + '2018-05-25T00:00:00.000Z': 2, + '2018-05-28T00:00:00.000Z': 2, + '2018-05-29T00:00:00.000Z': 4, + '2018-06-04T00:00:00.000Z': 3, + '2018-06-05T00:00:00.000Z': 2, + '2018-06-06T00:00:00.000Z': 2, + '2018-06-07T00:00:00.000Z': 11, + '2018-06-08T00:00:00.000Z': 5, + '2018-06-12T00:00:00.000Z': 2, + '2018-06-13T00:00:00.000Z': 5, + '2018-06-15T00:00:00.000Z': 2, + '2018-06-21T00:00:00.000Z': 5, + '2018-06-22T00:00:00.000Z': 8, + '2018-06-23T00:00:00.000Z': 3, + '2018-06-25T00:00:00.000Z': 6, + '2018-07-10T00:00:00.000Z': 2, + '2018-07-24T00:00:00.000Z': 2, + '2018-07-25T00:00:00.000Z': 2, + '2018-08-08T00:00:00.000Z': 2, + '2018-09-06T00:00:00.000Z': 2, + '2018-09-11T00:00:00.000Z': 2, + '2018-09-18T00:00:00.000Z': 2, + '2018-09-20T00:00:00.000Z': 3, + '2018-09-21T00:00:00.000Z': 3, + '2018-09-25T00:00:00.000Z': 2, + '2018-09-26T00:00:00.000Z': 4, + '2018-09-28T00:00:00.000Z': 2, + '2018-10-02T00:00:00.000Z': 2, + '2018-10-10T00:00:00.000Z': 7, + '2018-10-11T00:00:00.000Z': 14, + '2018-10-12T00:00:00.000Z': 4, + '2018-10-30T00:00:00.000Z': 2, + '2018-11-08T00:00:00.000Z': 5, + '2018-11-10T00:00:00.000Z': 2, + '2018-11-16T00:00:00.000Z': 2, + '2018-11-22T00:00:00.000Z': 2, + '2018-11-23T00:00:00.000Z': 8, + '2018-11-24T00:00:00.000Z': 2, + '2018-11-26T00:00:00.000Z': 2, + '2018-11-27T00:00:00.000Z': 6, + '2018-11-28T00:00:00.000Z': 6, + '2018-11-29T00:00:00.000Z': 4, + '2018-12-01T00:00:00.000Z': 3, + '2018-12-02T00:00:00.000Z': 3, + '2018-12-03T00:00:00.000Z': 6, + '2018-12-04T00:00:00.000Z': 3, + '2018-12-05T00:00:00.000Z': 5, + '2018-12-06T00:00:00.000Z': 11, + '2018-12-07T00:00:00.000Z': 6, + '2018-12-11T00:00:00.000Z': 2, + '2019-01-15T00:00:00.000Z': 2, + '2019-02-05T00:00:00.000Z': 2, + '2019-03-21T00:00:00.000Z': 2, + '2019-03-28T00:00:00.000Z': 2, + '2019-04-13T00:00:00.000Z': 4, + '2019-04-14T00:00:00.000Z': 7, + '2019-04-23T00:00:00.000Z': 3, + '2019-05-09T00:00:00.000Z': 2, + '2019-05-16T00:00:00.000Z': 2, + '2019-06-25T00:00:00.000Z': 2, + '2019-09-16T00:00:00.000Z': 2, + '2019-10-04T00:00:00.000Z': 3, + '2019-10-10T00:00:00.000Z': 2, + '2019-10-17T00:00:00.000Z': 3, + '2019-10-24T00:00:00.000Z': 3, + '2019-11-06T00:00:00.000Z': 4, + '2019-11-12T00:00:00.000Z': 4, + '2019-11-19T00:00:00.000Z': 2, + '2020-01-18T00:00:00.000Z': 3, + '2020-01-29T00:00:00.000Z': 2, + '2020-02-10T00:00:00.000Z': 2, + '2020-02-19T00:00:00.000Z': 2, + '2020-02-25T00:00:00.000Z': 2, + '2020-02-26T00:00:00.000Z': 3, + '2020-02-27T00:00:00.000Z': 3, + '2020-05-01T00:00:00.000Z': 2, + '2020-05-08T00:00:00.000Z': 2, + '2020-05-22T00:00:00.000Z': 2, + '2020-05-29T00:00:00.000Z': 3, + '2020-05-30T00:00:00.000Z': 4, + '2020-06-01T00:00:00.000Z': 5, + '2020-06-02T00:00:00.000Z': 2, + '2020-06-09T00:00:00.000Z': 3, + '2020-06-10T00:00:00.000Z': 2, + '2020-06-24T00:00:00.000Z': 3, + '2020-07-10T00:00:00.000Z': 2, + '2020-07-20T00:00:00.000Z': 2, + '2020-07-29T00:00:00.000Z': 2, + '2020-07-30T00:00:00.000Z': 3, + '2020-07-31T00:00:00.000Z': 2, + '2020-08-04T00:00:00.000Z': 5, + '2020-08-05T00:00:00.000Z': 3, + '2020-08-11T00:00:00.000Z': 2, + '2020-08-12T00:00:00.000Z': 2, + '2020-08-17T00:00:00.000Z': 3, + '2020-08-19T00:00:00.000Z': 2, + '2020-08-20T00:00:00.000Z': 2, + '2020-08-21T00:00:00.000Z': 2, + '2020-08-27T00:00:00.000Z': 2, + '2020-09-03T00:00:00.000Z': 2, + '2020-09-09T00:00:00.000Z': 2, + '2020-09-10T00:00:00.000Z': 2, + '2020-09-11T00:00:00.000Z': 2, + '2020-09-21T00:00:00.000Z': 2, + '2020-09-29T00:00:00.000Z': 2, + '2020-10-06T00:00:00.000Z': 3, + '2020-10-07T00:00:00.000Z': 2, + '2020-10-09T00:00:00.000Z': 4, + '2020-10-15T00:00:00.000Z': 2, + '2020-10-20T00:00:00.000Z': 2, + '2020-10-22T00:00:00.000Z': 2, + '2020-10-26T00:00:00.000Z': 3, + '2020-11-19T00:00:00.000Z': 2, + '2020-11-20T00:00:00.000Z': 2, + '2020-11-25T00:00:00.000Z': 2, + '2020-11-28T00:00:00.000Z': 3, + '2020-12-01T00:00:00.000Z': 2, + '2020-12-18T00:00:00.000Z': 4, + '2020-12-20T00:00:00.000Z': 2, + '2020-12-24T00:00:00.000Z': 2, + '2020-12-27T00:00:00.000Z': 3, + '2020-12-30T00:00:00.000Z': 2, + '2021-01-02T00:00:00.000Z': 2, + '2021-01-04T00:00:00.000Z': 2, + '2021-01-05T00:00:00.000Z': 2, + '2021-01-10T00:00:00.000Z': 2, + '2021-01-11T00:00:00.000Z': 2, + '2021-01-12T00:00:00.000Z': 3, + '2021-01-13T00:00:00.000Z': 4, + '2021-01-14T00:00:00.000Z': 3, + '2021-01-18T00:00:00.000Z': 2, + '2021-01-19T00:00:00.000Z': 2, + '2021-01-29T00:00:00.000Z': 4, + '2021-02-01T00:00:00.000Z': 2, + '2021-02-03T00:00:00.000Z': 2, + '2021-02-06T00:00:00.000Z': 2, + '2021-02-09T00:00:00.000Z': 2, + '2021-02-11T00:00:00.000Z': 2, + '2021-02-16T00:00:00.000Z': 2, + '2021-02-19T00:00:00.000Z': 2, + '2021-02-25T00:00:00.000Z': 2, + '2021-03-01T00:00:00.000Z': 2, + '2021-03-02T00:00:00.000Z': 2, + '2021-03-10T00:00:00.000Z': 2, + '2021-03-12T00:00:00.000Z': 3, + '2021-03-17T00:00:00.000Z': 3, + '2021-03-18T00:00:00.000Z': 3, + '2021-03-19T00:00:00.000Z': 2, + '2021-04-02T00:00:00.000Z': 2, + '2021-04-09T00:00:00.000Z': 3, + '2021-04-18T00:00:00.000Z': 3, + '2021-04-19T00:00:00.000Z': 2, + '2021-04-20T00:00:00.000Z': 2, + '2021-04-26T00:00:00.000Z': 2, + '2021-04-28T00:00:00.000Z': 3, + '2021-05-19T00:00:00.000Z': 2, + '2021-05-20T00:00:00.000Z': 2, + '2021-06-02T00:00:00.000Z': 3, + '2021-06-03T00:00:00.000Z': 3, + '2021-06-04T00:00:00.000Z': 3, + '2021-06-28T00:00:00.000Z': 2, + '2021-06-29T00:00:00.000Z': 4, + '2021-07-02T00:00:00.000Z': 2, + '2021-07-05T00:00:00.000Z': 3, + '2021-07-14T00:00:00.000Z': 3, + '2021-07-19T00:00:00.000Z': 4, + '2021-07-21T00:00:00.000Z': 2, + '2021-07-26T00:00:00.000Z': 2, + '2021-07-30T00:00:00.000Z': 2, + '2021-08-06T00:00:00.000Z': 2, + '2021-08-09T00:00:00.000Z': 2, + '2021-08-19T00:00:00.000Z': 2, + '2021-08-25T00:00:00.000Z': 2, + '2021-09-20T00:00:00.000Z': 2, + '2021-10-13T00:00:00.000Z': 4, + '2021-10-19T00:00:00.000Z': 2, + '2021-10-20T00:00:00.000Z': 3, + '2021-10-22T00:00:00.000Z': 3, + '2021-11-02T00:00:00.000Z': 2, + '2021-11-03T00:00:00.000Z': 3, + '2021-11-08T00:00:00.000Z': 4, + '2021-11-09T00:00:00.000Z': 3, + '2021-11-10T00:00:00.000Z': 2, + '2021-11-11T00:00:00.000Z': 3, + '2021-11-13T00:00:00.000Z': 2, + '2021-11-15T00:00:00.000Z': 6, + '2021-11-18T00:00:00.000Z': 2, + '2021-11-21T00:00:00.000Z': 3, + '2021-11-29T00:00:00.000Z': 3, + '2021-12-02T00:00:00.000Z': 2, + '2021-12-05T00:00:00.000Z': 2, + '2021-12-09T00:00:00.000Z': 4, + '2021-12-10T00:00:00.000Z': 2, + '2021-12-13T00:00:00.000Z': 2, + '2021-12-14T00:00:00.000Z': 8, + '2021-12-15T00:00:00.000Z': 4, + '2021-12-16T00:00:00.000Z': 4, + '2021-12-28T00:00:00.000Z': 2, + '2022-01-06T00:00:00.000Z': 2, + '2022-01-10T00:00:00.000Z': 3, + '2022-01-18T00:00:00.000Z': 3, + '2022-01-27T00:00:00.000Z': 3, + '2022-02-02T00:00:00.000Z': 4, + '2022-02-04T00:00:00.000Z': 2, + '2022-02-07T00:00:00.000Z': 2, + '2022-02-08T00:00:00.000Z': 2, + '2022-02-14T00:00:00.000Z': 2, + '2022-02-23T00:00:00.000Z': 2, + '2022-02-28T00:00:00.000Z': 3, + '2022-03-01T00:00:00.000Z': 2, + '2022-03-07T00:00:00.000Z': 3, + '2022-03-08T00:00:00.000Z': 5, + '2022-03-09T00:00:00.000Z': 3, + '2022-03-16T00:00:00.000Z': 5, + '2022-03-17T00:00:00.000Z': 7, + '2022-03-21T00:00:00.000Z': 3, + '2022-03-22T00:00:00.000Z': 3, + '2022-03-23T00:00:00.000Z': 2, + '2022-03-25T00:00:00.000Z': 3, + '2022-03-28T00:00:00.000Z': 2, + '2022-03-29T00:00:00.000Z': 3, + '2022-03-31T00:00:00.000Z': 2, + '2022-04-01T00:00:00.000Z': 2, + '2022-04-04T00:00:00.000Z': 2, + '2022-04-05T00:00:00.000Z': 2, + '2022-04-10T00:00:00.000Z': 4, + '2022-04-11T00:00:00.000Z': 2, + '2022-04-22T00:00:00.000Z': 3, + '2022-04-23T00:00:00.000Z': 3, + '2022-04-25T00:00:00.000Z': 4, + '2022-04-26T00:00:00.000Z': 2, + '2022-05-22T00:00:00.000Z': 2, + '2022-05-27T00:00:00.000Z': 2, + '2022-05-30T00:00:00.000Z': 2, + '2022-06-02T00:00:00.000Z': 2, + '2022-06-03T00:00:00.000Z': 2, + '2022-06-06T00:00:00.000Z': 4, + '2022-06-14T00:00:00.000Z': 2, + '2022-06-15T00:00:00.000Z': 2, + '2022-07-06T00:00:00.000Z': 2, + '2022-07-07T00:00:00.000Z': 3, + '2022-07-08T00:00:00.000Z': 3, + '2022-07-11T00:00:00.000Z': 2, + '2022-07-18T00:00:00.000Z': 2, + '2022-07-21T00:00:00.000Z': 2, + '2022-07-22T00:00:00.000Z': 5, + '2022-07-24T00:00:00.000Z': 4, + '2022-07-25T00:00:00.000Z': 3, + '2022-07-26T00:00:00.000Z': 3, + '2022-07-27T00:00:00.000Z': 2, + '2022-07-28T00:00:00.000Z': 3, + '2022-08-05T00:00:00.000Z': 2, + '2022-08-06T00:00:00.000Z': 3, + '2022-08-08T00:00:00.000Z': 2, + '2022-08-10T00:00:00.000Z': 2, + '2022-08-15T00:00:00.000Z': 2, + '2022-08-22T00:00:00.000Z': 4, + '2022-08-23T00:00:00.000Z': 2, + '2022-08-24T00:00:00.000Z': 2, + '2022-08-25T00:00:00.000Z': 2, + '2022-08-26T00:00:00.000Z': 2, + '2022-08-31T00:00:00.000Z': 2, + '2022-09-01T00:00:00.000Z': 2, + '2022-09-02T00:00:00.000Z': 2, + '2022-09-12T00:00:00.000Z': 2, + '2022-09-13T00:00:00.000Z': 2, + '2022-09-14T00:00:00.000Z': 2, + '2022-09-16T00:00:00.000Z': 4, + '2022-09-20T00:00:00.000Z': 2, + '2022-10-03T00:00:00.000Z': 2, + '2022-10-04T00:00:00.000Z': 3, + '2022-10-06T00:00:00.000Z': 3, + '2022-10-07T00:00:00.000Z': 2, + '2022-10-10T00:00:00.000Z': 2, + '2022-10-13T00:00:00.000Z': 3, + '2022-10-20T00:00:00.000Z': 2, + '2022-10-31T00:00:00.000Z': 2, + '2022-11-01T00:00:00.000Z': 2, + '2022-11-11T00:00:00.000Z': 2, + '2022-11-17T00:00:00.000Z': 2, + '2022-11-18T00:00:00.000Z': 2, + '2022-11-22T00:00:00.000Z': 2, + '2022-12-01T00:00:00.000Z': 6, + '2022-12-03T00:00:00.000Z': 2, + '2022-12-05T00:00:00.000Z': 5, + '2022-12-06T00:00:00.000Z': 4, + '2022-12-07T00:00:00.000Z': 3, + '2022-12-08T00:00:00.000Z': 2, + '2022-12-09T00:00:00.000Z': 3, + '2022-12-12T00:00:00.000Z': 2, + '2022-12-14T00:00:00.000Z': 5, + '2022-12-16T00:00:00.000Z': 3, + '2022-12-19T00:00:00.000Z': 4, + '2022-12-20T00:00:00.000Z': 4, + '2022-12-21T00:00:00.000Z': 9, + '2022-12-22T00:00:00.000Z': 5, + '2022-12-29T00:00:00.000Z': 2, + '2022-12-31T00:00:00.000Z': 2, + '2023-01-02T00:00:00.000Z': 6, + '2023-01-03T00:00:00.000Z': 4, + '2023-01-05T00:00:00.000Z': 3, + '2023-01-06T00:00:00.000Z': 5, + '2023-01-07T00:00:00.000Z': 2, + '2023-01-08T00:00:00.000Z': 2, + '2023-01-09T00:00:00.000Z': 9, + '2023-01-10T00:00:00.000Z': 5, + '2023-01-11T00:00:00.000Z': 3, + '2023-01-12T00:00:00.000Z': 4, + '2023-01-13T00:00:00.000Z': 4, + '2023-01-14T00:00:00.000Z': 2, + '2023-01-16T00:00:00.000Z': 3, + '2023-01-17T00:00:00.000Z': 12, + '2023-01-18T00:00:00.000Z': 5, + '2023-01-19T00:00:00.000Z': 4, + '2023-01-20T00:00:00.000Z': 4, + '2023-01-23T00:00:00.000Z': 2, + '2023-01-24T00:00:00.000Z': 3, + '2023-01-25T00:00:00.000Z': 4, + '2023-01-26T00:00:00.000Z': 3, + '2023-01-30T00:00:00.000Z': 5, + '2023-01-31T00:00:00.000Z': 8, + '2023-02-01T00:00:00.000Z': 7, + '2023-02-03T00:00:00.000Z': 3, + '2023-02-06T00:00:00.000Z': 6, + '2023-02-07T00:00:00.000Z': 6, + '2023-02-08T00:00:00.000Z': 16, + '2023-02-09T00:00:00.000Z': 6, + '2023-02-10T00:00:00.000Z': 4, + '2023-02-13T00:00:00.000Z': 8, + '2023-02-14T00:00:00.000Z': 7, + '2023-02-15T00:00:00.000Z': 9, + '2023-02-16T00:00:00.000Z': 20, + '2023-02-17T00:00:00.000Z': 6, + '2023-02-18T00:00:00.000Z': 5, + '2023-02-19T00:00:00.000Z': 5, + '2023-02-20T00:00:00.000Z': 6, + '2023-02-21T00:00:00.000Z': 14, + '2023-02-22T00:00:00.000Z': 3, + '2023-02-23T00:00:00.000Z': 3, + '2023-02-24T00:00:00.000Z': 3, + '2023-02-27T00:00:00.000Z': 3, + '2023-02-28T00:00:00.000Z': 2, + '2023-03-02T00:00:00.000Z': 2, + '2023-03-05T00:00:00.000Z': 2, + '2023-03-06T00:00:00.000Z': 7, + '2023-03-07T00:00:00.000Z': 4, + '2023-03-08T00:00:00.000Z': 2, + '2023-03-11T00:00:00.000Z': 3, + '2023-03-13T00:00:00.000Z': 8, + '2023-03-15T00:00:00.000Z': 2, + '2023-03-16T00:00:00.000Z': 3, + '2023-03-17T00:00:00.000Z': 3, + '2023-03-21T00:00:00.000Z': 4, + '2023-03-22T00:00:00.000Z': 3, + '2023-03-23T00:00:00.000Z': 4, + '2023-03-24T00:00:00.000Z': 2, + '2023-03-28T00:00:00.000Z': 7, + '2023-03-31T00:00:00.000Z': 5, + '2023-04-04T00:00:00.000Z': 2, + '2023-04-05T00:00:00.000Z': 3, + '2023-04-13T00:00:00.000Z': 3, + '2023-04-19T00:00:00.000Z': 4, + '2023-04-22T00:00:00.000Z': 2, + '2023-04-25T00:00:00.000Z': 2, + '2023-04-26T00:00:00.000Z': 3, + '2023-04-27T00:00:00.000Z': 4, + '2023-05-11T00:00:00.000Z': 5, + '2023-05-12T00:00:00.000Z': 9, + '2023-05-16T00:00:00.000Z': 2, + '2023-05-17T00:00:00.000Z': 4, + '2023-05-18T00:00:00.000Z': 5, + '2023-05-19T00:00:00.000Z': 2, + '2023-05-22T00:00:00.000Z': 10, + '2023-05-23T00:00:00.000Z': 9, + '2023-05-25T00:00:00.000Z': 3, + '2023-05-27T00:00:00.000Z': 10, + '2023-05-28T00:00:00.000Z': 3, + '2023-05-29T00:00:00.000Z': 9, + '2023-05-30T00:00:00.000Z': 33, + '2023-05-31T00:00:00.000Z': 15, + '2023-06-01T00:00:00.000Z': 20, + '2023-06-02T00:00:00.000Z': 10, + '2023-06-05T00:00:00.000Z': 4, + '2023-06-07T00:00:00.000Z': 5, + '2023-06-08T00:00:00.000Z': 6, + '2023-06-09T00:00:00.000Z': 2, + '2023-06-13T00:00:00.000Z': 3, + '2023-06-22T00:00:00.000Z': 2, + '2023-06-23T00:00:00.000Z': 3, + '2023-06-26T00:00:00.000Z': 2, + '2023-06-28T00:00:00.000Z': 4, + '2023-06-30T00:00:00.000Z': 2, + '2023-07-08T00:00:00.000Z': 3, + '2023-07-11T00:00:00.000Z': 3, + '2023-07-12T00:00:00.000Z': 2, + '2023-07-24T00:00:00.000Z': 2, + '2023-08-30T00:00:00.000Z': 3, + '2023-09-02T00:00:00.000Z': 2, + '2023-09-13T00:00:00.000Z': 3, + '2023-09-20T00:00:00.000Z': 2, + '2023-09-25T00:00:00.000Z': 2, + '2023-09-28T00:00:00.000Z': 4, + '2023-10-02T00:00:00.000Z': 9, + '2023-10-03T00:00:00.000Z': 8, + '2023-10-04T00:00:00.000Z': 4, + '2023-10-05T00:00:00.000Z': 2, + '2023-10-09T00:00:00.000Z': 7, + '2023-10-17T00:00:00.000Z': 2, + '2023-10-23T00:00:00.000Z': 2, + '2023-10-24T00:00:00.000Z': 6, + '2023-10-26T00:00:00.000Z': 3, + '2023-10-31T00:00:00.000Z': 8, + '2023-11-01T00:00:00.000Z': 4, + '2023-11-02T00:00:00.000Z': 17, + '2023-11-03T00:00:00.000Z': 13, + '2023-11-04T00:00:00.000Z': 3, + '2023-11-06T00:00:00.000Z': 7, + '2023-11-07T00:00:00.000Z': 3, + '2023-11-08T00:00:00.000Z': 9, + '2023-11-09T00:00:00.000Z': 6, + '2023-11-12T00:00:00.000Z': 2, + '2023-11-14T00:00:00.000Z': 3, + '2023-11-15T00:00:00.000Z': 6, + '2023-11-16T00:00:00.000Z': 9, + '2023-11-17T00:00:00.000Z': 2, + '2023-11-18T00:00:00.000Z': 2, + '2023-11-20T00:00:00.000Z': 2, + '2023-11-23T00:00:00.000Z': 2, + '2023-11-27T00:00:00.000Z': 2, + '2023-11-28T00:00:00.000Z': 11, + '2023-12-06T00:00:00.000Z': 2, + '2023-12-07T00:00:00.000Z': 2, + '2023-12-11T00:00:00.000Z': 4, + '2023-12-12T00:00:00.000Z': 20, + '2023-12-14T00:00:00.000Z': 3, + '2023-12-18T00:00:00.000Z': 3, + '2023-12-19T00:00:00.000Z': 6, + '2023-12-20T00:00:00.000Z': 15, + '2023-12-21T00:00:00.000Z': 5, + '2023-12-26T00:00:00.000Z': 3, + '2023-12-27T00:00:00.000Z': 4, + '2023-12-28T00:00:00.000Z': 2, + '2023-12-29T00:00:00.000Z': 11, + '2024-01-01T00:00:00.000Z': 2, + '2024-01-09T00:00:00.000Z': 4, + '2024-01-10T00:00:00.000Z': 8, + '2024-01-11T00:00:00.000Z': 8, + '2024-01-12T00:00:00.000Z': 6, + '2024-01-13T00:00:00.000Z': 4, + '2024-01-15T00:00:00.000Z': 4, + '2024-01-16T00:00:00.000Z': 7, + '2024-01-19T00:00:00.000Z': 2, + '2024-01-22T00:00:00.000Z': 5, + '2024-01-23T00:00:00.000Z': 2, + '2024-01-24T00:00:00.000Z': 4, + '2024-01-25T00:00:00.000Z': 3, + '2024-01-26T00:00:00.000Z': 6, + '2024-01-29T00:00:00.000Z': 2, + '2024-01-30T00:00:00.000Z': 16, + '2024-01-31T00:00:00.000Z': 14, + '2024-02-02T00:00:00.000Z': 3, + '2024-02-04T00:00:00.000Z': 4, + '2024-02-05T00:00:00.000Z': 14, + '2024-02-06T00:00:00.000Z': 5, + '2024-02-07T00:00:00.000Z': 2, + '2024-02-08T00:00:00.000Z': 4, + '2024-02-12T00:00:00.000Z': 6, + '2024-02-13T00:00:00.000Z': 9, + '2024-02-14T00:00:00.000Z': 12, + '2024-02-15T00:00:00.000Z': 8, + '2024-02-16T00:00:00.000Z': 3, + '2024-02-17T00:00:00.000Z': 2, + '2024-02-18T00:00:00.000Z': 2, + '2024-02-19T00:00:00.000Z': 4, + '2024-02-21T00:00:00.000Z': 14, + '2024-02-22T00:00:00.000Z': 26, + '2024-02-23T00:00:00.000Z': 9, + '2024-02-24T00:00:00.000Z': 3, + '2024-02-26T00:00:00.000Z': 4, + '2024-02-27T00:00:00.000Z': 3, + '2024-03-01T00:00:00.000Z': 2, + '2024-03-08T00:00:00.000Z': 2, + '2024-03-14T00:00:00.000Z': 5, + '2024-03-23T00:00:00.000Z': 3, + '2024-03-27T00:00:00.000Z': 3, + '2024-03-28T00:00:00.000Z': 2, + '2024-03-29T00:00:00.000Z': 2, + '2024-04-02T00:00:00.000Z': 3, + '2024-04-03T00:00:00.000Z': 8, + '2024-04-04T00:00:00.000Z': 3, + '2024-04-05T00:00:00.000Z': 4, + '2024-04-07T00:00:00.000Z': 2, + '2024-04-08T00:00:00.000Z': 3, + '2024-04-10T00:00:00.000Z': 2, + '2024-04-15T00:00:00.000Z': 2, + '2024-04-23T00:00:00.000Z': 2, + '2024-04-24T00:00:00.000Z': 2, + '2024-04-25T00:00:00.000Z': 8, + '2024-04-26T00:00:00.000Z': 7, + '2024-04-27T00:00:00.000Z': 3, + '2024-04-29T00:00:00.000Z': 2, + '2024-05-14T00:00:00.000Z': 3, + '2024-05-15T00:00:00.000Z': 4, + '2024-05-16T00:00:00.000Z': 2, + '2024-05-17T00:00:00.000Z': 4, + '2024-05-20T00:00:00.000Z': 12, + '2024-05-21T00:00:00.000Z': 6, + '2024-05-22T00:00:00.000Z': 4, + '2024-05-23T00:00:00.000Z': 7, + '2024-05-24T00:00:00.000Z': 3, + '2024-05-25T00:00:00.000Z': 2, + '2024-05-26T00:00:00.000Z': 2, + '2024-05-27T00:00:00.000Z': 2, + '2024-05-31T00:00:00.000Z': 2, + '2024-06-01T00:00:00.000Z': 2, + '2024-06-10T00:00:00.000Z': 3, + '2024-06-11T00:00:00.000Z': 3, + '2024-06-12T00:00:00.000Z': 5, + '2024-06-13T00:00:00.000Z': 4, + '2024-06-18T00:00:00.000Z': 2, + '2024-06-20T00:00:00.000Z': 3, + '2024-06-21T00:00:00.000Z': 2, + '2024-06-24T00:00:00.000Z': 4, + '2024-06-25T00:00:00.000Z': 2, + '2024-06-28T00:00:00.000Z': 2, + '2024-06-29T00:00:00.000Z': 3, + '2024-07-01T00:00:00.000Z': 2, + '2024-07-02T00:00:00.000Z': 3, + '2024-07-03T00:00:00.000Z': 2, + '2024-07-10T00:00:00.000Z': 2, + '2024-07-23T00:00:00.000Z': 2, + '2024-07-26T00:00:00.000Z': 2, + '2024-07-28T00:00:00.000Z': 2, + '2024-07-31T00:00:00.000Z': 2, + '2024-08-13T00:00:00.000Z': 2, + '2024-08-14T00:00:00.000Z': 6, + '2024-08-19T00:00:00.000Z': 3, + '2024-08-20T00:00:00.000Z': 2, + '2024-08-21T00:00:00.000Z': 2, + '2024-08-27T00:00:00.000Z': 2, + '2024-08-30T00:00:00.000Z': 2, + '2024-09-02T00:00:00.000Z': 5, + '2024-09-03T00:00:00.000Z': 5, + '2024-09-04T00:00:00.000Z': 4, + '2024-09-11T00:00:00.000Z': 2, + '2024-09-13T00:00:00.000Z': 2, + '2024-09-19T00:00:00.000Z': 2, + '2024-09-24T00:00:00.000Z': 2, + '2024-09-25T00:00:00.000Z': 3, + '2024-09-26T00:00:00.000Z': 10, + '2024-10-01T00:00:00.000Z': 3, + '2024-10-02T00:00:00.000Z': 6, + '2024-10-03T00:00:00.000Z': 2, + '2024-10-04T00:00:00.000Z': 2, + '2024-10-05T00:00:00.000Z': 3, + '2024-10-06T00:00:00.000Z': 2, + '2024-10-07T00:00:00.000Z': 4, + '2024-10-09T00:00:00.000Z': 2, + '2024-10-11T00:00:00.000Z': 10, + '2024-10-12T00:00:00.000Z': 6, + '2024-10-13T00:00:00.000Z': 3, + '2024-10-14T00:00:00.000Z': 18, + '2024-10-15T00:00:00.000Z': 7, + '2024-10-16T00:00:00.000Z': 3, + '2024-10-17T00:00:00.000Z': 5, + '2024-10-18T00:00:00.000Z': 7, + '2024-10-21T00:00:00.000Z': 4, + '2024-10-22T00:00:00.000Z': 8, + '2024-10-23T00:00:00.000Z': 12, + '2024-10-24T00:00:00.000Z': 15, + '2024-10-25T00:00:00.000Z': 5, + '2024-10-26T00:00:00.000Z': 3, + '2024-11-20T00:00:00.000Z': 3, }, 'CSETv1.Autonomy Level': { Autonomy1: 847, @@ -7655,10 +7655,10 @@ export const algoliaMock = { avg: 1570344663, sum: 6078804192000, }, - epoch_date_published: { - min: 828489600, - max: 1732147200, - avg: 1606384020, + date_published: { + min: '1996-04-03T00:00:00.000Z', + max: '2024-11-21T00:00:00.000Z', + avg: '2020-11-26T09:47:00.000Z', sum: 6218312544000, }, 'CSETv1.Date of Incident Year': { @@ -7678,7 +7678,7 @@ export const algoliaMock = { }, query: '', params: - 'distinct=false&facetFilters=%5B%5B%22is_incident_report%3Atrue%22%5D%5D&facets=%5B%22CSETv1.AI%20Harm%20Level%22%2C%22CSETv1.AI%20System%22%2C%22CSETv1.AI%20System%20Description%22%2C%22CSETv1.AI%20Tangible%20Harm%20Level%20Notes%22%2C%22CSETv1.AI%20Task%22%2C%22CSETv1.AI%20tools%20and%20methods%22%2C%22CSETv1.Annotation%20Status%22%2C%22CSETv1.Annotator%22%2C%22CSETv1.Annotator%E2%80%99s%20AI%20special%20interest%20intangible%20harm%20assessment%22%2C%22CSETv1.Autonomy%20Level%22%2C%22CSETv1.Clear%20link%20to%20Technology%22%2C%22CSETv1.Clear%20link%20to%20technology%22%2C%22CSETv1.Data%20Inputs%22%2C%22CSETv1.Date%20of%20Incident%20Day%22%2C%22CSETv1.Date%20of%20Incident%20Month%22%2C%22CSETv1.Date%20of%20Incident%20Year%22%2C%22CSETv1.Deployed%22%2C%22CSETv1.Detrimental%20Content%22%2C%22CSETv1.Embedded%22%2C%22CSETv1.Entertainment%20Industry%22%2C%22CSETv1.Entities%22%2C%22CSETv1.Estimated%20Date%22%2C%22CSETv1.Estimated%20Harm%20Quantities%22%2C%22CSETv1.Harm%20Distribution%20Basis%22%2C%22CSETv1.Harm%20Domain%22%2C%22CSETv1.Harmed%20Class%20of%20Entities%22%2C%22CSETv1.Impact%20on%20Critical%20Services%22%2C%22CSETv1.Incident%20Number%22%2C%22CSETv1.Infrastructure%20Sectors%22%2C%22CSETv1.Injuries%22%2C%22CSETv1.Intentional%20Harm%22%2C%22CSETv1.Involving%20Minor%22%2C%22CSETv1.Lives%20Lost%22%2C%22CSETv1.Location%20City%22%2C%22CSETv1.Location%20Country%20(two%20letters)%22%2C%22CSETv1.Location%20Region%22%2C%22CSETv1.Location%20State%2FProvince%20(two%20letters)%22%2C%22CSETv1.Multiple%20AI%20Interaction%22%2C%22CSETv1.Notes%20(%20Tangible%20Harm%20Quantities%20Information)%22%2C%22CSETv1.Notes%20(AI%20Functionality%20and%20Techniques)%22%2C%22CSETv1.Notes%20(AI%20special%20interest%20intangible%20harm)%22%2C%22CSETv1.Notes%20(Environmental%20and%20Temporal%20Characteristics)%22%2C%22CSETv1.Notes%20(Information%20about%20AI%20System)%22%2C%22CSETv1.Notes%20(special%20interest%20intangible%20harm)%22%2C%22CSETv1.Operating%20Conditions%22%2C%22CSETv1.Peer%20Reviewer%22%2C%22CSETv1.Physical%20Objects%22%2C%22CSETv1.Physical%20System%20Type%22%2C%22CSETv1.Producer%20Test%20in%20Controlled%20Conditions%22%2C%22CSETv1.Producer%20Test%20in%20Operational%20Conditions%22%2C%22CSETv1.Protected%20Characteristic%22%2C%22CSETv1.Public%20Sector%20Deployment%22%2C%22CSETv1.Quality%20Control%22%2C%22CSETv1.Report%2C%20Test%2C%20or%20Study%20of%20data%22%2C%22CSETv1.Rights%20Violation%22%2C%22CSETv1.Sector%20of%20Deployment%22%2C%22CSETv1.Special%20Interest%20Intangible%20Harm%22%2C%22CSETv1.Tangible%20Harm%22%2C%22CSETv1.There%20is%20a%20potentially%20identifiable%20specific%20entity%20that%20experienced%20the%20harm%22%2C%22CSETv1.User%20Test%20in%20Controlled%20Conditions%22%2C%22CSETv1.User%20Test%20in%20Operational%20Conditions%22%2C%22GMF.Known%20AI%20Goal%22%2C%22GMF.Known%20AI%20Goal%20Classification%20Discussion%22%2C%22GMF.Known%20AI%20Goal%20Snippets%22%2C%22GMF.Known%20AI%20Technical%20Failure%22%2C%22GMF.Known%20AI%20Technical%20Failure%20Classification%20Discussion%22%2C%22GMF.Known%20AI%20Technical%20Failure%20Snippets%22%2C%22GMF.Known%20AI%20Technology%22%2C%22GMF.Known%20AI%20Technology%20Classification%20Discussion%22%2C%22GMF.Known%20AI%20Technology%20Snippets%22%2C%22GMF.Potential%20AI%20Goal%22%2C%22GMF.Potential%20AI%20Goal%20Classification%20Discussion%22%2C%22GMF.Potential%20AI%20Goal%20Snippets%22%2C%22GMF.Potential%20AI%20Technical%20Failure%22%2C%22GMF.Potential%20AI%20Technical%20Failure%20Classification%20Discussion%22%2C%22GMF.Potential%20AI%20Technical%20Failure%20Snippets%22%2C%22GMF.Potential%20AI%20Technology%22%2C%22GMF.Potential%20AI%20Technology%20Classification%20Discussion%22%2C%22GMF.Potential%20AI%20Technology%20Snippets%22%2C%22authors%22%2C%22classifications%22%2C%22epoch_date_published%22%2C%22epoch_incident_date%22%2C%22flag%22%2C%22incident_id%22%2C%22is_incident_report%22%2C%22language%22%2C%22namespaces%22%2C%22source_domain%22%2C%22submitters%22%2C%22tags%22%5D&highlightPostTag=__%2Fais-highlight__&highlightPreTag=__ais-highlight__&hitsPerPage=28&maxValuesPerFacet=999&page=0&query=&tagFilters=', + 'distinct=false&facetFilters=%5B%5B%22is_incident_report%3Atrue%22%5D%5D&facets=%5B%22CSETv1.AI%20Harm%20Level%22%2C%22CSETv1.AI%20System%22%2C%22CSETv1.AI%20System%20Description%22%2C%22CSETv1.AI%20Tangible%20Harm%20Level%20Notes%22%2C%22CSETv1.AI%20Task%22%2C%22CSETv1.AI%20tools%20and%20methods%22%2C%22CSETv1.Annotation%20Status%22%2C%22CSETv1.Annotator%22%2C%22CSETv1.Annotator%E2%80%99s%20AI%20special%20interest%20intangible%20harm%20assessment%22%2C%22CSETv1.Autonomy%20Level%22%2C%22CSETv1.Clear%20link%20to%20Technology%22%2C%22CSETv1.Clear%20link%20to%20technology%22%2C%22CSETv1.Data%20Inputs%22%2C%22CSETv1.Date%20of%20Incident%20Day%22%2C%22CSETv1.Date%20of%20Incident%20Month%22%2C%22CSETv1.Date%20of%20Incident%20Year%22%2C%22CSETv1.Deployed%22%2C%22CSETv1.Detrimental%20Content%22%2C%22CSETv1.Embedded%22%2C%22CSETv1.Entertainment%20Industry%22%2C%22CSETv1.Entities%22%2C%22CSETv1.Estimated%20Date%22%2C%22CSETv1.Estimated%20Harm%20Quantities%22%2C%22CSETv1.Harm%20Distribution%20Basis%22%2C%22CSETv1.Harm%20Domain%22%2C%22CSETv1.Harmed%20Class%20of%20Entities%22%2C%22CSETv1.Impact%20on%20Critical%20Services%22%2C%22CSETv1.Incident%20Number%22%2C%22CSETv1.Infrastructure%20Sectors%22%2C%22CSETv1.Injuries%22%2C%22CSETv1.Intentional%20Harm%22%2C%22CSETv1.Involving%20Minor%22%2C%22CSETv1.Lives%20Lost%22%2C%22CSETv1.Location%20City%22%2C%22CSETv1.Location%20Country%20(two%20letters)%22%2C%22CSETv1.Location%20Region%22%2C%22CSETv1.Location%20State%2FProvince%20(two%20letters)%22%2C%22CSETv1.Multiple%20AI%20Interaction%22%2C%22CSETv1.Notes%20(%20Tangible%20Harm%20Quantities%20Information)%22%2C%22CSETv1.Notes%20(AI%20Functionality%20and%20Techniques)%22%2C%22CSETv1.Notes%20(AI%20special%20interest%20intangible%20harm)%22%2C%22CSETv1.Notes%20(Environmental%20and%20Temporal%20Characteristics)%22%2C%22CSETv1.Notes%20(Information%20about%20AI%20System)%22%2C%22CSETv1.Notes%20(special%20interest%20intangible%20harm)%22%2C%22CSETv1.Operating%20Conditions%22%2C%22CSETv1.Peer%20Reviewer%22%2C%22CSETv1.Physical%20Objects%22%2C%22CSETv1.Physical%20System%20Type%22%2C%22CSETv1.Producer%20Test%20in%20Controlled%20Conditions%22%2C%22CSETv1.Producer%20Test%20in%20Operational%20Conditions%22%2C%22CSETv1.Protected%20Characteristic%22%2C%22CSETv1.Public%20Sector%20Deployment%22%2C%22CSETv1.Quality%20Control%22%2C%22CSETv1.Report%2C%20Test%2C%20or%20Study%20of%20data%22%2C%22CSETv1.Rights%20Violation%22%2C%22CSETv1.Sector%20of%20Deployment%22%2C%22CSETv1.Special%20Interest%20Intangible%20Harm%22%2C%22CSETv1.Tangible%20Harm%22%2C%22CSETv1.There%20is%20a%20potentially%20identifiable%20specific%20entity%20that%20experienced%20the%20harm%22%2C%22CSETv1.User%20Test%20in%20Controlled%20Conditions%22%2C%22CSETv1.User%20Test%20in%20Operational%20Conditions%22%2C%22GMF.Known%20AI%20Goal%22%2C%22GMF.Known%20AI%20Goal%20Classification%20Discussion%22%2C%22GMF.Known%20AI%20Goal%20Snippets%22%2C%22GMF.Known%20AI%20Technical%20Failure%22%2C%22GMF.Known%20AI%20Technical%20Failure%20Classification%20Discussion%22%2C%22GMF.Known%20AI%20Technical%20Failure%20Snippets%22%2C%22GMF.Known%20AI%20Technology%22%2C%22GMF.Known%20AI%20Technology%20Classification%20Discussion%22%2C%22GMF.Known%20AI%20Technology%20Snippets%22%2C%22GMF.Potential%20AI%20Goal%22%2C%22GMF.Potential%20AI%20Goal%20Classification%20Discussion%22%2C%22GMF.Potential%20AI%20Goal%20Snippets%22%2C%22GMF.Potential%20AI%20Technical%20Failure%22%2C%22GMF.Potential%20AI%20Technical%20Failure%20Classification%20Discussion%22%2C%22GMF.Potential%20AI%20Technical%20Failure%20Snippets%22%2C%22GMF.Potential%20AI%20Technology%22%2C%22GMF.Potential%20AI%20Technology%20Classification%20Discussion%22%2C%22GMF.Potential%20AI%20Technology%20Snippets%22%2C%22authors%22%2C%22classifications%22%2C%22date_published%22%2C%22epoch_incident_date%22%2C%22flag%22%2C%22incident_id%22%2C%22is_incident_report%22%2C%22language%22%2C%22namespaces%22%2C%22source_domain%22%2C%22submitters%22%2C%22tags%22%5D&highlightPostTag=__%2Fais-highlight__&highlightPreTag=__ais-highlight__&hitsPerPage=28&maxValuesPerFacet=999&page=0&query=&tagFilters=', index: 'instant_search-en-featured', renderingContent: {}, processingTimeMS: 3, diff --git a/site/gatsby-site/playwright/fixtures/reports/flagged.json b/site/gatsby-site/playwright/fixtures/reports/flagged.json index ce7d1c0bcf..e2a23a8e5d 100644 --- a/site/gatsby-site/playwright/fixtures/reports/flagged.json +++ b/site/gatsby-site/playwright/fixtures/reports/flagged.json @@ -28,7 +28,6 @@ "source_domain": "cbsnews.com", "cloudinary_id": "reports/cbsnews2.cbsistatic.com/hub/i/r/2014/09/25/aa2708c1-7e84-4573-8f79-add177a690cd/thumbnail/1200x630/2505bd91ab74f8e2ce3e7c6f8a5d77f3/starbucks.jpg", "epoch_date_submitted": 1559347200, - "epoch_date_published": 1559347200, "date_submitted": "2019-06-01", "date_modified": "2019-06-02", "language": "en", diff --git a/site/gatsby-site/playwright/fixtures/reports/unflagged.json b/site/gatsby-site/playwright/fixtures/reports/unflagged.json index ddb924b7a4..e416750f6a 100644 --- a/site/gatsby-site/playwright/fixtures/reports/unflagged.json +++ b/site/gatsby-site/playwright/fixtures/reports/unflagged.json @@ -29,7 +29,6 @@ "source_domain": "cbsnews.com", "cloudinary_id": "reports/cbsnews2.cbsistatic.com/hub/i/r/2014/09/25/aa2708c1-7e84-4573-8f79-add177a690cd/thumbnail/1200x630/2505bd91ab74f8e2ce3e7c6f8a5d77f3/starbucks.jpg", "epoch_date_submitted": 1559347200, - "epoch_date_published": 1559347200, "date_submitted": "2019-06-01", "date_modified": "2019-06-02", "quiet": false diff --git a/site/gatsby-site/playwright/seeds/aiidprod/reports.ts b/site/gatsby-site/playwright/seeds/aiidprod/reports.ts index f4ce00982b..249d370f32 100644 --- a/site/gatsby-site/playwright/seeds/aiidprod/reports.ts +++ b/site/gatsby-site/playwright/seeds/aiidprod/reports.ts @@ -11,7 +11,6 @@ const items: DBReport[] = [ date_modified: new Date("2024-10-29T00:49:45.572Z"), date_published: new Date("2020-01-01T00:00:00.000Z"), date_submitted: new Date("2020-01-01T00:00:00.000Z"), - epoch_date_published: 1577836800, epoch_date_submitted: 1577836800, image_url: "https://upload.wikimedia.org/wikipedia/commons/e/e9/Felis_silvestris_silvestris_small_gradual_decrease_of_quality.png", language: "en", @@ -41,7 +40,6 @@ const items: DBReport[] = [ date_modified: new Date("2020-01-01"), date_published: new Date("2020-01-01"), date_submitted: new Date("2020-01-01"), - epoch_date_published: 1577836800, epoch_date_submitted: 1577836800, image_url: "image_url1", @@ -63,7 +61,6 @@ const items: DBReport[] = [ date_published: new Date(1407974400000), date_submitted: new Date(1559347200000), description: "Increasing numbers of low-income mothers and fathers are at the center of a new collision that pits workplace scheduling technology against the routines of parenting.", - epoch_date_published: 1407974400, epoch_date_submitted: 1559347200, image_url: "https://static01.nyt.com/images/2014/08/13/us/worker-hours-1407960684740/worker-hours-1407960684740-articleLarge.jpg", language: "en", @@ -105,7 +102,6 @@ const items: DBReport[] = [ date_published: new Date(1440633600000), date_submitted: new Date(1559347200000), description: "Retail and restaurant workers are the focus of a raging national debate over fair hours, pay and the use of shift scheduling software from big vendors such as ADP, SAP and Kronos.", - epoch_date_published: 1440633600, epoch_date_submitted: 1559347200, image_url: "https://cdn.ttgtmedia.com/visuals/searchFinancialApplications/hr_technology/financialapplications_article_004.jpg", language: "en", @@ -147,7 +143,6 @@ const items: DBReport[] = [ date_published: new Date(1440633600000), date_submitted: new Date(1559347200000), description: "Retail and restaurant workers are the focus of a raging national debate over fair hours, pay and the use of shift scheduling software from big vendors such as ADP, SAP and Kronos.", - epoch_date_published: 1440633600, epoch_date_submitted: 1559347200, image_url: "https://cdn.ttgtmedia.com/visuals/searchFinancialApplications/hr_technology/financialapplications_article_004.jpg", language: "en", @@ -198,7 +193,6 @@ const items: DBReport[] = [ date_downloaded: new Date(1555113600000), date_modified: new Date(1592092800000), date_submitted: new Date(1559347200000), - epoch_date_published: 0, image_url: "", language: "", plain_text: "", @@ -228,7 +222,6 @@ const items: DBReport[] = [ date_downloaded: new Date(1555113600000), date_modified: new Date(1592092800000), date_submitted: new Date(1559347200000), - epoch_date_published: 0, image_url: "", language: "", plain_text: "", @@ -258,7 +251,6 @@ const items: DBReport[] = [ date_downloaded: new Date(1555113600000), date_modified: new Date(1592092800000), date_submitted: new Date(1559347200000), - epoch_date_published: 0, image_url: "", language: "", plain_text: "", @@ -279,7 +271,6 @@ const items: DBReport[] = [ date_published: new Date(1440633600000), date_submitted: new Date(1559347200000), description: "Response Report", - epoch_date_published: 1440633600, epoch_date_submitted: 1559347200, image_url: "https://cdn.ttgtmedia.com/visuals/searchFinancialApplications/hr_technology/financialapplications_article_004.jpg", language: "en", diff --git a/site/gatsby-site/playwright/seeds/history/reportsHistory.ts b/site/gatsby-site/playwright/seeds/history/reportsHistory.ts index 3c6c661ed3..65fb7900be 100644 --- a/site/gatsby-site/playwright/seeds/history/reportsHistory.ts +++ b/site/gatsby-site/playwright/seeds/history/reportsHistory.ts @@ -11,7 +11,7 @@ const items: DBReportHistory[] = [ date_modified: new Date("2024-10-29T00:47:22.417Z"), date_published: new Date("2020-01-01T00:00:00.000Z"), date_submitted: new Date("2020-01-01T00:00:00.000Z"), - epoch_date_published: 1577836800, + epoch_date_submitted: 1577836800, image_url: "https://invalidimage.com", language: "en", @@ -39,7 +39,6 @@ const items: DBReportHistory[] = [ date_modified: new Date("2024-10-29T00:48:06.197Z"), date_published: new Date("2020-01-01T00:00:00.000Z"), date_submitted: new Date("2020-01-01T00:00:00.000Z"), - epoch_date_published: 1577836800, epoch_date_submitted: 1577836800, image_url: "https://invalidimage.com", language: "en", @@ -67,7 +66,6 @@ const items: DBReportHistory[] = [ date_modified: new Date("2024-10-29T00:48:37.349Z"), date_published: new Date("2020-01-01T00:00:00.000Z"), date_submitted: new Date("2020-01-01T00:00:00.000Z"), - epoch_date_published: 1577836800, epoch_date_submitted: 1577836800, image_url: "https://invalidimage.com", language: "en", @@ -95,7 +93,6 @@ const items: DBReportHistory[] = [ date_modified: new Date("2024-10-29T00:49:45.572Z"), date_published: new Date("2020-01-01T00:00:00.000Z"), date_submitted: new Date("2020-01-01T00:00:00.000Z"), - epoch_date_published: 1577836800, epoch_date_submitted: 1577836800, image_url: "https://upload.wikimedia.org/wikipedia/commons/e/e9/Felis_silvestris_silvestris_small_gradual_decrease_of_quality.png", language: "en", diff --git a/site/gatsby-site/server/fields/reports.ts b/site/gatsby-site/server/fields/reports.ts index 6d10ecd5f1..751ceb8f39 100644 --- a/site/gatsby-site/server/fields/reports.ts +++ b/site/gatsby-site/server/fields/reports.ts @@ -223,7 +223,6 @@ export const mutationFields: GraphQLFieldConfigMap = { date_modified: now, date_published: input.variant.date_published ? new Date(input.variant.date_published) : now, date_submitted: now, - epoch_date_published: getUnixTime(input.variant.date_published ? input.variant.date_published : todayFormated), epoch_date_submitted: getUnixTime(todayFormated), image_url: '', cloudinary_id: '', diff --git a/site/gatsby-site/server/fields/submissions.ts b/site/gatsby-site/server/fields/submissions.ts index 619017f465..19d9b838e1 100644 --- a/site/gatsby-site/server/fields/submissions.ts +++ b/site/gatsby-site/server/fields/submissions.ts @@ -226,7 +226,6 @@ export const mutationFields: GraphQLFieldConfigMap = { date_modified: new Date(submission.date_modified), date_published: new Date(submission.date_published), date_submitted: new Date(submission.date_submitted), - epoch_date_published: getUnixTime(submission.date_published), epoch_date_submitted: getUnixTime(submission.date_submitted), image_url: submission.image_url, cloudinary_id: submission.cloudinary_id, diff --git a/site/gatsby-site/server/generated/gql.ts b/site/gatsby-site/server/generated/gql.ts index 2862bd546b..17e9893e6d 100644 --- a/site/gatsby-site/server/generated/gql.ts +++ b/site/gatsby-site/server/generated/gql.ts @@ -46,12 +46,12 @@ type Documents = { "\n query AllQuickAdd($filter: QuickaddFilterType!) {\n quickadds(filter: $filter) {\n _id\n date_submitted\n url\n source_domain\n }\n }\n": typeof types.AllQuickAddDocument, "\n mutation DeleteOneQuickAdd($filter: QuickaddFilterType) {\n deleteManyQuickadds(filter: $filter) {\n deletedCount\n }\n }\n": typeof types.DeleteOneQuickAddDocument, "\n mutation InsertQuickAdd($data: QuickaddInsertType!) {\n insertOneQuickadd(data: $data) {\n _id\n }\n }\n": typeof types.InsertQuickAddDocument, - "\n query FindReport($filter: ReportFilterType!) {\n report(filter: $filter) {\n url\n title\n description\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_submitted\n epoch_date_published\n epoch_date_submitted\n image_url\n cloudinary_id\n text\n plain_text\n source_domain\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n user {\n userId\n }\n embedding {\n from_text_hash\n vector\n }\n quiet\n snippet_max_characters\n }\n }\n": typeof types.FindReportDocument, + "\n query FindReport($filter: ReportFilterType!) {\n report(filter: $filter) {\n url\n title\n description\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_submitted\n \n epoch_date_submitted\n image_url\n cloudinary_id\n text\n plain_text\n source_domain\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n user {\n userId\n }\n embedding {\n from_text_hash\n vector\n }\n quiet\n snippet_max_characters\n }\n }\n": typeof types.FindReportDocument, "\n query FindReportWithTranslations($filter: ReportFilterType!, $translationLanguages: [String!]!) {\n report(filter: $filter) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n inputs_outputs\n quiet\n translations(languages: $translationLanguages) {\n title\n text\n language\n }\n cloudinary_id\n snippet_max_characters\n }\n }\n": typeof types.FindReportWithTranslationsDocument, - "\n mutation UpdateReport($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n epoch_date_published\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n quiet\n snippet_max_characters\n }\n }\n": typeof types.UpdateReportDocument, + "\n mutation UpdateReport($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n quiet\n snippet_max_characters\n }\n }\n": typeof types.UpdateReportDocument, "\n mutation DeleteOneReport($filter: ReportFilterType!) {\n deleteOneReport(filter: $filter) {\n report_number\n }\n }\n": typeof types.DeleteOneReportDocument, "\n mutation LinkReportsToIncidents($input: LinkReportsToIncidentsInput!) {\n linkReportsToIncidents(input: $input) {\n incident_id\n reports {\n report_number\n }\n }\n }\n": typeof types.LinkReportsToIncidentsDocument, - "\n query FindReportHistory($filter: History_reportFilterType) {\n history_reports(filter: $filter, sort: { date_modified: DESC }) {\n _id\n authors\n cloudinary_id\n date_downloaded\n date_modified\n date_published\n date_submitted\n description\n editor_notes\n embedding {\n from_text_hash\n vector\n }\n date_downloaded\n epoch_date_published\n epoch_date_submitted\n flag\n image_url\n inputs_outputs\n is_incident_report\n language\n modifiedBy\n plain_text\n report_number\n submitters\n tags\n text\n title\n url\n source_domain\n user\n quiet\n snippet_max_characters\n }\n }\n": typeof types.FindReportHistoryDocument, + "\n query FindReportHistory($filter: History_reportFilterType) {\n history_reports(filter: $filter, sort: { date_modified: DESC }) {\n _id\n authors\n cloudinary_id\n date_downloaded\n date_modified\n date_published\n date_submitted\n description\n editor_notes\n embedding {\n from_text_hash\n vector\n }\n date_downloaded\n epoch_date_submitted\n flag\n image_url\n inputs_outputs\n is_incident_report\n language\n modifiedBy\n plain_text\n report_number\n submitters\n tags\n text\n title\n url\n source_domain\n user\n quiet\n snippet_max_characters\n }\n }\n": typeof types.FindReportHistoryDocument, "\n query FindReports($filter: ReportFilterType!) {\n reports(filter: $filter) {\n _id\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n authors\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n": typeof types.FindReportsDocument, "\n query FindReportsTable($filter: ReportFilterType!) {\n reports(filter: $filter, sort: { report_number: DESC }) {\n _id\n submitters\n date_published\n date_downloaded\n date_submitted\n date_modified\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n authors\n epoch_date_submitted\n language\n tags\n inputs_outputs\n editor_notes\n is_incident_report\n }\n }\n": typeof types.FindReportsTableDocument, "\n mutation FlagReport($report_number: Int!, $input: Boolean!) {\n flagReport(report_number: $report_number, input: $input) {\n report_number\n flag\n date_modified\n }\n }\n": typeof types.FlagReportDocument, @@ -72,11 +72,11 @@ type Documents = { "\n query FindUsersByRole($role: [String!]) {\n users(filter: { roles: { IN: $role } }) {\n roles\n userId\n first_name\n last_name\n }\n }\n": typeof types.FindUsersByRoleDocument, "\n mutation UpdateUserRoles($roles: [String]!, $userId: String) {\n updateOneUser(filter: { userId: { EQ: $userId } }, update: { set: { roles: $roles } }) {\n roles\n userId\n }\n }\n": typeof types.UpdateUserRolesDocument, "\n mutation UpdateUserProfile($userId: String, $first_name: String, $last_name: String) {\n updateOneUser(\n filter: { userId: { EQ: $userId } }\n update: { set: { first_name: $first_name, last_name: $last_name } }\n ) {\n userId\n first_name\n last_name\n }\n }\n": typeof types.UpdateUserProfileDocument, - "\n query FindVariants {\n reports(filter: { OR: [{ title: { EQ: \"\" } }, { url: { EQ: \"\" } }, { source_domain: { EQ: \"\" } }] }) {\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n plain_text\n authors\n date_downloaded\n epoch_date_published\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n": typeof types.FindVariantsDocument, + "\n query FindVariants {\n reports(filter: { OR: [{ title: { EQ: \"\" } }, { url: { EQ: \"\" } }, { source_domain: { EQ: \"\" } }] }) {\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n plain_text\n authors\n date_downloaded\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n": typeof types.FindVariantsDocument, "\n query FindIncidentVariants($incident_id: Int!) {\n incident(filter: { incident_id: { EQ: $incident_id } }) {\n incident_id\n reports {\n report_number\n title\n text\n url\n source_domain\n date_published\n tags\n inputs_outputs\n }\n }\n }\n": typeof types.FindIncidentVariantsDocument, "\n query FindVariant($filter: ReportFilterType) {\n report(filter: $filter) {\n report_number\n title\n date_published\n submitters\n text\n tags\n inputs_outputs\n }\n }\n": typeof types.FindVariantDocument, "\n mutation CreateVariant($input: CreateVariantInput!) {\n createVariant(input: $input) {\n incident_id\n report_number\n }\n }\n": typeof types.CreateVariantDocument, - "\n mutation UpdateVariant($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n epoch_date_published\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n }\n }\n": typeof types.UpdateVariantDocument, + "\n mutation UpdateVariant($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n }\n }\n": typeof types.UpdateVariantDocument, "\n mutation DeleteOneVariant($filter: ReportFilterType!) {\n deleteOneReport(filter: $filter) {\n report_number\n }\n }\n": typeof types.DeleteOneVariantDocument, }; const documents: Documents = { @@ -112,12 +112,12 @@ const documents: Documents = { "\n query AllQuickAdd($filter: QuickaddFilterType!) {\n quickadds(filter: $filter) {\n _id\n date_submitted\n url\n source_domain\n }\n }\n": types.AllQuickAddDocument, "\n mutation DeleteOneQuickAdd($filter: QuickaddFilterType) {\n deleteManyQuickadds(filter: $filter) {\n deletedCount\n }\n }\n": types.DeleteOneQuickAddDocument, "\n mutation InsertQuickAdd($data: QuickaddInsertType!) {\n insertOneQuickadd(data: $data) {\n _id\n }\n }\n": types.InsertQuickAddDocument, - "\n query FindReport($filter: ReportFilterType!) {\n report(filter: $filter) {\n url\n title\n description\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_submitted\n epoch_date_published\n epoch_date_submitted\n image_url\n cloudinary_id\n text\n plain_text\n source_domain\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n user {\n userId\n }\n embedding {\n from_text_hash\n vector\n }\n quiet\n snippet_max_characters\n }\n }\n": types.FindReportDocument, + "\n query FindReport($filter: ReportFilterType!) {\n report(filter: $filter) {\n url\n title\n description\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_submitted\n \n epoch_date_submitted\n image_url\n cloudinary_id\n text\n plain_text\n source_domain\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n user {\n userId\n }\n embedding {\n from_text_hash\n vector\n }\n quiet\n snippet_max_characters\n }\n }\n": types.FindReportDocument, "\n query FindReportWithTranslations($filter: ReportFilterType!, $translationLanguages: [String!]!) {\n report(filter: $filter) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n inputs_outputs\n quiet\n translations(languages: $translationLanguages) {\n title\n text\n language\n }\n cloudinary_id\n snippet_max_characters\n }\n }\n": types.FindReportWithTranslationsDocument, - "\n mutation UpdateReport($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n epoch_date_published\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n quiet\n snippet_max_characters\n }\n }\n": types.UpdateReportDocument, + "\n mutation UpdateReport($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n quiet\n snippet_max_characters\n }\n }\n": types.UpdateReportDocument, "\n mutation DeleteOneReport($filter: ReportFilterType!) {\n deleteOneReport(filter: $filter) {\n report_number\n }\n }\n": types.DeleteOneReportDocument, "\n mutation LinkReportsToIncidents($input: LinkReportsToIncidentsInput!) {\n linkReportsToIncidents(input: $input) {\n incident_id\n reports {\n report_number\n }\n }\n }\n": types.LinkReportsToIncidentsDocument, - "\n query FindReportHistory($filter: History_reportFilterType) {\n history_reports(filter: $filter, sort: { date_modified: DESC }) {\n _id\n authors\n cloudinary_id\n date_downloaded\n date_modified\n date_published\n date_submitted\n description\n editor_notes\n embedding {\n from_text_hash\n vector\n }\n date_downloaded\n epoch_date_published\n epoch_date_submitted\n flag\n image_url\n inputs_outputs\n is_incident_report\n language\n modifiedBy\n plain_text\n report_number\n submitters\n tags\n text\n title\n url\n source_domain\n user\n quiet\n snippet_max_characters\n }\n }\n": types.FindReportHistoryDocument, + "\n query FindReportHistory($filter: History_reportFilterType) {\n history_reports(filter: $filter, sort: { date_modified: DESC }) {\n _id\n authors\n cloudinary_id\n date_downloaded\n date_modified\n date_published\n date_submitted\n description\n editor_notes\n embedding {\n from_text_hash\n vector\n }\n date_downloaded\n epoch_date_submitted\n flag\n image_url\n inputs_outputs\n is_incident_report\n language\n modifiedBy\n plain_text\n report_number\n submitters\n tags\n text\n title\n url\n source_domain\n user\n quiet\n snippet_max_characters\n }\n }\n": types.FindReportHistoryDocument, "\n query FindReports($filter: ReportFilterType!) {\n reports(filter: $filter) {\n _id\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n authors\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n": types.FindReportsDocument, "\n query FindReportsTable($filter: ReportFilterType!) {\n reports(filter: $filter, sort: { report_number: DESC }) {\n _id\n submitters\n date_published\n date_downloaded\n date_submitted\n date_modified\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n authors\n epoch_date_submitted\n language\n tags\n inputs_outputs\n editor_notes\n is_incident_report\n }\n }\n": types.FindReportsTableDocument, "\n mutation FlagReport($report_number: Int!, $input: Boolean!) {\n flagReport(report_number: $report_number, input: $input) {\n report_number\n flag\n date_modified\n }\n }\n": types.FlagReportDocument, @@ -138,11 +138,11 @@ const documents: Documents = { "\n query FindUsersByRole($role: [String!]) {\n users(filter: { roles: { IN: $role } }) {\n roles\n userId\n first_name\n last_name\n }\n }\n": types.FindUsersByRoleDocument, "\n mutation UpdateUserRoles($roles: [String]!, $userId: String) {\n updateOneUser(filter: { userId: { EQ: $userId } }, update: { set: { roles: $roles } }) {\n roles\n userId\n }\n }\n": types.UpdateUserRolesDocument, "\n mutation UpdateUserProfile($userId: String, $first_name: String, $last_name: String) {\n updateOneUser(\n filter: { userId: { EQ: $userId } }\n update: { set: { first_name: $first_name, last_name: $last_name } }\n ) {\n userId\n first_name\n last_name\n }\n }\n": types.UpdateUserProfileDocument, - "\n query FindVariants {\n reports(filter: { OR: [{ title: { EQ: \"\" } }, { url: { EQ: \"\" } }, { source_domain: { EQ: \"\" } }] }) {\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n plain_text\n authors\n date_downloaded\n epoch_date_published\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n": types.FindVariantsDocument, + "\n query FindVariants {\n reports(filter: { OR: [{ title: { EQ: \"\" } }, { url: { EQ: \"\" } }, { source_domain: { EQ: \"\" } }] }) {\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n plain_text\n authors\n date_downloaded\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n": types.FindVariantsDocument, "\n query FindIncidentVariants($incident_id: Int!) {\n incident(filter: { incident_id: { EQ: $incident_id } }) {\n incident_id\n reports {\n report_number\n title\n text\n url\n source_domain\n date_published\n tags\n inputs_outputs\n }\n }\n }\n": types.FindIncidentVariantsDocument, "\n query FindVariant($filter: ReportFilterType) {\n report(filter: $filter) {\n report_number\n title\n date_published\n submitters\n text\n tags\n inputs_outputs\n }\n }\n": types.FindVariantDocument, "\n mutation CreateVariant($input: CreateVariantInput!) {\n createVariant(input: $input) {\n incident_id\n report_number\n }\n }\n": types.CreateVariantDocument, - "\n mutation UpdateVariant($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n epoch_date_published\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n }\n }\n": types.UpdateVariantDocument, + "\n mutation UpdateVariant($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n }\n }\n": types.UpdateVariantDocument, "\n mutation DeleteOneVariant($filter: ReportFilterType!) {\n deleteOneReport(filter: $filter) {\n report_number\n }\n }\n": types.DeleteOneVariantDocument, }; @@ -291,7 +291,7 @@ export function gql(source: "\n mutation InsertQuickAdd($data: QuickaddInsertTy /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n query FindReport($filter: ReportFilterType!) {\n report(filter: $filter) {\n url\n title\n description\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_submitted\n epoch_date_published\n epoch_date_submitted\n image_url\n cloudinary_id\n text\n plain_text\n source_domain\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n user {\n userId\n }\n embedding {\n from_text_hash\n vector\n }\n quiet\n snippet_max_characters\n }\n }\n"): (typeof documents)["\n query FindReport($filter: ReportFilterType!) {\n report(filter: $filter) {\n url\n title\n description\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_submitted\n epoch_date_published\n epoch_date_submitted\n image_url\n cloudinary_id\n text\n plain_text\n source_domain\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n user {\n userId\n }\n embedding {\n from_text_hash\n vector\n }\n quiet\n snippet_max_characters\n }\n }\n"]; +export function gql(source: "\n query FindReport($filter: ReportFilterType!) {\n report(filter: $filter) {\n url\n title\n description\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_submitted\n \n epoch_date_submitted\n image_url\n cloudinary_id\n text\n plain_text\n source_domain\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n user {\n userId\n }\n embedding {\n from_text_hash\n vector\n }\n quiet\n snippet_max_characters\n }\n }\n"): (typeof documents)["\n query FindReport($filter: ReportFilterType!) {\n report(filter: $filter) {\n url\n title\n description\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_submitted\n \n epoch_date_submitted\n image_url\n cloudinary_id\n text\n plain_text\n source_domain\n tags\n flag\n report_number\n editor_notes\n language\n is_incident_report\n user {\n userId\n }\n embedding {\n from_text_hash\n vector\n }\n quiet\n snippet_max_characters\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -299,7 +299,7 @@ export function gql(source: "\n query FindReportWithTranslations($filter: Repor /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n mutation UpdateReport($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n epoch_date_published\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n quiet\n snippet_max_characters\n }\n }\n"): (typeof documents)["\n mutation UpdateReport($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n epoch_date_published\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n quiet\n snippet_max_characters\n }\n }\n"]; +export function gql(source: "\n mutation UpdateReport($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n quiet\n snippet_max_characters\n }\n }\n"): (typeof documents)["\n mutation UpdateReport($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n quiet\n snippet_max_characters\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -311,7 +311,7 @@ export function gql(source: "\n mutation LinkReportsToIncidents($input: LinkRep /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n query FindReportHistory($filter: History_reportFilterType) {\n history_reports(filter: $filter, sort: { date_modified: DESC }) {\n _id\n authors\n cloudinary_id\n date_downloaded\n date_modified\n date_published\n date_submitted\n description\n editor_notes\n embedding {\n from_text_hash\n vector\n }\n date_downloaded\n epoch_date_published\n epoch_date_submitted\n flag\n image_url\n inputs_outputs\n is_incident_report\n language\n modifiedBy\n plain_text\n report_number\n submitters\n tags\n text\n title\n url\n source_domain\n user\n quiet\n snippet_max_characters\n }\n }\n"): (typeof documents)["\n query FindReportHistory($filter: History_reportFilterType) {\n history_reports(filter: $filter, sort: { date_modified: DESC }) {\n _id\n authors\n cloudinary_id\n date_downloaded\n date_modified\n date_published\n date_submitted\n description\n editor_notes\n embedding {\n from_text_hash\n vector\n }\n date_downloaded\n epoch_date_published\n epoch_date_submitted\n flag\n image_url\n inputs_outputs\n is_incident_report\n language\n modifiedBy\n plain_text\n report_number\n submitters\n tags\n text\n title\n url\n source_domain\n user\n quiet\n snippet_max_characters\n }\n }\n"]; +export function gql(source: "\n query FindReportHistory($filter: History_reportFilterType) {\n history_reports(filter: $filter, sort: { date_modified: DESC }) {\n _id\n authors\n cloudinary_id\n date_downloaded\n date_modified\n date_published\n date_submitted\n description\n editor_notes\n embedding {\n from_text_hash\n vector\n }\n date_downloaded\n epoch_date_submitted\n flag\n image_url\n inputs_outputs\n is_incident_report\n language\n modifiedBy\n plain_text\n report_number\n submitters\n tags\n text\n title\n url\n source_domain\n user\n quiet\n snippet_max_characters\n }\n }\n"): (typeof documents)["\n query FindReportHistory($filter: History_reportFilterType) {\n history_reports(filter: $filter, sort: { date_modified: DESC }) {\n _id\n authors\n cloudinary_id\n date_downloaded\n date_modified\n date_published\n date_submitted\n description\n editor_notes\n embedding {\n from_text_hash\n vector\n }\n date_downloaded\n epoch_date_submitted\n flag\n image_url\n inputs_outputs\n is_incident_report\n language\n modifiedBy\n plain_text\n report_number\n submitters\n tags\n text\n title\n url\n source_domain\n user\n quiet\n snippet_max_characters\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -395,7 +395,7 @@ export function gql(source: "\n mutation UpdateUserProfile($userId: String, $fi /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n query FindVariants {\n reports(filter: { OR: [{ title: { EQ: \"\" } }, { url: { EQ: \"\" } }, { source_domain: { EQ: \"\" } }] }) {\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n plain_text\n authors\n date_downloaded\n epoch_date_published\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n"): (typeof documents)["\n query FindVariants {\n reports(filter: { OR: [{ title: { EQ: \"\" } }, { url: { EQ: \"\" } }, { source_domain: { EQ: \"\" } }] }) {\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n plain_text\n authors\n date_downloaded\n epoch_date_published\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n"]; +export function gql(source: "\n query FindVariants {\n reports(filter: { OR: [{ title: { EQ: \"\" } }, { url: { EQ: \"\" } }, { source_domain: { EQ: \"\" } }] }) {\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n plain_text\n authors\n date_downloaded\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n"): (typeof documents)["\n query FindVariants {\n reports(filter: { OR: [{ title: { EQ: \"\" } }, { url: { EQ: \"\" } }, { source_domain: { EQ: \"\" } }] }) {\n submitters\n date_published\n report_number\n title\n description\n url\n image_url\n cloudinary_id\n source_domain\n text\n plain_text\n authors\n date_downloaded\n epoch_date_submitted\n language\n tags\n inputs_outputs\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ @@ -411,7 +411,7 @@ export function gql(source: "\n mutation CreateVariant($input: CreateVariantInp /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n mutation UpdateVariant($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n epoch_date_published\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n }\n }\n"): (typeof documents)["\n mutation UpdateVariant($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n epoch_date_published\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n }\n }\n"]; +export function gql(source: "\n mutation UpdateVariant($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n }\n }\n"): (typeof documents)["\n mutation UpdateVariant($filter: ReportFilterType!, $update: ReportUpdateType!) {\n updateOneReport(filter: $filter, update: $update) {\n url\n title\n authors\n submitters\n date_published\n date_downloaded\n date_modified\n date_downloaded\n image_url\n text\n plain_text\n tags\n flag\n report_number\n editor_notes\n language\n }\n }\n"]; /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ diff --git a/site/gatsby-site/server/generated/graphql.ts b/site/gatsby-site/server/generated/graphql.ts index b4ea2391a9..a79b61b477 100644 --- a/site/gatsby-site/server/generated/graphql.ts +++ b/site/gatsby-site/server/generated/graphql.ts @@ -801,7 +801,6 @@ export type History_Report = { editor_notes?: Maybe; embedding?: Maybe; epoch_date_modified?: Maybe; - epoch_date_published?: Maybe; epoch_date_submitted?: Maybe; flag?: Maybe; image_url?: Maybe; @@ -838,7 +837,6 @@ export type History_ReportFilterType = { editor_notes?: InputMaybe; embedding?: InputMaybe; epoch_date_modified?: InputMaybe; - epoch_date_published?: InputMaybe; epoch_date_submitted?: InputMaybe; flag?: InputMaybe; image_url?: InputMaybe; @@ -871,7 +869,6 @@ export type History_ReportSortType = { editor_notes?: InputMaybe; embedding?: InputMaybe; epoch_date_modified?: InputMaybe; - epoch_date_published?: InputMaybe; epoch_date_submitted?: InputMaybe; flag?: InputMaybe; image_url?: InputMaybe; @@ -2158,7 +2155,6 @@ export type Report = { description?: Maybe; editor_notes?: Maybe; embedding?: Maybe; - epoch_date_published: Scalars['Int']['output']; epoch_date_submitted: Scalars['Int']['output']; flag?: Maybe; image_url: Scalars['String']['output']; @@ -2227,7 +2223,6 @@ export type ReportFilterType = { description?: InputMaybe; editor_notes?: InputMaybe; embedding?: InputMaybe; - epoch_date_published?: InputMaybe; epoch_date_submitted?: InputMaybe; flag?: InputMaybe; image_url?: InputMaybe; @@ -2259,7 +2254,6 @@ export type ReportInsertType = { description?: InputMaybe; editor_notes?: InputMaybe; embedding?: InputMaybe; - epoch_date_published: Scalars['Int']['input']; epoch_date_submitted: Scalars['Int']['input']; flag?: InputMaybe; image_url: Scalars['String']['input']; @@ -2291,7 +2285,6 @@ export type ReportSetType = { description?: InputMaybe; editor_notes?: InputMaybe; embedding?: InputMaybe; - epoch_date_published?: InputMaybe; epoch_date_submitted?: InputMaybe; flag?: InputMaybe; image_url?: InputMaybe; @@ -2322,7 +2315,6 @@ export type ReportSortType = { description?: InputMaybe; editor_notes?: InputMaybe; embedding?: InputMaybe; - epoch_date_published?: InputMaybe; epoch_date_submitted?: InputMaybe; flag?: InputMaybe; image_url?: InputMaybe; @@ -3164,7 +3156,7 @@ export type FindReportQueryVariables = Exact<{ }>; -export type FindReportQuery = { __typename?: 'Query', report?: { __typename?: 'Report', url: string, title: string, description?: string | null, authors: Array, submitters: Array, date_published: any, date_downloaded: any, date_modified: any, date_submitted: any, epoch_date_published: number, epoch_date_submitted: number, image_url: string, cloudinary_id: string, text: string, plain_text: string, source_domain: string, tags: Array, flag?: boolean | null, report_number: number, editor_notes?: string | null, language: string, is_incident_report?: boolean | null, quiet?: boolean | null, snippet_max_characters?: number | null, user?: { __typename?: 'User', userId: string } | null, embedding?: { __typename?: 'ReportEmbedding', from_text_hash?: string | null, vector?: Array | null } | null } | null }; +export type FindReportQuery = { __typename?: 'Query', report?: { __typename?: 'Report', url: string, title: string, description?: string | null, authors: Array, submitters: Array, date_published: any, date_downloaded: any, date_modified: any, date_submitted: any, epoch_date_submitted: number, image_url: string, cloudinary_id: string, text: string, plain_text: string, source_domain: string, tags: Array, flag?: boolean | null, report_number: number, editor_notes?: string | null, language: string, is_incident_report?: boolean | null, quiet?: boolean | null, snippet_max_characters?: number | null, user?: { __typename?: 'User', userId: string } | null, embedding?: { __typename?: 'ReportEmbedding', from_text_hash?: string | null, vector?: Array | null } | null } | null }; export type FindReportWithTranslationsQueryVariables = Exact<{ filter: ReportFilterType; @@ -3180,7 +3172,7 @@ export type UpdateReportMutationVariables = Exact<{ }>; -export type UpdateReportMutation = { __typename?: 'Mutation', updateOneReport?: { __typename?: 'Report', url: string, title: string, authors: Array, submitters: Array, date_published: any, date_downloaded: any, date_modified: any, epoch_date_published: number, image_url: string, text: string, plain_text: string, tags: Array, flag?: boolean | null, report_number: number, editor_notes?: string | null, language: string, quiet?: boolean | null, snippet_max_characters?: number | null } | null }; +export type UpdateReportMutation = { __typename?: 'Mutation', updateOneReport?: { __typename?: 'Report', url: string, title: string, authors: Array, submitters: Array, date_published: any, date_downloaded: any, date_modified: any, image_url: string, text: string, plain_text: string, tags: Array, flag?: boolean | null, report_number: number, editor_notes?: string | null, language: string, quiet?: boolean | null, snippet_max_characters?: number | null } | null }; export type DeleteOneReportMutationVariables = Exact<{ filter: ReportFilterType; @@ -3201,7 +3193,7 @@ export type FindReportHistoryQueryVariables = Exact<{ }>; -export type FindReportHistoryQuery = { __typename?: 'Query', history_reports?: Array<{ __typename?: 'History_report', _id?: any | null, authors?: Array | null, cloudinary_id?: string | null, date_downloaded: any, date_modified: any, date_published: any, date_submitted: any, description?: string | null, editor_notes?: string | null, epoch_date_published?: number | null, epoch_date_submitted?: number | null, flag?: boolean | null, image_url?: string | null, inputs_outputs?: Array | null, is_incident_report?: boolean | null, language?: string | null, modifiedBy?: string | null, plain_text?: string | null, report_number?: number | null, submitters?: Array | null, tags?: Array | null, text?: string | null, title?: string | null, url?: string | null, source_domain?: string | null, user?: string | null, quiet?: boolean | null, snippet_max_characters?: number | null, embedding?: { __typename?: 'ReportEmbedding', from_text_hash?: string | null, vector?: Array | null } | null } | null> | null }; +export type FindReportHistoryQuery = { __typename?: 'Query', history_reports?: Array<{ __typename?: 'History_report', _id?: any | null, authors?: Array | null, cloudinary_id?: string | null, date_downloaded: any, date_modified: any, date_published: any, date_submitted: any, description?: string | null, editor_notes?: string | null, epoch_date_submitted?: number | null, flag?: boolean | null, image_url?: string | null, inputs_outputs?: Array | null, is_incident_report?: boolean | null, language?: string | null, modifiedBy?: string | null, plain_text?: string | null, report_number?: number | null, submitters?: Array | null, tags?: Array | null, text?: string | null, title?: string | null, url?: string | null, source_domain?: string | null, user?: string | null, quiet?: boolean | null, snippet_max_characters?: number | null, embedding?: { __typename?: 'ReportEmbedding', from_text_hash?: string | null, vector?: Array | null } | null } | null> | null }; export type FindReportsQueryVariables = Exact<{ filter: ReportFilterType; @@ -3348,7 +3340,7 @@ export type UpdateUserProfileMutation = { __typename?: 'Mutation', updateOneUser export type FindVariantsQueryVariables = Exact<{ [key: string]: never; }>; -export type FindVariantsQuery = { __typename?: 'Query', reports?: Array<{ __typename?: 'Report', submitters: Array, date_published: any, report_number: number, title: string, description?: string | null, url: string, image_url: string, cloudinary_id: string, source_domain: string, text: string, plain_text: string, authors: Array, date_downloaded: any, epoch_date_published: number, epoch_date_submitted: number, language: string, tags: Array, inputs_outputs?: Array | null } | null> | null }; +export type FindVariantsQuery = { __typename?: 'Query', reports?: Array<{ __typename?: 'Report', submitters: Array, date_published: any, report_number: number, title: string, description?: string | null, url: string, image_url: string, cloudinary_id: string, source_domain: string, text: string, plain_text: string, authors: Array, date_downloaded: any, epoch_date_submitted: number, language: string, tags: Array, inputs_outputs?: Array | null } | null> | null }; export type FindIncidentVariantsQueryVariables = Exact<{ incident_id: Scalars['Int']['input']; @@ -3377,7 +3369,7 @@ export type UpdateVariantMutationVariables = Exact<{ }>; -export type UpdateVariantMutation = { __typename?: 'Mutation', updateOneReport?: { __typename?: 'Report', url: string, title: string, authors: Array, submitters: Array, date_published: any, date_downloaded: any, date_modified: any, epoch_date_published: number, image_url: string, text: string, plain_text: string, tags: Array, flag?: boolean | null, report_number: number, editor_notes?: string | null, language: string } | null }; +export type UpdateVariantMutation = { __typename?: 'Mutation', updateOneReport?: { __typename?: 'Report', url: string, title: string, authors: Array, submitters: Array, date_published: any, date_downloaded: any, date_modified: any, image_url: string, text: string, plain_text: string, tags: Array, flag?: boolean | null, report_number: number, editor_notes?: string | null, language: string } | null }; export type DeleteOneVariantMutationVariables = Exact<{ filter: ReportFilterType; @@ -3419,12 +3411,12 @@ export const FlagIncidentSimilarityDocument = {"kind":"Document","definitions":[ export const AllQuickAddDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"AllQuickAdd"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"QuickaddFilterType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"quickadds"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"_id"}},{"kind":"Field","name":{"kind":"Name","value":"date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}}]}}]}}]} as unknown as DocumentNode; export const DeleteOneQuickAddDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteOneQuickAdd"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"QuickaddFilterType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteManyQuickadds"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deletedCount"}}]}}]}}]} as unknown as DocumentNode; export const InsertQuickAddDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"InsertQuickAdd"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"data"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"QuickaddInsertType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"insertOneQuickadd"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"data"},"value":{"kind":"Variable","name":{"kind":"Name","value":"data"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"_id"}}]}}]}}]} as unknown as DocumentNode; -export const FindReportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindReport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_published"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"is_incident_report"}},{"kind":"Field","name":{"kind":"Name","value":"user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"userId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"embedding"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from_text_hash"}},{"kind":"Field","name":{"kind":"Name","value":"vector"}}]}},{"kind":"Field","name":{"kind":"Name","value":"quiet"}},{"kind":"Field","name":{"kind":"Name","value":"snippet_max_characters"}}]}}]}}]} as unknown as DocumentNode; +export const FindReportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindReport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"is_incident_report"}},{"kind":"Field","name":{"kind":"Name","value":"user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"userId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"embedding"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from_text_hash"}},{"kind":"Field","name":{"kind":"Name","value":"vector"}}]}},{"kind":"Field","name":{"kind":"Name","value":"quiet"}},{"kind":"Field","name":{"kind":"Name","value":"snippet_max_characters"}}]}}]}}]} as unknown as DocumentNode; export const FindReportWithTranslationsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindReportWithTranslations"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"translationLanguages"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"is_incident_report"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}},{"kind":"Field","name":{"kind":"Name","value":"quiet"}},{"kind":"Field","name":{"kind":"Name","value":"translations"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"languages"},"value":{"kind":"Variable","name":{"kind":"Name","value":"translationLanguages"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"language"}}]}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"snippet_max_characters"}}]}}]}}]} as unknown as DocumentNode; -export const UpdateReportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateReport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"update"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportUpdateType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateOneReport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"update"},"value":{"kind":"Variable","name":{"kind":"Name","value":"update"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"quiet"}},{"kind":"Field","name":{"kind":"Name","value":"snippet_max_characters"}}]}}]}}]} as unknown as DocumentNode; +export const UpdateReportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateReport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"update"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportUpdateType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateOneReport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"update"},"value":{"kind":"Variable","name":{"kind":"Name","value":"update"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"quiet"}},{"kind":"Field","name":{"kind":"Name","value":"snippet_max_characters"}}]}}]}}]} as unknown as DocumentNode; export const DeleteOneReportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteOneReport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteOneReport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report_number"}}]}}]}}]} as unknown as DocumentNode; export const LinkReportsToIncidentsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"LinkReportsToIncidents"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"LinkReportsToIncidentsInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"linkReportsToIncidents"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"incident_id"}},{"kind":"Field","name":{"kind":"Name","value":"reports"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report_number"}}]}}]}}]}}]} as unknown as DocumentNode; -export const FindReportHistoryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindReportHistory"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"History_reportFilterType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"history_reports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"sort"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"date_modified"},"value":{"kind":"EnumValue","value":"DESC"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"_id"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"embedding"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from_text_hash"}},{"kind":"Field","name":{"kind":"Name","value":"vector"}}]}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_published"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}},{"kind":"Field","name":{"kind":"Name","value":"is_incident_report"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"modifiedBy"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"user"}},{"kind":"Field","name":{"kind":"Name","value":"quiet"}},{"kind":"Field","name":{"kind":"Name","value":"snippet_max_characters"}}]}}]}}]} as unknown as DocumentNode; +export const FindReportHistoryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindReportHistory"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"History_reportFilterType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"history_reports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"sort"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"date_modified"},"value":{"kind":"EnumValue","value":"DESC"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"_id"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"embedding"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"from_text_hash"}},{"kind":"Field","name":{"kind":"Name","value":"vector"}}]}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}},{"kind":"Field","name":{"kind":"Name","value":"is_incident_report"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"modifiedBy"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"user"}},{"kind":"Field","name":{"kind":"Name","value":"quiet"}},{"kind":"Field","name":{"kind":"Name","value":"snippet_max_characters"}}]}}]}}]} as unknown as DocumentNode; export const FindReportsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindReports"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"reports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"_id"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}}]}}]}}]} as unknown as DocumentNode; export const FindReportsTableDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindReportsTable"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"reports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"sort"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"report_number"},"value":{"kind":"EnumValue","value":"DESC"}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"_id"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"is_incident_report"}}]}}]}}]} as unknown as DocumentNode; export const FlagReportDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"FlagReport"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"report_number"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"flagReport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"report_number"},"value":{"kind":"Variable","name":{"kind":"Name","value":"report_number"}}},{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}}]}}]}}]} as unknown as DocumentNode; @@ -3445,9 +3437,9 @@ export const FindUserDocument = {"kind":"Document","definitions":[{"kind":"Opera export const FindUsersByRoleDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindUsersByRole"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"role"}},"type":{"kind":"ListType","type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"users"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"roles"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"IN"},"value":{"kind":"Variable","name":{"kind":"Name","value":"role"}}}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"roles"}},{"kind":"Field","name":{"kind":"Name","value":"userId"}},{"kind":"Field","name":{"kind":"Name","value":"first_name"}},{"kind":"Field","name":{"kind":"Name","value":"last_name"}}]}}]}}]} as unknown as DocumentNode; export const UpdateUserRolesDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateUserRoles"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"roles"}},"type":{"kind":"NonNullType","type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"userId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateOneUser"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"userId"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"Variable","name":{"kind":"Name","value":"userId"}}}]}}]}},{"kind":"Argument","name":{"kind":"Name","value":"update"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"set"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"roles"},"value":{"kind":"Variable","name":{"kind":"Name","value":"roles"}}}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"roles"}},{"kind":"Field","name":{"kind":"Name","value":"userId"}}]}}]}}]} as unknown as DocumentNode; export const UpdateUserProfileDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateUserProfile"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"userId"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"first_name"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"last_name"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateOneUser"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"userId"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"Variable","name":{"kind":"Name","value":"userId"}}}]}}]}},{"kind":"Argument","name":{"kind":"Name","value":"update"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"set"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"first_name"},"value":{"kind":"Variable","name":{"kind":"Name","value":"first_name"}}},{"kind":"ObjectField","name":{"kind":"Name","value":"last_name"},"value":{"kind":"Variable","name":{"kind":"Name","value":"last_name"}}}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"userId"}},{"kind":"Field","name":{"kind":"Name","value":"first_name"}},{"kind":"Field","name":{"kind":"Name","value":"last_name"}}]}}]}}]} as unknown as DocumentNode; -export const FindVariantsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindVariants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"reports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"OR"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"title"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"StringValue","value":"","block":false}}]}}]},{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"url"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"StringValue","value":"","block":false}}]}}]},{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"source_domain"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"StringValue","value":"","block":false}}]}}]}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_published"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}}]}}]}}]} as unknown as DocumentNode; +export const FindVariantsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindVariants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"reports"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"OR"},"value":{"kind":"ListValue","values":[{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"title"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"StringValue","value":"","block":false}}]}}]},{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"url"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"StringValue","value":"","block":false}}]}}]},{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"source_domain"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"StringValue","value":"","block":false}}]}}]}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"description"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"cloudinary_id"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_submitted"}},{"kind":"Field","name":{"kind":"Name","value":"language"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}}]}}]}}]} as unknown as DocumentNode; export const FindIncidentVariantsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindIncidentVariants"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"incident_id"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"incident"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"incident_id"},"value":{"kind":"ObjectValue","fields":[{"kind":"ObjectField","name":{"kind":"Name","value":"EQ"},"value":{"kind":"Variable","name":{"kind":"Name","value":"incident_id"}}}]}}]}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"incident_id"}},{"kind":"Field","name":{"kind":"Name","value":"reports"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"source_domain"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}}]}}]}}]}}]} as unknown as DocumentNode; export const FindVariantDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"FindVariant"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"inputs_outputs"}}]}}]}}]} as unknown as DocumentNode; export const CreateVariantDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"CreateVariant"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CreateVariantInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"createVariant"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"incident_id"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}}]}}]}}]} as unknown as DocumentNode; -export const UpdateVariantDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateVariant"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"update"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportUpdateType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateOneReport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"update"},"value":{"kind":"Variable","name":{"kind":"Name","value":"update"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"epoch_date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"language"}}]}}]}}]} as unknown as DocumentNode; +export const UpdateVariantDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateVariant"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"update"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportUpdateType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateOneReport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}},{"kind":"Argument","name":{"kind":"Name","value":"update"},"value":{"kind":"Variable","name":{"kind":"Name","value":"update"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"url"}},{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"authors"}},{"kind":"Field","name":{"kind":"Name","value":"submitters"}},{"kind":"Field","name":{"kind":"Name","value":"date_published"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"date_modified"}},{"kind":"Field","name":{"kind":"Name","value":"date_downloaded"}},{"kind":"Field","name":{"kind":"Name","value":"image_url"}},{"kind":"Field","name":{"kind":"Name","value":"text"}},{"kind":"Field","name":{"kind":"Name","value":"plain_text"}},{"kind":"Field","name":{"kind":"Name","value":"tags"}},{"kind":"Field","name":{"kind":"Name","value":"flag"}},{"kind":"Field","name":{"kind":"Name","value":"report_number"}},{"kind":"Field","name":{"kind":"Name","value":"editor_notes"}},{"kind":"Field","name":{"kind":"Name","value":"language"}}]}}]}}]} as unknown as DocumentNode; export const DeleteOneVariantDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"DeleteOneVariant"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filter"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ReportFilterType"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"deleteOneReport"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"filter"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filter"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"report_number"}}]}}]}}]} as unknown as DocumentNode; \ No newline at end of file diff --git a/site/gatsby-site/server/tests/fixtures/classifications.ts b/site/gatsby-site/server/tests/fixtures/classifications.ts index 377be09021..76a1de4cae 100644 --- a/site/gatsby-site/server/tests/fixtures/classifications.ts +++ b/site/gatsby-site/server/tests/fixtures/classifications.ts @@ -44,7 +44,6 @@ const report1 = { from_text_hash: "sample_hash", vector: [0.1, 0.2, 0.3] }, - epoch_date_published: 1631577600, epoch_date_submitted: 1631577600, flag: false, image_url: "http://example.com/image.png", diff --git a/site/gatsby-site/server/tests/fixtures/incidents.ts b/site/gatsby-site/server/tests/fixtures/incidents.ts index aa6bb021a9..703581c149 100644 --- a/site/gatsby-site/server/tests/fixtures/incidents.ts +++ b/site/gatsby-site/server/tests/fixtures/incidents.ts @@ -56,7 +56,6 @@ const report1 = { from_text_hash: "sample_hash", vector: [0.1, 0.2, 0.3] }, - epoch_date_published: 1631577600, epoch_date_submitted: 1631577600, flag: false, image_url: "http://example.com/image.png", @@ -89,7 +88,6 @@ const report2 = { from_text_hash: "sample_hash_3", vector: [0.7, 0.8, 0.9] }, - epoch_date_published: 1665705600, epoch_date_submitted: 1665705600, flag: true, image_url: "http://example3.com/image3.png", @@ -122,7 +120,6 @@ const report3 = { from_text_hash: "sample_hash_2", vector: [0.4, 0.5, 0.6] }, - epoch_date_published: 1636848000, epoch_date_submitted: 1636848000, flag: false, image_url: "http://example2.com/image2.png", diff --git a/site/gatsby-site/server/tests/fixtures/reports.ts b/site/gatsby-site/server/tests/fixtures/reports.ts index 423aa31f92..a35d4a7b7a 100644 --- a/site/gatsby-site/server/tests/fixtures/reports.ts +++ b/site/gatsby-site/server/tests/fixtures/reports.ts @@ -16,7 +16,6 @@ const report1 = { from_text_hash: "sample_hash", vector: [0.1, 0.2, 0.3] }, - epoch_date_published: 1631577600, epoch_date_submitted: 1631577600, flag: false, image_url: "http://example.com/image.png", @@ -49,7 +48,6 @@ const report2 = { from_text_hash: "sample_hash_3", vector: [0.7, 0.8, 0.9] }, - epoch_date_published: 1665705600, epoch_date_submitted: 1665705600, flag: true, image_url: "http://example3.com/image3.png", @@ -82,7 +80,6 @@ const report3 = { from_text_hash: "sample_hash_2", vector: [0.4, 0.5, 0.6] }, - epoch_date_published: 1636848000, epoch_date_submitted: 1636848000, flag: false, image_url: "http://example2.com/image2.png", @@ -115,7 +112,6 @@ const report4 = { from_text_hash: "sample_hash_4", vector: [1.0, 1.1, 1.2] }, - epoch_date_published: 1673654400, epoch_date_submitted: 1673654400, flag: true, image_url: "http://example4.com/image4.png", @@ -175,7 +171,6 @@ const fixture: Fixture = { from_text_hash vector } - epoch_date_published epoch_date_submitted flag image_url @@ -273,7 +268,7 @@ const fixture: Fixture = { date_submitted: '2021-09-14T00:00:00.000Z', description: 'Sample description 5', authors: ['Author 5', 'Author 6'], - epoch_date_published: 1631577600, + epoch_date_submitted: 1631577600, image_url: 'http://example.com/image.png', language: 'en', @@ -299,7 +294,7 @@ const fixture: Fixture = { date_modified: '2021-09-14T00:00:00.000Z', date_published: '2021-09-14T00:00:00.000Z', date_submitted: '2021-09-14T00:00:00.000Z', - epoch_date_published: 1631577600, + epoch_date_submitted: 1631577600, } }, diff --git a/site/gatsby-site/server/tests/fixtures/reportsHistory.ts b/site/gatsby-site/server/tests/fixtures/reportsHistory.ts index 011edf6678..c2976ee35c 100644 --- a/site/gatsby-site/server/tests/fixtures/reportsHistory.ts +++ b/site/gatsby-site/server/tests/fixtures/reportsHistory.ts @@ -17,7 +17,6 @@ const report1: DBReportHistory = { from_text_hash: "sample_hash", vector: [0.1, 0.2, 0.3] }, - epoch_date_published: 1631577600, epoch_date_submitted: 1631577600, flag: false, image_url: "http://example.com/image.png", @@ -51,7 +50,6 @@ const report2: DBReportHistory = { from_text_hash: "sample_hash_3", vector: [0.7, 0.8, 0.9] }, - epoch_date_published: 1665705600, epoch_date_submitted: 1665705600, flag: true, image_url: "http://example3.com/image3.png", @@ -85,7 +83,6 @@ const report3: DBReportHistory = { from_text_hash: "sample_hash_2", vector: [0.4, 0.5, 0.6] }, - epoch_date_published: 1636848000, epoch_date_submitted: 1636848000, flag: false, image_url: "http://example2.com/image2.png", @@ -146,7 +143,6 @@ const fixture: Fixture = { from_text_hash vector } - epoch_date_published epoch_date_submitted flag image_url diff --git a/site/gatsby-site/server/tests/history.spec.ts b/site/gatsby-site/server/tests/history.spec.ts index 9dba1063fe..265ad4a5d8 100644 --- a/site/gatsby-site/server/tests/history.spec.ts +++ b/site/gatsby-site/server/tests/history.spec.ts @@ -44,7 +44,6 @@ describe(`History`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -66,7 +65,6 @@ describe(`History`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -444,7 +442,6 @@ describe(`History`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -557,7 +554,6 @@ describe(`History`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', authors: [], diff --git a/site/gatsby-site/server/tests/notifications.spec.ts b/site/gatsby-site/server/tests/notifications.spec.ts index 57d1e3c255..e68959fddd 100644 --- a/site/gatsby-site/server/tests/notifications.spec.ts +++ b/site/gatsby-site/server/tests/notifications.spec.ts @@ -124,7 +124,6 @@ describe(`Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -253,7 +252,6 @@ describe(`Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -387,7 +385,6 @@ describe(`Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -513,7 +510,6 @@ describe(`Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -664,7 +660,6 @@ describe(`Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -1052,7 +1047,6 @@ describe(`Notifications`, () => { from_text_hash: "sample_hash", vector: [0.1, 0.2, 0.3] }, - epoch_date_published: 1631577600, epoch_date_submitted: 1631577600, flag: false, image_url: "http://example.com/image.png", @@ -1084,7 +1078,6 @@ describe(`Notifications`, () => { from_text_hash: "sample_hash_3", vector: [0.7, 0.8, 0.9] }, - epoch_date_published: 1665705600, epoch_date_submitted: 1665705600, flag: true, image_url: "http://example3.com/image3.png", @@ -1356,7 +1349,6 @@ describe(`Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -1571,7 +1563,6 @@ describe(`Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -1709,7 +1700,6 @@ describe(`Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', diff --git a/site/gatsby-site/server/tests/process-briefing-notifications.spec.ts b/site/gatsby-site/server/tests/process-briefing-notifications.spec.ts index 5e8a06a923..398e9d0e51 100644 --- a/site/gatsby-site/server/tests/process-briefing-notifications.spec.ts +++ b/site/gatsby-site/server/tests/process-briefing-notifications.spec.ts @@ -105,7 +105,6 @@ describe(`Briefing Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -336,7 +335,6 @@ describe(`Briefing Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -486,7 +484,6 @@ describe(`Briefing Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', @@ -665,7 +662,6 @@ describe(`Briefing Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: '', language: 'en', @@ -787,7 +783,6 @@ describe(`Briefing Notifications`, () => { date_modified: new Date().toISOString(), date_published: new Date().toISOString(), date_submitted: new Date().toISOString(), - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 'image_url', language: 'en', diff --git a/site/gatsby-site/server/types/report.ts b/site/gatsby-site/server/types/report.ts index 42b68bd722..508550bcf5 100644 --- a/site/gatsby-site/server/types/report.ts +++ b/site/gatsby-site/server/types/report.ts @@ -31,7 +31,6 @@ export const ReportType = new GraphQLObjectType({ description: { type: GraphQLString }, editor_notes: { type: GraphQLString }, embedding: { type: EmbeddingType }, - epoch_date_published: { type: new GraphQLNonNull(GraphQLInt) }, epoch_date_submitted: { type: new GraphQLNonNull(GraphQLInt) }, flag: { type: GraphQLBoolean }, image_url: { type: new GraphQLNonNull(GraphQLString) }, diff --git a/site/gatsby-site/server/types/reportHistory.ts b/site/gatsby-site/server/types/reportHistory.ts index 3f74aa7319..c4536e3abd 100644 --- a/site/gatsby-site/server/types/reportHistory.ts +++ b/site/gatsby-site/server/types/reportHistory.ts @@ -19,7 +19,6 @@ export const ReportHistoryType = new GraphQLObjectType({ editor_notes: { type: GraphQLString }, embedding: { type: EmbeddingType }, epoch_date_modified: { type: GraphQLInt }, - epoch_date_published: { type: GraphQLInt }, epoch_date_submitted: { type: GraphQLInt }, flag: { type: GraphQLBoolean }, image_url: { type: GraphQLString }, diff --git a/site/gatsby-site/src/components/RelatedIncidents.js b/site/gatsby-site/src/components/RelatedIncidents.js index 65dd4b61ad..461e6d1895 100644 --- a/site/gatsby-site/src/components/RelatedIncidents.js +++ b/site/gatsby-site/src/components/RelatedIncidents.js @@ -89,12 +89,12 @@ const allSearchColumns = { datePublished = today; } - const epoch_date_published_gt = getUnixTime(subWeeks(datePublished, 2)); + const date_published_gt = subWeeks(datePublished, 2).toISOString(); - const epoch_date_published_lt = getUnixTime(addWeeks(datePublished, 2)); + const date_published_lt = addWeeks(datePublished, 2).toISOString(); return { - epoch_date_published: { GT: epoch_date_published_gt, LT: epoch_date_published_lt }, + date_published: { GT: date_published_gt, LT: date_published_lt }, }; }, }, diff --git a/site/gatsby-site/src/components/discover/CsvExport.js b/site/gatsby-site/src/components/discover/CsvExport.js index 9d78792386..94ab6ecd10 100644 --- a/site/gatsby-site/src/components/discover/CsvExport.js +++ b/site/gatsby-site/src/components/discover/CsvExport.js @@ -13,7 +13,7 @@ const convertData = (hits) => { 'incident id': hit.incident_id, 'report number': hit.report_number, title: hit.title, - 'date published': format(fromUnixTime(hit.epoch_date_published ?? 0), 'yyyy-MM-dd'), + 'date published': format(new Date(hit.date_published ?? 0), 'yyyy-MM-dd'), 'date submitted': format(fromUnixTime(hit.epoch_date_submitted ?? 0), 'yyyy-MM-dd'), 'date modified': format(new Date(hit.date_modified || 0), 'yyyy-MM-dd'), 'date downloaded': format(new Date(hit.date_downloaded || 0), 'yyyy-MM-dd'), diff --git a/site/gatsby-site/src/components/discover/REFINEMENT_LISTS.js b/site/gatsby-site/src/components/discover/REFINEMENT_LISTS.js index 076346f978..11ab2f52b9 100644 --- a/site/gatsby-site/src/components/discover/REFINEMENT_LISTS.js +++ b/site/gatsby-site/src/components/discover/REFINEMENT_LISTS.js @@ -44,7 +44,7 @@ const REFINEMENT_LISTS = [ type: 'range', }, { - attribute: 'epoch_date_published', + attribute: 'date_published', placeholder: 'none', label: 'Published Date', faIcon: faCalendarAlt, @@ -132,7 +132,7 @@ const FIRST_ROW = REFINEMENT_LISTS.filter((refinement) => [ 'classifications', 'epoch_incident_date', - 'epoch_date_published', + 'date_published', 'source_domain', 'language', ].includes(refinement.attribute) diff --git a/site/gatsby-site/src/components/discover/SORTING_LISTS.js b/site/gatsby-site/src/components/discover/SORTING_LISTS.js index dd991108b8..09491bf62a 100644 --- a/site/gatsby-site/src/components/discover/SORTING_LISTS.js +++ b/site/gatsby-site/src/components/discover/SORTING_LISTS.js @@ -37,7 +37,7 @@ const BASE_SORTING_LIST = [ faIcon: faCalendarAlt, faClasses: 'far fa-calendar-alt', type: 'date', - instantKey: 'epoch_date_published_desc', + instantKey: 'date_published_desc', }, { name: 'published-date-asc', @@ -46,7 +46,7 @@ const BASE_SORTING_LIST = [ faClasses: 'far fa-calendar-alt', type: 'date', division: true, - instantKey: 'epoch_date_published_asc', + instantKey: 'date_published_asc', }, { name: 'submitted-date-desc', diff --git a/site/gatsby-site/src/components/discover/hitTypes/Compact.js b/site/gatsby-site/src/components/discover/hitTypes/Compact.js index 859855e83b..5e607d3d1b 100644 --- a/site/gatsby-site/src/components/discover/hitTypes/Compact.js +++ b/site/gatsby-site/src/components/discover/hitTypes/Compact.js @@ -32,7 +32,7 @@ export default function Compact({ item, toggleFilterByIncidentId, viewType }) { return ( - +
diff --git a/site/gatsby-site/src/components/discover/hitTypes/Details.js b/site/gatsby-site/src/components/discover/hitTypes/Details.js index d80e067665..29bec214db 100644 --- a/site/gatsby-site/src/components/discover/hitTypes/Details.js +++ b/site/gatsby-site/src/components/discover/hitTypes/Details.js @@ -34,7 +34,7 @@ export default function Details({ item, toggleFilterByIncidentId, viewType }) { return ( - + diff --git a/site/gatsby-site/src/components/discover/hitTypes/shared.js b/site/gatsby-site/src/components/discover/hitTypes/shared.js index 57260cbb95..4abf807d15 100644 --- a/site/gatsby-site/src/components/discover/hitTypes/shared.js +++ b/site/gatsby-site/src/components/discover/hitTypes/shared.js @@ -1,4 +1,4 @@ -import { format, fromUnixTime } from 'date-fns'; +import { format } from 'date-fns'; import { LocalizedLink } from 'plugins/gatsby-theme-i18n'; import React from 'react'; import { Highlight } from 'react-instantsearch'; @@ -44,7 +44,8 @@ export function SourceDomainSubtitle({ item, className }) { return (
- {item.source_domain} · {format(fromUnixTime(item.epoch_date_published), 'yyyy')} + {item.source_domain} ·{' '} + {item.date_published ? format(new Date(item.date_published), 'yyyy') : ''}
); diff --git a/site/gatsby-site/src/components/discover/queryParams.js b/site/gatsby-site/src/components/discover/queryParams.js index 16168729f8..8fdeda39a3 100644 --- a/site/gatsby-site/src/components/discover/queryParams.js +++ b/site/gatsby-site/src/components/discover/queryParams.js @@ -23,8 +23,8 @@ const queryConfig = { classifications: StringParam, epoch_incident_date_min: StringParam, epoch_incident_date_max: StringParam, - epoch_date_published_min: StringParam, - epoch_date_published_max: StringParam, + date_published_min: StringParam, + date_published_max: StringParam, display: DisplayModeEnumParam, page: withDefault(NumberParam, 1), hideDuplicates: withDefault(BooleanParam, false), diff --git a/site/gatsby-site/src/components/reports/ReportCard.js b/site/gatsby-site/src/components/reports/ReportCard.js index 0d39b28ae9..3b385e0a02 100644 --- a/site/gatsby-site/src/components/reports/ReportCard.js +++ b/site/gatsby-site/src/components/reports/ReportCard.js @@ -13,7 +13,7 @@ import { RESPONSE_TAG } from 'utils/entities'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faQuestionCircle } from '@fortawesome/free-solid-svg-icons'; import { hasVariantData } from 'utils/variants'; -import { format, fromUnixTime } from 'date-fns'; +import { format } from 'date-fns'; const ReportCard = ({ item, @@ -176,8 +176,6 @@ const ReportCard = ({ {item.source_domain} ·{' '} {item.date_published ? format(new Date(item.date_published), 'yyyy') - : item.epoch_date_published - ? format(fromUnixTime(item.epoch_date_published), 'yyyy') : 'Needs publish date'} {actions && !readOnly && <>{actions}} diff --git a/site/gatsby-site/src/graphql/reports.js b/site/gatsby-site/src/graphql/reports.js index 71f2f88e35..b6e1280854 100644 --- a/site/gatsby-site/src/graphql/reports.js +++ b/site/gatsby-site/src/graphql/reports.js @@ -12,7 +12,7 @@ export const FIND_REPORT = gql(` date_downloaded date_modified date_submitted - epoch_date_published + epoch_date_submitted image_url cloudinary_id @@ -80,7 +80,6 @@ export const UPDATE_REPORT = gql(` date_published date_downloaded date_modified - epoch_date_published date_downloaded image_url text @@ -132,7 +131,6 @@ export const FIND_REPORT_HISTORY = gql(` vector } date_downloaded - epoch_date_published epoch_date_submitted flag image_url diff --git a/site/gatsby-site/src/graphql/variants.js b/site/gatsby-site/src/graphql/variants.js index 1b1e671eb4..cbbca3749b 100644 --- a/site/gatsby-site/src/graphql/variants.js +++ b/site/gatsby-site/src/graphql/variants.js @@ -16,7 +16,6 @@ export const FIND_VARIANTS = gql(` plain_text authors date_downloaded - epoch_date_published epoch_date_submitted language tags @@ -76,7 +75,6 @@ export const UPDATE_VARIANT = gql(` date_published date_downloaded date_modified - epoch_date_published date_downloaded image_url text diff --git a/site/gatsby-site/src/pages/cite/edit.js b/site/gatsby-site/src/pages/cite/edit.js index aabeb53ef8..4e6608de82 100644 --- a/site/gatsby-site/src/pages/cite/edit.js +++ b/site/gatsby-site/src/pages/cite/edit.js @@ -11,7 +11,6 @@ import { } from '../../graphql/reports'; import { FIND_INCIDENTS } from '../../graphql/incidents'; import { useMutation, useQuery } from '@apollo/client/react/hooks'; -import { getUnixTime } from 'date-fns'; import { stripMarkdown } from '../../utils/typography'; import { Formik } from 'formik'; import pick from 'lodash/pick'; @@ -38,7 +37,6 @@ const reportFields = [ 'date_modified', 'date_published', 'editor_notes', - 'epoch_date_published', 'flag', 'image_url', 'language', @@ -204,8 +202,6 @@ function EditCitePage(props) { values.date_modified = now; - values.epoch_date_published = getUnixTime(new Date(values.date_published)); - values.date_published = new Date(values.date_published); values.date_downloaded = new Date(values.date_downloaded); diff --git a/site/gatsby-site/src/utils/AlgoliaUpdater.js b/site/gatsby-site/src/utils/AlgoliaUpdater.js index 80d8b1ed9f..edc3b8060e 100644 --- a/site/gatsby-site/src/utils/AlgoliaUpdater.js +++ b/site/gatsby-site/src/utils/AlgoliaUpdater.js @@ -24,7 +24,7 @@ const TRUNCATION_BLACKLIST = [ 'date', 'incident_date', 'date_modified', - 'epoch_date_published', + 'date_published', 'epoch_date_submitted', 'epoch_incident_date', 'language', @@ -242,7 +242,7 @@ const reportToEntry = ({ incident = null, report, classifications = [{ list: [], description: report.description, date_modified: report.date_modified, date_downloaded: report.date_downloaded, - epoch_date_published: report.epoch_date_published, + date_published: report.date_published, epoch_date_submitted: report.epoch_date_submitted, image_url: report.image_url, language: report.language, @@ -393,7 +393,6 @@ class AlgoliaUpdater { date_published: 1, date_submitted: 1, description: 1, - epoch_date_published: 1, epoch_date_submitted: 1, image_url: 1, language: 1, @@ -454,9 +453,9 @@ class AlgoliaUpdater { const incidentDateAscReplicaIndexName = indexName + '_epoch_incident_date_asc'; - const datePublishedDescReplicaIndexName = indexName + '_epoch_date_published_desc'; + const datePublishedDescReplicaIndexName = indexName + '_date_published_desc'; - const datePublishedAscReplicaIndexName = indexName + '_epoch_date_published_asc'; + const datePublishedAscReplicaIndexName = indexName + '_date_published_asc'; const dateSubmittedDescReplicaIndexName = indexName + '_epoch_date_submitted_desc'; @@ -518,7 +517,7 @@ class AlgoliaUpdater { ); await datePublishedDescReplicaIndex.setSettings({ - ranking: ['desc(epoch_date_published)'], + ranking: ['desc(date_published)'], }); const datePublishedAscReplicaIndex = await this.algoliaClient.initIndex( @@ -526,7 +525,7 @@ class AlgoliaUpdater { ); await datePublishedAscReplicaIndex.setSettings({ - ranking: ['asc(epoch_date_published)'], + ranking: ['asc(date_published)'], }); const dateSubmittedDescReplicaIndex = await this.algoliaClient.initIndex( diff --git a/site/gatsby-site/src/utils/algoliaSettings.js b/site/gatsby-site/src/utils/algoliaSettings.js index bc07325823..737adeb0b4 100644 --- a/site/gatsby-site/src/utils/algoliaSettings.js +++ b/site/gatsby-site/src/utils/algoliaSettings.js @@ -15,7 +15,7 @@ module.exports = { 'searchable(Submitter)', 'searchable(authors)', 'searchable(classifications)', - 'epoch_date_published', + 'date_published', 'epoch_date_submitted', 'epoch_incident_date', 'searchable(incident_id)', diff --git a/site/gatsby-site/typeDefs.js b/site/gatsby-site/typeDefs.js index c3bda0ea7b..27206d6f5e 100644 --- a/site/gatsby-site/typeDefs.js +++ b/site/gatsby-site/typeDefs.js @@ -73,7 +73,6 @@ const typeDefs = ` mongodb_id: String text: String authors: [String] - epoch_date_published: Int epoch_date_submitted: Int cloudinary_id: String tags: [String]