Search

Networks with the Time Bar

Integrations

Use a time bar to filter a network by time period.

Networks with the Time Bar
View live example →

Scroll and drag the time bar or move the sliders to filter the network.

MapWeave can be coupled with a KeyLines time bar to allow filtering of data based on time period. In this example, each link in the network layer has a time property representing the time of a journey. The filtered map only shows those journeys which took place within the time period selected.

MapWeave can be coupled with a ReGraph time bar to allow filtering of data based on time period. In this example, each link in the network layer has a time property representing the time of a journey. The filtered map only shows those journeys which took place within the time period selected.

import { MapWeave } from "mapweave/mapbox";
import { NetworkLayer } from "mapweave/layers";
import { linksData, networkData } from "./data";
import KeyLines from "keylines";

const networkLayerOptions = {
  links: {
    bundling: { enabled: true },
  },
  proximityCombine: { enabled: true },
};

const timeBarOptions = {
  area: { colour: "white" },
  backColour: "#242c32",
  fontColour: "#e5e8eb",
  scale: { highlightColour: "#242c32" },
  showControlBar: false,
  sliderColour: "rgba(36, 44, 50, 0.8)",
  type: "area",
};

function makeTimebarData() {
  const items = linksData.map(([id, ...time]) => ({
    id,
    dt: time,
  }));
  return { items };
}

async function main() {
  const mapweave = new MapWeave({
    container: "mw",
    options: { accessToken: VITE_MAPBOX_API_KEY },
  });
  const networkLayer = new NetworkLayer({
    data: networkData,
    options: networkLayerOptions,
  });
  mapweave.addLayer(networkLayer);
  mapweave.fitBounds();

  const timebar = await KeyLines.create({
    type: "timebar",
    container: "timebar",
    options: timeBarOptions,
  });
  await timebar.load(makeTimebarData());
  await timebar.zoom("fit");

  timebar.on("change", () => {
    const { dt1, dt2 } = timebar.range();
    networkLayer.options({ timeFilterRange: { start: dt1, end: dt2 } });
  });
}

main();
export const nodesData = [
  ["3", 42.340021, -71.100812],
  ["4", 42.345392, -71.069616],
  ["6", 42.361285, -71.06514],
  ["7", 42.353412, -71.044624],
  ["8", 42.353334, -71.137313],
  ["9", 42.351313, -71.116174],
  ["10", 42.350075, -71.105884],
  ["11", 42.338629, -71.1065],
  ["12", 42.335911, -71.088496],
  ["14", 42.337171, -71.102797],
  ["15", 42.361667, -71.13802],
  ["16", 42.347433, -71.076163],
  ["17", 42.365074, -71.119581],
  ["18", 42.36337, -71.129791],
  ["19", 42.347527, -71.105828],
  ["20", 42.35977, -71.051601],
  ["21", 42.345959, -71.082578],
  ["22", 42.352175, -71.055547],
  ["24", 42.351821, -71.045461],
  ["25", 42.341332, -71.076847],
  ["26", 42.341522, -71.068922],
  ["27", 42.331567, -71.094734],
  ["29", 42.363732, -71.124565],
  ["30", 42.334073, -71.105221],
  ["31", 42.348833, -71.041747],
  ["32", 42.343912, -71.102221],
  ["33", 42.349046, -71.096831],
  ["39", 42.338623, -71.074182],
  ["40", 42.363871, -71.050877],
  ["41", 42.352261, -71.123831],
  ["42", 42.352096, -71.070378],
  ["43", 42.357143, -71.050699],
  ["44", 42.360583, -71.056868],
  ["45", 42.344763, -71.09788],
  ["46", 42.343864, -71.085918],
  ["47", 42.362811, -71.056067],
  ["48", 42.356755, -71.055407],
  ["49", 42.351146, -71.066289],
  ["51", 42.3348756, -71.0790969],
  ["52", 42.348717, -71.085954],
  ["53", 42.350851, -71.089886],
  ["54", 42.354979, -71.063348],
  ["55", 42.347265, -71.088088],
  ["57", 42.340799, -71.081572],
  ["58", 42.355596, -71.07278],
  ["59", 42.351356, -71.059367],
  ["62", 42.340299, -71.109927],
  ["63", 42.344023, -71.057054],
  ["64", 42.3511, -71.0496],
  ["65", 42.3475, -71.0441],
  ["66", 42.348607, -71.13401],
  ["67", 42.3581, -71.093198],
  ["68", 42.36507, -71.1031],
  ["69", 42.341598, -71.123338],
  ["70", 42.372244, -71.121851],
  ["71", 42.383405, -71.107593],
  ["72", 42.362613, -71.084105],
  ["73", 42.373231, -71.120886],
  ["74", 42.373268, -71.118579],
  ["75", 42.363562, -71.10042],
  ["76", 42.366426, -71.105495],
  ["77", 42.386428, -71.096413],
  ["78", 42.379637, -71.095319],
  ["79", 42.378551, -71.106541],
  ["80", 42.362429, -71.090188],
  ["81", 42.352409, -71.062679],
  ["83", 42.325941, -71.065928],
  ["84", 42.366981, -71.076472],
  ["86", 42.332799, -71.116205],
  ["87", 42.366621, -71.114214],
  ["88", 42.374035, -71.101427],
  ["89", 42.379011, -71.119945],
  ["90", 42.3707, -71.07711],
  ["91", 42.366277, -71.09169],
  ["94", 42.375603, -71.064608],
  ["95", 42.372969, -71.094445],
  ["96", 42.373379, -71.111075],
  ["98", 42.371848, -71.060292],
  ["99", 42.35892, -71.057629],
  ["100", 42.328654, -71.084198],
  ["105", 42.325333, -71.075354],
  ["111", 42.366222, -71.059914],
  ["112", 42.355402, -71.058087],
  ["113", 42.36069, -71.070884],
  ["114", 42.365942, -71.060515],
  ["127", 42.346563, -71.128374],
  ["128", 42.362457, -71.08497],
  ["130", 42.376369, -71.114025],
  ["131", 42.356954, -71.113687],
  ["132", 42.377945, -71.116865],
  ["133", 42.380287, -71.125107],
  ["138", 42.385582, -71.113341],
  ["139", 42.396969, -71.123024],
  ["140", 42.400146, -71.112708],
  ["141", 42.400877, -71.116772],
];

export const linksData = [
  ["58-70", 1366143300000],
  ["16-14", 1366107000000],
  ["22-43", 1366106100000, 1366127100000, 1366131000000],
  ["64-22", 1366129200000, 1366132800000, 1366134000000, 1366137600000],
  [
    "40-22",
    1366095600000,
    1366096200000,
    1366098900000,
    1366100400000,
    1366102800000,
    1366103700000,
    1366105200000,
    1366109100000,
    1366114200000,
    1366123500000,
    1366129200000,
    1366130100000,
    1366143300000,
  ],
  ["114-44", 1366103700000],
  ["48-40", 1366097100000, 1366115100000, 1366130100000, 1366137000000],
  ["14-32", 1366119600000, 1366133400000, 1366133700000, 1366139700000],
  ["98-44", 1366118700000, 1366125300000],
  ["68-67", 1366122000000, 1366140900000, 1366141500000],
  ["46-67", 1366099500000, 1366110000000, 1366152600000],
  ["25-59", 1366101000000, 1366117500000],
  [
    "22-40",
    1366098300000,
    1366103400000,
    1366112400000,
    1366135500000,
    1366143600000,
  ],
  ["49-81", 1366119300000, 1366141500000],
  ["94-64", 1366098000000],
  ["16-62", 1366098300000],
  ["114-43", 1366098000000, 1366103100000],
  ["113-49", 1366103700000, 1366139400000],
  [
    "114-64",
    1366093500000,
    1366093800000,
    1366094100000,
    1366094700000,
    1366095000000,
    1366098000000,
    1366098300000,
    1366099200000,
    1366116000000,
  ],
  ["112-48", 1366099200000, 1366111200000],
  ["76-17", 1366102800000],
  ["43-114", 1366130400000, 1366135200000, 1366143300000],
  ["40-24", 1366098900000, 1366102800000],
  ["40-48", 1366092000000, 1366098600000, 1366099500000, 1366099800000],
  ["32-11", 1366114800000],
  ["87-11", 1366097100000, 1366099800000],
  ["57-99", 1366099800000],
  ["25-16", 1366097400000, 1366137300000],
  ["89-99", 1366099200000],
  ["88-96", 1366099500000, 1366114500000],
  ["58-72", 1366108200000, 1366135800000],
  ["22-31", 1366100700000, 1366133400000],
  ["68-74", 1366117500000, 1366137600000, 1366138500000],
  [
    "40-43",
    1366095900000,
    1366101300000,
    1366103700000,
    1366113600000,
    1366141800000,
  ],
  ["114-72", 1366093800000, 1366107600000],
  ["40-31", 1366097400000, 1366098600000, 1366104900000],
  ["114-22", 1366095600000, 1366100100000, 1366104900000, 1366128600000],
  ["141-139", 1366142100000],
  ["57-16", 1366099500000],
  ["133-74", 1366095600000, 1366107600000, 1366116900000],
  ["99-6", 1366115400000, 1366116000000],
  ["94-40", 1366098900000],
  ["43-24", 1366100700000, 1366105800000, 1366108800000],
  ["71-6", 1366098600000],
  ["113-72", 1366140300000],
  ["57-59", 1366146900000],
  ["18-29", 1366135500000],
  ["99-91", 1366102200000],
  ["81-22", 1366098300000, 1366107300000, 1366116600000, 1366139400000],
  ["21-54", 1366118400000, 1366128300000],
  ["78-72", 1366099200000],
  ["21-64", 1366101300000],
  ["6-72", 1366101000000],
  ["29-18", 1366101000000],
  ["88-84", 1366104300000],
  ["4-22", 1366092900000, 1366095000000, 1366101000000],
  ["87-70", 1366100100000, 1366115700000],
  ["63-22", 1366114800000],
  [
    "6-48",
    1366095900000,
    1366100400000,
    1366101900000,
    1366102800000,
    1366107300000,
  ],
  ["25-31", 1366119300000],
  ["21-22", 1366127100000],
  ["4-48", 1366096200000],
  ["88-80", 1366101000000],
  ["43-22", 1366134600000, 1366138200000],
  ["25-54", 1366101900000, 1366115700000, 1366134300000],
  ["128-67", 1366123800000, 1366149300000],
  ["40-44", 1366101900000, 1366120500000, 1366122900000],
  ["24-48", 1366105500000],
  ["86-80", 1366125300000],
  [
    "20-22",
    1366099800000,
    1366101600000,
    1366101900000,
    1366127700000,
    1366130400000,
    1366131000000,
    1366133400000,
  ],
  ["77-81", 1366102800000],
  ["17-32", 1366101000000],
  ["88-68", 1366102200000],
  [
    "6-22",
    1366102200000,
    1366114800000,
    1366130100000,
    1366132200000,
    1366136100000,
  ],
  ["73-18", 1366100400000],
  ["22-99", 1366101300000],
  ["111-53", 1366136400000],
  ["41-48", 1366105500000],
  ["111-59", 1366120800000],
  ["89-73", 1366137000000],
  [
    "22-6",
    1366093800000,
    1366096800000,
    1366097700000,
    1366098300000,
    1366101300000,
    1366140000000,
  ],
  ["114-40", 1366111200000, 1366119000000],
  ["113-41", 1366130400000],
  ["72-84", 1366098600000, 1366120500000],
  ["67-128", 1366098600000, 1366116900000, 1366145400000, 1366148400000],
  ["44-7", 1366142700000],
  ["98-58", 1366100400000],
  ["84-59", 1366104000000],
  ["22-114", 1366126500000, 1366127400000, 1366131000000, 1366136400000],
  ["76-80", 1366105500000],
  ["112-114", 1366127400000],
  ["40-49", 1366105800000],
  ["76-74", 1366100100000, 1366104300000, 1366121400000],
  ["63-48", 1366104000000],
  ["11-32", 1366119600000, 1366134600000],
  ["78-67", 1366105800000],
  ["78-76", 1366104000000, 1366130700000],
  ["114-98", 1366102200000, 1366107600000],
  ["46-80", 1366107000000],
  ["86-12", 1366107600000],
  ["22-7", 1366101000000, 1366115700000, 1366117200000],
  ["98-20", 1366105500000],
  ["32-14", 1366121100000],
  [
    "67-68",
    1366131600000,
    1366136700000,
    1366140000000,
    1366145400000,
    1366146900000,
  ],
  ["49-25", 1366123800000, 1366141200000, 1366150800000],
  ["131-67", 1366112700000],
  [
    "67-53",
    1366109700000,
    1366121100000,
    1366121700000,
    1366129500000,
    1366131300000,
    1366131600000,
    1366133400000,
    1366134300000,
    1366134900000,
    1366138800000,
    1366140300000,
    1366141800000,
    1366146600000,
  ],
  ["67-96", 1366153200000],
  ["67-80", 1366106400000, 1366131900000, 1366141800000, 1366144800000],
  ["7-114", 1366123800000],
  ["22-64", 1366096500000, 1366103400000, 1366130100000],
  ["96-91", 1366101900000, 1366103100000, 1366109100000],
  ["58-81", 1366141800000, 1366144200000],
  ["95-96", 1366110000000],
  [
    "53-67",
    1366074900000,
    1366095000000,
    1366101000000,
    1366113600000,
    1366115700000,
    1366116600000,
    1366116900000,
    1366120200000,
    1366123200000,
    1366126500000,
    1366130100000,
    1366134300000,
    1366138500000,
    1366142400000,
    1366143000000,
    1366149000000,
    1366152900000,
  ],
  ["40-72", 1366097100000],
  ["25-11", 1366106400000],
  ["98-94", 1366106700000, 1366115400000, 1366117500000, 1366130400000],
  ["112-54", 1366121700000],
  ["51-4", 1366113300000, 1366131900000],
  ["89-76", 1366105500000],
  ["64-31", 1366114800000],
  ["74-89", 1366130700000],
  [
    "80-67",
    1366119900000,
    1366134300000,
    1366137600000,
    1366140300000,
    1366142400000,
    1366148100000,
  ],
  ["86-32", 1366103400000],
  [
    "70-18",
    1366101900000,
    1366120200000,
    1366133400000,
    1366146900000,
    1366147200000,
  ],
  ["49-48", 1366095300000, 1366102500000],
  ["31-43", 1366115400000, 1366133400000],
  ["62-32", 1366137900000],
  ["99-40", 1366107600000, 1366128900000],
  ["41-3", 1366116000000, 1366116600000, 1366125600000],
  ["73-89", 1366118100000],
  ["53-68", 1366137900000],
  ["32-46", 1366129800000, 1366134300000, 1366142700000],
  ["43-31", 1366095600000, 1366102800000, 1366104000000, 1366117500000],
  ["53-80", 1366122300000, 1366154100000],
  ["43-64", 1366104000000, 1366116000000],
  ["128-80", 1366114200000, 1366146600000],
  ["25-113", 1366096800000],
  ["94-98", 1366107600000, 1366116900000, 1366118100000],
  ["112-64", 1366104900000],
  ["11-14", 1366119000000],
  ["16-25", 1366125300000, 1366139400000, 1366150200000],
  ["68-80", 1366115700000, 1366119300000],
  ["54-21", 1366102200000, 1366112100000, 1366112400000, 1366128600000],
  ["72-113", 1366123200000, 1366131900000],
  ["43-40", 1366117800000, 1366131600000],
  ["48-58", 1366137900000, 1366141800000],
  ["18-74", 1366126500000],
  ["48-49", 1366129500000],
  ["57-46", 1366106100000],
  ["16-48", 1366099500000],
  ["53-33", 1366122000000, 1366142100000],
  ["74-18", 1366095900000, 1366101000000, 1366129500000],
  ["58-6", 1366097400000, 1366107600000],
  ["48-24", 1366101300000],
  ["48-6", 1366098000000, 1366131900000, 1366138500000, 1366140900000],
  ["22-57", 1366137300000, 1366138800000],
  ["41-67", 1366133100000],
  [
    "33-67",
    1366102200000,
    1366105500000,
    1366110300000,
    1366111200000,
    1366112400000,
    1366122600000,
    1366125000000,
    1366133400000,
    1366153500000,
  ],
  ["20-64", 1366097700000, 1366106100000],
  ["6-33", 1366118400000],
  ["72-67", 1366119600000, 1366143600000],
  ["112-4", 1366136100000],
  ["48-111", 1366132200000, 1366132800000, 1366133100000],
  ["14-114", 1366128000000],
  ["10-33", 1366122900000, 1366147200000],
  ["3-11", 1366089600000, 1366108500000],
  ["68-72", 1366096800000],
  ["80-88", 1366121100000, 1366128300000],
  ["16-4", 1366103400000],
  ["6-71", 1366132800000],
  ["14-3", 1366125000000],
  ["80-96", 1366133400000, 1366140000000],
  ["73-29", 1366125000000, 1366140900000],
  ["72-78", 1366134300000],
  ["64-114", 1366112700000, 1366125600000, 1366128300000],
  ["58-22", 1366098300000],
  ["32-22", 1366100400000, 1366131000000],
  ["74-76", 1366119000000, 1366137600000],
  ["49-22", 1366099800000, 1366116900000],
  ["99-114", 1366134300000],
  ["84-72", 1366113000000, 1366122900000, 1366131000000],
  ["96-88", 1366137300000],
  ["112-111", 1366132500000],
  ["14-6", 1366115400000],
  ["49-6", 1366117500000, 1366131300000],
  ["80-6", 1366112700000],
  ["32-131", 1366136700000],
  ["24-44", 1366124400000, 1366124700000, 1366132200000],
  ["49-114", 1366132200000],
  ["67-76", 1366072500000, 1366146900000],
  ["59-48", 1366134300000],
  ["33-9", 1366126800000, 1366135800000, 1366138200000],
  ["7-40", 1366113000000],
  ["96-68", 1366134600000],
  ["4-99", 1366107300000],
  ["98-72", 1366120200000, 1366121700000, 1366134600000],
  ["22-4", 1366125900000, 1366137900000, 1366138800000, 1366142400000],
  ["99-22", 1366123200000],
  ["44-22", 1366135800000],
  ["48-114", 1366128600000, 1366129200000, 1366137000000],
  ["67-16", 1366128900000, 1366131600000, 1366153500000],
  ["91-99", 1366133100000],
  ["3-25", 1366128600000],
  ["80-68", 1366137900000, 1366140000000],
  ["128-6", 1366107000000],
  ["59-57", 1366133700000],
  ["21-68", 1366130700000],
  [
    "64-111",
    1366127400000,
    1366131000000,
    1366131300000,
    1366131600000,
    1366131900000,
    1366132200000,
  ],
  ["48-98", 1366119300000, 1366133400000],
  ["48-54", 1366136700000],
  ["128-113", 1366124400000],
  ["54-48", 1366101300000],
  ["40-16", 1366107000000, 1366132800000],
  ["33-49", 1366116300000],
  ["31-22", 1366092600000, 1366108800000, 1366133100000],
  ["20-98", 1366131000000],
  ["67-88", 1366133400000],
  ["22-81", 1366131900000],
  ["99-43", 1366131900000],
  ["139-141", 1366134900000, 1366136400000],
  ["21-4", 1366136100000],
  ["91-96", 1366104000000, 1366133700000, 1366139700000, 1366143900000],
  ["44-40", 1366105500000, 1366116900000, 1366124100000, 1366131900000],
  ["22-63", 1366120800000, 1366122900000],
  ["53-74", 1366117500000, 1366137300000],
  ["128-16", 1366104900000],
  ["24-20", 1366134600000],
  ["48-4", 1366142700000],
  ["14-131", 1366131900000],
  ["99-89", 1366127700000, 1366134600000],
  ["22-27", 1366130100000, 1366138500000],
  ["64-40", 1366143000000, 1366143300000],
  ["64-43", 1366095000000, 1366113900000],
  ["67-98", 1366136100000],
  ["114-59", 1366114200000],
  ["67-78", 1366136100000],
  ["43-98", 1366116600000, 1366132200000],
  ["80-113", 1366112700000],
  ["21-46", 1366127400000, 1366130100000],
  ["18-9", 1366112100000, 1366112400000],
  ["22-65", 1366121700000, 1366127400000, 1366132200000],
  ["68-131", 1366133100000, 1366140600000],
  ["31-25", 1366114200000, 1366135500000],
  ["21-33", 1366120200000],
  ["48-63", 1366133400000],
  ["131-68", 1366097100000, 1366105200000, 1366122900000],
  ["84-114", 1366130400000],
  ["16-46", 1366107000000, 1366136700000],
  ["58-74", 1366116900000],
  ["46-58", 1366105800000],
  ["54-16", 1366137000000],
  ["72-91", 1366100400000, 1366119900000, 1366136400000],
  ["72-6", 1366132800000],
  ["91-76", 1366134600000, 1366136400000, 1366140900000],
  ["25-22", 1366098600000, 1366101900000, 1366110600000],
  ["22-25", 1366077300000, 1366116000000, 1366132800000, 1366138800000],
  ["113-80", 1366103700000, 1366111500000],
  ["128-95", 1366101000000, 1366116900000],
  ["141-76", 1366101300000],
  ["59-49", 1366095900000],
  ["72-96", 1366137000000, 1366138800000],
  ["48-22", 1366129800000, 1366132200000, 1366134000000, 1366136400000],
  ["54-25", 1366107600000, 1366133400000, 1366138800000, 1366140000000],
  ["40-59", 1366143300000],
  ["6-114", 1366143600000],
  ["59-4", 1366137000000],
  ["40-112", 1366139400000],
  ["11-62", 1366137900000],
  ["76-71", 1366142100000],
  ["22-96", 1366101900000],
  ["9-41", 1366119900000],
  ["29-73", 1366118400000],
  ["54-113", 1366142400000],
  ["67-41", 1366131000000],
  ["33-46", 1366131600000, 1366152000000],
  ["72-99", 1366081200000],
  ["81-40", 1366122300000, 1366122600000],
  ["112-40", 1366134600000, 1366144800000],
  ["112-43", 1366098000000, 1366116300000],
  ["17-70", 1366118700000, 1366142700000],
  ["12-86", 1366144800000],
  ["64-16", 1366138800000],
  ["33-89", 1366131300000],
  ["68-88", 1366130700000, 1366137600000, 1366143900000],
  ["48-53", 1366142400000],
  ["40-99", 1366123800000],
  ["74-67", 1366122900000, 1366123500000, 1366139700000, 1366140300000],
  ["114-20", 1366138200000],
  ["76-67", 1366149900000],
  ["54-46", 1366126800000],
  ["113-6", 1366148700000],
  ["20-24", 1366101300000],
  ["31-96", 1366152900000],
  ["73-15", 1366110000000, 1366144800000],
  [
    "67-33",
    1366124700000,
    1366125000000,
    1366132800000,
    1366136400000,
    1366138200000,
    1366139400000,
    1366141800000,
    1366146600000,
    1366150800000,
  ],
  ["67-131", 1366121400000],
  ["15-17", 1366090800000],
  ["98-40", 1366121400000, 1366131300000, 1366143600000],
  ["16-22", 1366098000000],
  ["43-63", 1366092600000, 1366136100000],
  ["88-46", 1366130700000],
  ["6-11", 1366094700000],
  ["98-67", 1366123800000],
  ["20-84", 1366094100000, 1366097700000, 1366119300000],
  ["98-6", 1366114200000],
  ["20-81", 1366116300000, 1366142100000],
  ["113-9", 1366095000000],
  ["114-14", 1366095300000],
  ["57-22", 1366097700000, 1366099800000, 1366101600000],
  ["98-114", 1366095600000, 1366112400000, 1366130400000],
  ["114-112", 1366095900000, 1366099800000, 1366134600000],
  [
    "54-81",
    1366095300000,
    1366119300000,
    1366125300000,
    1366134300000,
    1366144800000,
  ],
  ["58-113", 1366116600000, 1366121700000],
  ["4-67", 1366105800000],
  ["69-62", 1366116900000],
  ["99-72", 1366136700000],
  ["58-112", 1366098900000, 1366099800000, 1366104300000, 1366114800000],
  ["22-48", 1366125600000],
  ["114-48", 1366096200000, 1366098600000, 1366098900000, 1366099800000],
  ["40-64", 1366095000000, 1366099200000],
  ["25-3", 1366098300000],
  ["98-43", 1366090500000],
  ["49-113", 1366126200000, 1366129500000],
  ["111-22", 1366100700000, 1366101000000, 1366101300000, 1366101600000],
  ["98-48", 1366101300000],
  ["3-32", 1366098000000],
  ["27-12", 1366104900000, 1366107000000],
  ["16-67", 1366101000000, 1366112700000, 1366116300000],
  ["114-99", 1366103100000],
  ["98-12", 1366107900000],
  ["70-17", 1366116900000, 1366137000000],
  ["46-16", 1366133700000],
  ["41-33", 1366102200000],
  ["114-24", 1366106100000],
  ["57-49", 1366101900000],
  ["18-70", 1366100700000, 1366129200000, 1366131900000],
  ["99-62", 1366100100000],
  ["33-128", 1366101600000, 1366107900000],
  ["48-44", 1366121700000],
  ["41-10", 1366107600000, 1366109700000],
  ["44-72", 1366117200000],
  ["9-10", 1366102200000, 1366119600000, 1366127100000],
  ["141-72", 1366097700000],
  ["88-72", 1366099500000],
  ["99-96", 1366132800000],
  ["76-91", 1366103400000, 1366104600000, 1366154100000],
  ["111-98", 1366134000000, 1366149300000],
  ["111-24", 1366100700000],
  ["32-69", 1366117800000],
  ["99-21", 1366128300000],
  ["87-73", 1366102500000],
  ["22-16", 1366133400000, 1366141800000],
  ["16-80", 1366098000000, 1366098900000, 1366105500000],
  ["32-16", 1366072500000, 1366139400000],
  ["128-99", 1366105800000],
  ["111-44", 1366101000000],
  ["8-19", 1366150500000],
  ["6-128", 1366117200000],
  ["22-24", 1366098000000],
  ["89-29", 1366105800000, 1366108800000],
  ["68-49", 1366100400000],
  ["41-9", 1366109700000, 1366116300000, 1366121400000],
  ["111-64", 1366101300000],
  ["111-99", 1366101000000],
  ["24-43", 1366129500000],
  ["86-19", 1366099200000],
  ["113-53", 1366135800000],
  ["68-95", 1366140600000, 1366151400000],
  ["131-76", 1366137900000],
  ["99-16", 1366143000000],
  ["58-53", 1366151100000],
  ["73-87", 1366149600000],
  [
    "16-54",
    1366101900000,
    1366126500000,
    1366138800000,
    1366139100000,
    1366144200000,
  ],
  ["33-21", 1366109400000],
  ["76-73", 1366153500000],
  ["19-68", 1366116600000],
  ["95-80", 1366103700000],
  ["99-4", 1366134000000, 1366135200000],
  ["49-40", 1366134600000],
  ["10-9", 1366134000000],
  ["59-81", 1366131900000],
  ["6-16", 1366099500000, 1366116600000],
  ["99-128", 1366101600000],
  ["17-74", 1366119000000, 1366139700000],
  ["4-51", 1366116300000],
  ["59-7", 1366105200000],
  ["40-20", 1366099800000, 1366113000000, 1366120800000],
  ["15-74", 1366127700000],
  ["11-8", 1366144800000],
  ["22-59", 1366113900000],
  ["53-91", 1366114800000, 1366140900000],
  ["81-44", 1366117500000],
  ["16-33", 1366095300000, 1366116300000],
  ["73-76", 1366138500000],
  ["57-21", 1366129800000],
  ["48-84", 1366114200000],
  ["87-67", 1366113900000],
  ["9-33", 1366139100000, 1366140600000],
  ["24-114", 1366113600000, 1366134900000],
  ["84-48", 1366116300000],
  ["128-74", 1366132200000, 1366133400000],
  ["49-12", 1366127700000],
  ["99-94", 1366128000000],
  ["57-39", 1366126500000],
  ["8-33", 1366097700000],
  ["84-20", 1366124100000, 1366133700000],
  ["18-73", 1366141200000],
  ["12-32", 1366145100000],
  ["73-88", 1366134900000],
  ["32-33", 1366111200000],
  ["78-68", 1366126500000],
  ["91-67", 1366140600000],
  ["58-54", 1366114200000, 1366123800000],
  ["33-41", 1366092300000],
  ["54-53", 1366139700000],
  ["21-57", 1366124700000, 1366131000000],
  ["29-15", 1366128300000],
  ["14-21", 1366130100000],
  ["88-76", 1366099800000, 1366128000000],
  ["80-89", 1366141500000],
  ["31-26", 1366138500000],
  ["12-114", 1366128900000],
  ["62-12", 1366110600000],
  ["21-114", 1366119900000, 1366129500000],
  ["80-114", 1366114800000],
  ["58-52", 1366139100000],
  ["112-58", 1366113900000, 1366131300000, 1366135200000],
  ["84-22", 1366130700000, 1366133100000],
  ["65-22", 1366121400000, 1366122900000, 1366133700000, 1366134000000],
  ["62-69", 1366113000000, 1366130400000],
  ["43-39", 1366132200000],
  ["33-69", 1366099500000],
  ["26-12", 1366112100000],
  ["32-26", 1366130400000],
  ["39-57", 1366110900000, 1366139100000, 1366140000000],
  ["33-52", 1366108200000],
  [
    "22-111",
    1366103400000,
    1366130700000,
    1366131000000,
    1366132500000,
    1366133400000,
  ],
  ["42-41", 1366127400000],
  ["46-39", 1366101300000],
  ["42-22", 1366133400000],
  ["64-4", 1366132200000],
  ["64-98", 1366137000000],
  ["59-39", 1366133100000, 1366136700000, 1366141200000],
  ["68-78", 1366149300000],
  ["54-27", 1366129200000],
  ["80-128", 1366124400000],
  ["43-6", 1366130700000, 1366131000000, 1366146000000],
  ["131-32", 1366132800000],
  ["29-68", 1366114500000],
  ["67-95", 1366139100000],
  ["112-25", 1366140600000, 1366141500000],
  ["64-81", 1366131900000],
  ["6-43", 1366135800000, 1366144500000],
  ["112-20", 1366134300000, 1366135800000],
  ["113-98", 1366092300000],
  ["128-4", 1366132500000],
  ["7-54", 1366113600000],
  ["16-26", 1366131900000],
  ["80-111", 1366131600000],
  ["88-139", 1366102200000],
  ["44-111", 1366132500000],
  ["43-111", 1366131600000],
  ["81-58", 1366147800000],
  ["46-68", 1366136700000],
  ["81-49", 1366097100000, 1366115100000],
  ["22-53", 1366134000000],
  ["22-26", 1366133100000, 1366137300000, 1366138800000],
  ["67-99", 1366122300000],
  ["128-68", 1366128600000, 1366135500000],
  ["53-58", 1366138500000],
  ["20-16", 1366099200000, 1366130100000],
  ["113-11", 1366121100000],
  ["128-59", 1366134600000],
  ["33-10", 1366119600000, 1366143300000],
  ["52-67", 1366123500000],
  [
    "67-74",
    1366109100000,
    1366115100000,
    1366115700000,
    1366140300000,
    1366145100000,
  ],
  ["6-94", 1366111800000, 1366115400000],
  ["69-19", 1366092300000, 1366099500000],
  ["10-41", 1366122900000, 1366134900000, 1366137300000, 1366147500000],
  ["33-68", 1366133400000],
  ["12-26", 1366117200000],
  ["26-46", 1366119600000],
  ["89-74", 1366112400000, 1366139100000],
  ["33-80", 1366114500000, 1366140000000],
  ["21-52", 1366116900000],
  ["70-76", 1366140900000],
  ["80-33", 1366101600000, 1366142400000],
  ["74-17", 1366124100000, 1366146600000],
  ["73-67", 1366130100000],
  ["18-17", 1366123200000],
  ["16-39", 1366097100000, 1366100700000, 1366108200000],
  ["67-26", 1366149300000, 1366150200000],
  ["73-8", 1366130100000, 1366146900000],
  ["72-98", 1366120800000],
  ["128-53", 1366133700000],
  ["89-139", 1366131300000],
  ["113-46", 1366140600000],
  ["21-39", 1366117200000, 1366128900000, 1366134000000],
  ["68-17", 1366099500000],
  ["11-9", 1366102500000],
  ["10-131", 1366133100000, 1366140600000],
  ["52-113", 1366110600000, 1366118700000],
  ["52-58", 1366118400000, 1366138200000],
  ["74-68", 1366139700000],
  ["80-22", 1366134900000],
  ["40-98", 1366137000000, 1366139100000],
  ["46-26", 1366138500000],
  ["53-113", 1366094100000, 1366098900000],
  ["68-33", 1366102500000],
  ["67-91", 1366134600000, 1366140300000],
  ["33-32", 1366111200000],
  ["74-133", 1366109100000, 1366110900000],
  ["139-71", 1366147500000],
  ["114-21", 1366099200000],
  ["17-62", 1366095000000],
  ["16-128", 1366101000000],
  ["39-21", 1366113900000, 1366119000000],
  ["26-48", 1366101600000, 1366104900000],
  ["12-11", 1366089900000],
  ["114-42", 1366098000000],
  ["26-21", 1366098600000],
  ["8-11", 1366100700000],
  [
    "26-22",
    1366098300000,
    1366100400000,
    1366101000000,
    1366101600000,
    1366118700000,
    1366131600000,
  ],
  ["64-6", 1366132500000, 1366133100000],
  ["26-32", 1366133700000],
  ["114-12", 1366098300000],
  ["139-95", 1366103700000],
  ["114-26", 1366098900000],
  ["76-112", 1366096800000],
  ["52-33", 1366108800000, 1366118100000, 1366137000000, 1366143000000],
  ["53-22", 1366098300000],
  ["68-53", 1366120800000],
  ["43-112", 1366113000000, 1366132200000],
  ["26-112", 1366096500000, 1366100700000, 1366103400000],
  ["53-54", 1366097400000],
  ["39-42", 1366108500000, 1366132800000],
  ["111-88", 1366101600000],
  ["111-49", 1366100700000],
  ["25-43", 1366101600000],
  ["49-52", 1366095000000],
  ["58-48", 1366097700000, 1366101900000],
  ["86-99", 1366098000000, 1366105200000],
  ["16-52", 1366118400000, 1366143300000],
  ["69-67", 1366105200000],
  ["111-21", 1366102500000],
  ["39-16", 1366090800000, 1366101600000, 1366134600000],
  ["58-16", 1366153200000],
  ["6-14", 1366101600000],
  ["95-81", 1366101900000],
  ["39-14", 1366110300000],
  ["113-16", 1366137300000],
  ["69-74", 1366102500000],
  ["22-128", 1366130100000],
  ["4-64", 1366137600000],
  ["8-22", 1366098300000],
  ["52-21", 1366109100000, 1366114200000],
  ["42-52", 1366109700000, 1366141200000],
  ["86-84", 1366105500000],
  ["16-12", 1366131000000],
  ["54-49", 1366123200000, 1366123500000],
  ["21-32", 1366093500000],
  ["63-64", 1366100400000, 1366109100000],
  ["74-113", 1366131600000],
  ["84-44", 1366105200000, 1366109700000],
  ["98-99", 1366099800000, 1366130700000],
  ["33-54", 1366108800000, 1366131000000],
  ["21-9", 1366099800000, 1366105500000],
  ["99-80", 1366123500000],
  ["95-128", 1366113900000, 1366131300000],
  ["57-52", 1366102200000],
  ["48-64", 1366102200000],
  ["131-88", 1366141800000],
  ["62-14", 1366108200000],
  ["76-128", 1366101600000, 1366125000000],
  ["43-54", 1366113000000, 1366132200000],
  ["68-76", 1366121700000],
  ["54-33", 1366114200000],
  ["73-68", 1366109700000, 1366118100000],
  ["9-113", 1366139100000],
  ["49-54", 1366121100000],
  ["54-58", 1366104900000],
  ["76-53", 1366098000000, 1366135200000],
  ["113-33", 1366136700000],
  ["33-53", 1366136100000],
  ["99-58", 1366114800000, 1366115700000],
  ["99-53", 1366144200000],
  ["80-11", 1366110900000],
  ["52-22", 1366100700000],
  ["44-98", 1366114200000],
  ["48-25", 1366138500000],
  ["67-113", 1366154700000],
  ["54-99", 1366106700000],
  ["18-128", 1366101900000],
  ["39-3", 1366132500000],
  [
    "54-52",
    1366102500000,
    1366116300000,
    1366118100000,
    1366131000000,
    1366136100000,
    1366138200000,
  ],
  ["99-39", 1366136400000],
  ["80-53", 1366136400000],
  ["27-131", 1366110900000, 1366120500000],
  ["68-25", 1366139100000],
  ["6-113", 1366113300000],
  ["25-26", 1366117200000, 1366136100000],
  ["69-11", 1366118100000],
  ["6-20", 1366123200000],
  ["20-48", 1366107900000],
  ["72-128", 1366108800000, 1366117500000],
  ["44-42", 1366122000000],
  ["6-80", 1366099200000],
  ["98-113", 1366107300000, 1366108800000],
  ["113-10", 1366095900000, 1366099200000, 1366110300000],
  ["54-4", 1366140000000],
  ["25-52", 1366127100000, 1366147800000],
  ["58-17", 1366125600000],
  ["99-48", 1366107300000, 1366137600000],
  ["99-32", 1366124100000, 1366135200000],
  ["12-19", 1366101300000],
  ["44-114", 1366130100000],
  ["72-75", 1366138500000],
  ["31-12", 1366128900000],
  ["48-26", 1366116900000, 1366125300000],
  ["74-88", 1366142700000],
  ["72-16", 1366127400000, 1366130100000],
  ["51-22", 1366100100000],
  ["26-81", 1366115400000, 1366144200000],
  ["75-74", 1366115100000, 1366136100000, 1366144500000],
  ["54-42", 1366121100000, 1366138500000, 1366146600000],
  ["81-39", 1366146000000],
  ["113-87", 1366139400000],
  ["86-33", 1366097400000],
  ["42-14", 1366122900000],
  ["75-68", 1366121700000, 1366136700000, 1366146000000],
  ["46-21", 1366127700000, 1366133700000, 1366142100000],
  ["112-42", 1366121100000, 1366135800000],
  ["67-111", 1366131600000],
  ["31-58", 1366111500000],
  ["99-75", 1366128900000],
  ["80-19", 1366134600000],
  ["25-4", 1366136400000],
  ["42-98", 1366111500000],
  ["112-26", 1366132800000, 1366134000000],
  ["48-128", 1366096800000],
  ["91-114", 1366134300000],
  ["59-46", 1366140600000],
  ["31-40", 1366134000000, 1366143600000],
  ["3-14", 1366118700000, 1366134900000],
  ["64-63", 1366122600000],
  ["88-114", 1366130700000],
  ["111-20", 1366101600000, 1366124100000],
  ["90-16", 1366149900000],
  ["52-27", 1366103700000],
  ["44-6", 1366140300000],
  ["99-31", 1366104000000, 1366122600000, 1366133700000],
  ["91-22", 1366134600000],
  ["21-69", 1366113300000],
  ["11-46", 1366135800000],
  ["11-21", 1366140300000],
  ["9-114", 1366133700000],
  ["4-113", 1366108500000],
  ["67-57", 1366133400000, 1366134900000, 1366146600000],
  ["26-111", 1366131000000],
  ["51-27", 1366136100000],
  ["94-114", 1366131000000, 1366146000000],
  ["67-75", 1366113300000, 1366121100000],
  ["128-141", 1366135200000],
  ["68-139", 1366136100000],
  ["62-17", 1366136700000],
  ["22-113", 1366095600000, 1366130700000],
  ["64-44", 1366131900000],
  ["70-19", 1366104900000],
  ["10-52", 1366139400000],
  ["90-95", 1366137900000],
  ["33-113", 1366125300000],
  ["84-75", 1366136700000],
  ["53-46", 1366137600000],
  ["4-42", 1366137000000],
  ["41-69", 1366112700000],
  ["91-53", 1366142700000, 1366154700000],
  ["26-4", 1366151100000],
  ["128-139", 1366129200000],
  ["4-63", 1366133400000],
  ["14-4", 1366141800000],
  ["74-75", 1366120800000, 1366133100000],
  ["75-21", 1366102800000],
  ["132-76", 1366115700000, 1366137000000],
  ["40-94", 1366134300000],
  ["46-11", 1366102800000],
  ["113-111", 1366133400000],
  ["20-40", 1366136100000, 1366138200000],
  ["112-39", 1366130400000],
  ["84-64", 1366115400000],
  ["46-53", 1366124700000],
  ["46-74", 1366137900000],
  ["98-42", 1366118700000],
  ["10-69", 1366112700000, 1366153200000],
  ["41-53", 1366133100000],
  ["75-96", 1366107600000],
  ["32-19", 1366130100000, 1366141800000],
  ["10-87", 1366145700000],
  ["139-88", 1366122900000, 1366135500000],

// ...truncated 884 lines
<!doctype html>
<html>
  <head>
    <link rel="stylesheet" href="@ci/theme/mw/css/examples.css" />
  </head>
  <body>
    <div style="display: flex; flex-direction: column; height: 100vh">
      <div id="mw" style="flex: 1"></div>
      <div id="timebar" style="height: 200px"></div>
    </div>
    <script type="module" src="./code.js"></script>
  </body>
</html>
import React, { useState } from "react";
import { createRoot } from "react-dom/client";
import { MapWeave } from "mapweave/react/mapbox";
import { NetworkLayer } from "mapweave/react/layers";
import { TimeBar } from "regraph";

import { linksData, networkData } from "./data";

const mapWeaveOptions = { accessToken: VITE_MAPBOX_API_KEY };

const networkLayerOptions = {
  links: {
    bundling: { enabled: true },
  },
  proximityCombine: { enabled: true },
};

const timeBarOptions = {
  backgroundColor: "#242c32",
  labels: { color: "#e5e8eb" },
  scale: { hoverColor: "#242c32" },
  sliders: { color: "rgba(36, 44, 50, 0.8)" },
  style: { color: "white" },
};

const timeBarItems = Object.fromEntries(
  linksData.map(([id, ...times]) => [id, { times }]),
);

function Demo() {
  const [timeFilterRange, setTimeFilterRange] = useState(null);

  return (
    <div style={{ display: "flex", flexDirection: "column", height: "100vh" }}>
      <MapWeave options={mapWeaveOptions}>
        <NetworkLayer
          data={networkData}
          options={{ timeFilterRange, ...networkLayerOptions }}
        />
      </MapWeave>
      <TimeBar
        style={{ height: "200px" }}
        items={timeBarItems}
        mode="smooth"
        options={timeBarOptions}
        onChange={({ range }) => setTimeFilterRange(range)}
      ></TimeBar>
    </div>
  );
}

const root = createRoot(document.getElementById("mw"));
root.render(<Demo />);
export const nodesData = [
  ["3", 42.340021, -71.100812],
  ["4", 42.345392, -71.069616],
  ["6", 42.361285, -71.06514],
  ["7", 42.353412, -71.044624],
  ["8", 42.353334, -71.137313],
  ["9", 42.351313, -71.116174],
  ["10", 42.350075, -71.105884],
  ["11", 42.338629, -71.1065],
  ["12", 42.335911, -71.088496],
  ["14", 42.337171, -71.102797],
  ["15", 42.361667, -71.13802],
  ["16", 42.347433, -71.076163],
  ["17", 42.365074, -71.119581],
  ["18", 42.36337, -71.129791],
  ["19", 42.347527, -71.105828],
  ["20", 42.35977, -71.051601],
  ["21", 42.345959, -71.082578],
  ["22", 42.352175, -71.055547],
  ["24", 42.351821, -71.045461],
  ["25", 42.341332, -71.076847],
  ["26", 42.341522, -71.068922],
  ["27", 42.331567, -71.094734],
  ["29", 42.363732, -71.124565],
  ["30", 42.334073, -71.105221],
  ["31", 42.348833, -71.041747],
  ["32", 42.343912, -71.102221],
  ["33", 42.349046, -71.096831],
  ["39", 42.338623, -71.074182],
  ["40", 42.363871, -71.050877],
  ["41", 42.352261, -71.123831],
  ["42", 42.352096, -71.070378],
  ["43", 42.357143, -71.050699],
  ["44", 42.360583, -71.056868],
  ["45", 42.344763, -71.09788],
  ["46", 42.343864, -71.085918],
  ["47", 42.362811, -71.056067],
  ["48", 42.356755, -71.055407],
  ["49", 42.351146, -71.066289],
  ["51", 42.3348756, -71.0790969],
  ["52", 42.348717, -71.085954],
  ["53", 42.350851, -71.089886],
  ["54", 42.354979, -71.063348],
  ["55", 42.347265, -71.088088],
  ["57", 42.340799, -71.081572],
  ["58", 42.355596, -71.07278],
  ["59", 42.351356, -71.059367],
  ["62", 42.340299, -71.109927],
  ["63", 42.344023, -71.057054],
  ["64", 42.3511, -71.0496],
  ["65", 42.3475, -71.0441],
  ["66", 42.348607, -71.13401],
  ["67", 42.3581, -71.093198],
  ["68", 42.36507, -71.1031],
  ["69", 42.341598, -71.123338],
  ["70", 42.372244, -71.121851],
  ["71", 42.383405, -71.107593],
  ["72", 42.362613, -71.084105],
  ["73", 42.373231, -71.120886],
  ["74", 42.373268, -71.118579],
  ["75", 42.363562, -71.10042],
  ["76", 42.366426, -71.105495],
  ["77", 42.386428, -71.096413],
  ["78", 42.379637, -71.095319],
  ["79", 42.378551, -71.106541],
  ["80", 42.362429, -71.090188],
  ["81", 42.352409, -71.062679],
  ["83", 42.325941, -71.065928],
  ["84", 42.366981, -71.076472],
  ["86", 42.332799, -71.116205],
  ["87", 42.366621, -71.114214],
  ["88", 42.374035, -71.101427],
  ["89", 42.379011, -71.119945],
  ["90", 42.3707, -71.07711],
  ["91", 42.366277, -71.09169],
  ["94", 42.375603, -71.064608],
  ["95", 42.372969, -71.094445],
  ["96", 42.373379, -71.111075],
  ["98", 42.371848, -71.060292],
  ["99", 42.35892, -71.057629],
  ["100", 42.328654, -71.084198],
  ["105", 42.325333, -71.075354],
  ["111", 42.366222, -71.059914],
  ["112", 42.355402, -71.058087],
  ["113", 42.36069, -71.070884],
  ["114", 42.365942, -71.060515],
  ["127", 42.346563, -71.128374],
  ["128", 42.362457, -71.08497],
  ["130", 42.376369, -71.114025],
  ["131", 42.356954, -71.113687],
  ["132", 42.377945, -71.116865],
  ["133", 42.380287, -71.125107],
  ["138", 42.385582, -71.113341],
  ["139", 42.396969, -71.123024],
  ["140", 42.400146, -71.112708],
  ["141", 42.400877, -71.116772],
];

export const linksData = [
  ["58-70", 1366143300000],
  ["16-14", 1366107000000],
  ["22-43", 1366106100000, 1366127100000, 1366131000000],
  ["64-22", 1366129200000, 1366132800000, 1366134000000, 1366137600000],
  [
    "40-22",
    1366095600000,
    1366096200000,
    1366098900000,
    1366100400000,
    1366102800000,
    1366103700000,
    1366105200000,
    1366109100000,
    1366114200000,
    1366123500000,
    1366129200000,
    1366130100000,
    1366143300000,
  ],
  ["114-44", 1366103700000],
  ["48-40", 1366097100000, 1366115100000, 1366130100000, 1366137000000],
  ["14-32", 1366119600000, 1366133400000, 1366133700000, 1366139700000],
  ["98-44", 1366118700000, 1366125300000],
  ["68-67", 1366122000000, 1366140900000, 1366141500000],
  ["46-67", 1366099500000, 1366110000000, 1366152600000],
  ["25-59", 1366101000000, 1366117500000],
  [
    "22-40",
    1366098300000,
    1366103400000,
    1366112400000,
    1366135500000,
    1366143600000,
  ],
  ["49-81", 1366119300000, 1366141500000],
  ["94-64", 1366098000000],
  ["16-62", 1366098300000],
  ["114-43", 1366098000000, 1366103100000],
  ["113-49", 1366103700000, 1366139400000],
  [
    "114-64",
    1366093500000,
    1366093800000,
    1366094100000,
    1366094700000,
    1366095000000,
    1366098000000,
    1366098300000,
    1366099200000,
    1366116000000,
  ],
  ["112-48", 1366099200000, 1366111200000],
  ["76-17", 1366102800000],
  ["43-114", 1366130400000, 1366135200000, 1366143300000],
  ["40-24", 1366098900000, 1366102800000],
  ["40-48", 1366092000000, 1366098600000, 1366099500000, 1366099800000],
  ["32-11", 1366114800000],
  ["87-11", 1366097100000, 1366099800000],
  ["57-99", 1366099800000],
  ["25-16", 1366097400000, 1366137300000],
  ["89-99", 1366099200000],
  ["88-96", 1366099500000, 1366114500000],
  ["58-72", 1366108200000, 1366135800000],
  ["22-31", 1366100700000, 1366133400000],
  ["68-74", 1366117500000, 1366137600000, 1366138500000],
  [
    "40-43",
    1366095900000,
    1366101300000,
    1366103700000,
    1366113600000,
    1366141800000,
  ],
  ["114-72", 1366093800000, 1366107600000],
  ["40-31", 1366097400000, 1366098600000, 1366104900000],
  ["114-22", 1366095600000, 1366100100000, 1366104900000, 1366128600000],
  ["141-139", 1366142100000],
  ["57-16", 1366099500000],
  ["133-74", 1366095600000, 1366107600000, 1366116900000],
  ["99-6", 1366115400000, 1366116000000],
  ["94-40", 1366098900000],
  ["43-24", 1366100700000, 1366105800000, 1366108800000],
  ["71-6", 1366098600000],
  ["113-72", 1366140300000],
  ["57-59", 1366146900000],
  ["18-29", 1366135500000],
  ["99-91", 1366102200000],
  ["81-22", 1366098300000, 1366107300000, 1366116600000, 1366139400000],
  ["21-54", 1366118400000, 1366128300000],
  ["78-72", 1366099200000],
  ["21-64", 1366101300000],
  ["6-72", 1366101000000],
  ["29-18", 1366101000000],
  ["88-84", 1366104300000],
  ["4-22", 1366092900000, 1366095000000, 1366101000000],
  ["87-70", 1366100100000, 1366115700000],
  ["63-22", 1366114800000],
  [
    "6-48",
    1366095900000,
    1366100400000,
    1366101900000,
    1366102800000,
    1366107300000,
  ],
  ["25-31", 1366119300000],
  ["21-22", 1366127100000],
  ["4-48", 1366096200000],
  ["88-80", 1366101000000],
  ["43-22", 1366134600000, 1366138200000],
  ["25-54", 1366101900000, 1366115700000, 1366134300000],
  ["128-67", 1366123800000, 1366149300000],
  ["40-44", 1366101900000, 1366120500000, 1366122900000],
  ["24-48", 1366105500000],
  ["86-80", 1366125300000],
  [
    "20-22",
    1366099800000,
    1366101600000,
    1366101900000,
    1366127700000,
    1366130400000,
    1366131000000,
    1366133400000,
  ],
  ["77-81", 1366102800000],
  ["17-32", 1366101000000],
  ["88-68", 1366102200000],
  [
    "6-22",
    1366102200000,
    1366114800000,
    1366130100000,
    1366132200000,
    1366136100000,
  ],
  ["73-18", 1366100400000],
  ["22-99", 1366101300000],
  ["111-53", 1366136400000],
  ["41-48", 1366105500000],
  ["111-59", 1366120800000],
  ["89-73", 1366137000000],
  [
    "22-6",
    1366093800000,
    1366096800000,
    1366097700000,
    1366098300000,
    1366101300000,
    1366140000000,
  ],
  ["114-40", 1366111200000, 1366119000000],
  ["113-41", 1366130400000],
  ["72-84", 1366098600000, 1366120500000],
  ["67-128", 1366098600000, 1366116900000, 1366145400000, 1366148400000],
  ["44-7", 1366142700000],
  ["98-58", 1366100400000],
  ["84-59", 1366104000000],
  ["22-114", 1366126500000, 1366127400000, 1366131000000, 1366136400000],
  ["76-80", 1366105500000],
  ["112-114", 1366127400000],
  ["40-49", 1366105800000],
  ["76-74", 1366100100000, 1366104300000, 1366121400000],
  ["63-48", 1366104000000],
  ["11-32", 1366119600000, 1366134600000],
  ["78-67", 1366105800000],
  ["78-76", 1366104000000, 1366130700000],
  ["114-98", 1366102200000, 1366107600000],
  ["46-80", 1366107000000],
  ["86-12", 1366107600000],
  ["22-7", 1366101000000, 1366115700000, 1366117200000],
  ["98-20", 1366105500000],
  ["32-14", 1366121100000],
  [
    "67-68",
    1366131600000,
    1366136700000,
    1366140000000,
    1366145400000,
    1366146900000,
  ],
  ["49-25", 1366123800000, 1366141200000, 1366150800000],
  ["131-67", 1366112700000],
  [
    "67-53",
    1366109700000,
    1366121100000,
    1366121700000,
    1366129500000,
    1366131300000,
    1366131600000,
    1366133400000,
    1366134300000,
    1366134900000,
    1366138800000,
    1366140300000,
    1366141800000,
    1366146600000,
  ],
  ["67-96", 1366153200000],
  ["67-80", 1366106400000, 1366131900000, 1366141800000, 1366144800000],
  ["7-114", 1366123800000],
  ["22-64", 1366096500000, 1366103400000, 1366130100000],
  ["96-91", 1366101900000, 1366103100000, 1366109100000],
  ["58-81", 1366141800000, 1366144200000],
  ["95-96", 1366110000000],
  [
    "53-67",
    1366074900000,
    1366095000000,
    1366101000000,
    1366113600000,
    1366115700000,
    1366116600000,
    1366116900000,
    1366120200000,
    1366123200000,
    1366126500000,
    1366130100000,
    1366134300000,
    1366138500000,
    1366142400000,
    1366143000000,
    1366149000000,
    1366152900000,
  ],
  ["40-72", 1366097100000],
  ["25-11", 1366106400000],
  ["98-94", 1366106700000, 1366115400000, 1366117500000, 1366130400000],
  ["112-54", 1366121700000],
  ["51-4", 1366113300000, 1366131900000],
  ["89-76", 1366105500000],
  ["64-31", 1366114800000],
  ["74-89", 1366130700000],
  [
    "80-67",
    1366119900000,
    1366134300000,
    1366137600000,
    1366140300000,
    1366142400000,
    1366148100000,
  ],
  ["86-32", 1366103400000],
  [
    "70-18",
    1366101900000,
    1366120200000,
    1366133400000,
    1366146900000,
    1366147200000,
  ],
  ["49-48", 1366095300000, 1366102500000],
  ["31-43", 1366115400000, 1366133400000],
  ["62-32", 1366137900000],
  ["99-40", 1366107600000, 1366128900000],
  ["41-3", 1366116000000, 1366116600000, 1366125600000],
  ["73-89", 1366118100000],
  ["53-68", 1366137900000],
  ["32-46", 1366129800000, 1366134300000, 1366142700000],
  ["43-31", 1366095600000, 1366102800000, 1366104000000, 1366117500000],
  ["53-80", 1366122300000, 1366154100000],
  ["43-64", 1366104000000, 1366116000000],
  ["128-80", 1366114200000, 1366146600000],
  ["25-113", 1366096800000],
  ["94-98", 1366107600000, 1366116900000, 1366118100000],
  ["112-64", 1366104900000],
  ["11-14", 1366119000000],
  ["16-25", 1366125300000, 1366139400000, 1366150200000],
  ["68-80", 1366115700000, 1366119300000],
  ["54-21", 1366102200000, 1366112100000, 1366112400000, 1366128600000],
  ["72-113", 1366123200000, 1366131900000],
  ["43-40", 1366117800000, 1366131600000],
  ["48-58", 1366137900000, 1366141800000],
  ["18-74", 1366126500000],
  ["48-49", 1366129500000],
  ["57-46", 1366106100000],
  ["16-48", 1366099500000],
  ["53-33", 1366122000000, 1366142100000],
  ["74-18", 1366095900000, 1366101000000, 1366129500000],
  ["58-6", 1366097400000, 1366107600000],
  ["48-24", 1366101300000],
  ["48-6", 1366098000000, 1366131900000, 1366138500000, 1366140900000],
  ["22-57", 1366137300000, 1366138800000],
  ["41-67", 1366133100000],
  [
    "33-67",
    1366102200000,
    1366105500000,
    1366110300000,
    1366111200000,
    1366112400000,
    1366122600000,
    1366125000000,
    1366133400000,
    1366153500000,
  ],
  ["20-64", 1366097700000, 1366106100000],
  ["6-33", 1366118400000],
  ["72-67", 1366119600000, 1366143600000],
  ["112-4", 1366136100000],
  ["48-111", 1366132200000, 1366132800000, 1366133100000],
  ["14-114", 1366128000000],
  ["10-33", 1366122900000, 1366147200000],
  ["3-11", 1366089600000, 1366108500000],
  ["68-72", 1366096800000],
  ["80-88", 1366121100000, 1366128300000],
  ["16-4", 1366103400000],
  ["6-71", 1366132800000],
  ["14-3", 1366125000000],
  ["80-96", 1366133400000, 1366140000000],
  ["73-29", 1366125000000, 1366140900000],
  ["72-78", 1366134300000],
  ["64-114", 1366112700000, 1366125600000, 1366128300000],
  ["58-22", 1366098300000],
  ["32-22", 1366100400000, 1366131000000],
  ["74-76", 1366119000000, 1366137600000],
  ["49-22", 1366099800000, 1366116900000],
  ["99-114", 1366134300000],
  ["84-72", 1366113000000, 1366122900000, 1366131000000],
  ["96-88", 1366137300000],
  ["112-111", 1366132500000],
  ["14-6", 1366115400000],
  ["49-6", 1366117500000, 1366131300000],
  ["80-6", 1366112700000],
  ["32-131", 1366136700000],
  ["24-44", 1366124400000, 1366124700000, 1366132200000],
  ["49-114", 1366132200000],
  ["67-76", 1366072500000, 1366146900000],
  ["59-48", 1366134300000],
  ["33-9", 1366126800000, 1366135800000, 1366138200000],
  ["7-40", 1366113000000],
  ["96-68", 1366134600000],
  ["4-99", 1366107300000],
  ["98-72", 1366120200000, 1366121700000, 1366134600000],
  ["22-4", 1366125900000, 1366137900000, 1366138800000, 1366142400000],
  ["99-22", 1366123200000],
  ["44-22", 1366135800000],
  ["48-114", 1366128600000, 1366129200000, 1366137000000],
  ["67-16", 1366128900000, 1366131600000, 1366153500000],
  ["91-99", 1366133100000],
  ["3-25", 1366128600000],
  ["80-68", 1366137900000, 1366140000000],
  ["128-6", 1366107000000],
  ["59-57", 1366133700000],
  ["21-68", 1366130700000],
  [
    "64-111",
    1366127400000,
    1366131000000,
    1366131300000,
    1366131600000,
    1366131900000,
    1366132200000,
  ],
  ["48-98", 1366119300000, 1366133400000],
  ["48-54", 1366136700000],
  ["128-113", 1366124400000],
  ["54-48", 1366101300000],
  ["40-16", 1366107000000, 1366132800000],
  ["33-49", 1366116300000],
  ["31-22", 1366092600000, 1366108800000, 1366133100000],
  ["20-98", 1366131000000],
  ["67-88", 1366133400000],
  ["22-81", 1366131900000],
  ["99-43", 1366131900000],
  ["139-141", 1366134900000, 1366136400000],
  ["21-4", 1366136100000],
  ["91-96", 1366104000000, 1366133700000, 1366139700000, 1366143900000],
  ["44-40", 1366105500000, 1366116900000, 1366124100000, 1366131900000],
  ["22-63", 1366120800000, 1366122900000],
  ["53-74", 1366117500000, 1366137300000],
  ["128-16", 1366104900000],
  ["24-20", 1366134600000],
  ["48-4", 1366142700000],
  ["14-131", 1366131900000],
  ["99-89", 1366127700000, 1366134600000],
  ["22-27", 1366130100000, 1366138500000],
  ["64-40", 1366143000000, 1366143300000],
  ["64-43", 1366095000000, 1366113900000],
  ["67-98", 1366136100000],
  ["114-59", 1366114200000],
  ["67-78", 1366136100000],
  ["43-98", 1366116600000, 1366132200000],
  ["80-113", 1366112700000],
  ["21-46", 1366127400000, 1366130100000],
  ["18-9", 1366112100000, 1366112400000],
  ["22-65", 1366121700000, 1366127400000, 1366132200000],
  ["68-131", 1366133100000, 1366140600000],
  ["31-25", 1366114200000, 1366135500000],
  ["21-33", 1366120200000],
  ["48-63", 1366133400000],
  ["131-68", 1366097100000, 1366105200000, 1366122900000],
  ["84-114", 1366130400000],
  ["16-46", 1366107000000, 1366136700000],
  ["58-74", 1366116900000],
  ["46-58", 1366105800000],
  ["54-16", 1366137000000],
  ["72-91", 1366100400000, 1366119900000, 1366136400000],
  ["72-6", 1366132800000],
  ["91-76", 1366134600000, 1366136400000, 1366140900000],
  ["25-22", 1366098600000, 1366101900000, 1366110600000],
  ["22-25", 1366077300000, 1366116000000, 1366132800000, 1366138800000],
  ["113-80", 1366103700000, 1366111500000],
  ["128-95", 1366101000000, 1366116900000],
  ["141-76", 1366101300000],
  ["59-49", 1366095900000],
  ["72-96", 1366137000000, 1366138800000],
  ["48-22", 1366129800000, 1366132200000, 1366134000000, 1366136400000],
  ["54-25", 1366107600000, 1366133400000, 1366138800000, 1366140000000],
  ["40-59", 1366143300000],
  ["6-114", 1366143600000],
  ["59-4", 1366137000000],
  ["40-112", 1366139400000],
  ["11-62", 1366137900000],
  ["76-71", 1366142100000],
  ["22-96", 1366101900000],
  ["9-41", 1366119900000],
  ["29-73", 1366118400000],
  ["54-113", 1366142400000],
  ["67-41", 1366131000000],
  ["33-46", 1366131600000, 1366152000000],
  ["72-99", 1366081200000],
  ["81-40", 1366122300000, 1366122600000],
  ["112-40", 1366134600000, 1366144800000],
  ["112-43", 1366098000000, 1366116300000],
  ["17-70", 1366118700000, 1366142700000],
  ["12-86", 1366144800000],
  ["64-16", 1366138800000],
  ["33-89", 1366131300000],
  ["68-88", 1366130700000, 1366137600000, 1366143900000],
  ["48-53", 1366142400000],
  ["40-99", 1366123800000],
  ["74-67", 1366122900000, 1366123500000, 1366139700000, 1366140300000],
  ["114-20", 1366138200000],
  ["76-67", 1366149900000],
  ["54-46", 1366126800000],
  ["113-6", 1366148700000],
  ["20-24", 1366101300000],
  ["31-96", 1366152900000],
  ["73-15", 1366110000000, 1366144800000],
  [
    "67-33",
    1366124700000,
    1366125000000,
    1366132800000,
    1366136400000,
    1366138200000,
    1366139400000,
    1366141800000,
    1366146600000,
    1366150800000,
  ],
  ["67-131", 1366121400000],
  ["15-17", 1366090800000],
  ["98-40", 1366121400000, 1366131300000, 1366143600000],
  ["16-22", 1366098000000],
  ["43-63", 1366092600000, 1366136100000],
  ["88-46", 1366130700000],
  ["6-11", 1366094700000],
  ["98-67", 1366123800000],
  ["20-84", 1366094100000, 1366097700000, 1366119300000],
  ["98-6", 1366114200000],
  ["20-81", 1366116300000, 1366142100000],
  ["113-9", 1366095000000],
  ["114-14", 1366095300000],
  ["57-22", 1366097700000, 1366099800000, 1366101600000],
  ["98-114", 1366095600000, 1366112400000, 1366130400000],
  ["114-112", 1366095900000, 1366099800000, 1366134600000],
  [
    "54-81",
    1366095300000,
    1366119300000,
    1366125300000,
    1366134300000,
    1366144800000,
  ],
  ["58-113", 1366116600000, 1366121700000],
  ["4-67", 1366105800000],
  ["69-62", 1366116900000],
  ["99-72", 1366136700000],
  ["58-112", 1366098900000, 1366099800000, 1366104300000, 1366114800000],
  ["22-48", 1366125600000],
  ["114-48", 1366096200000, 1366098600000, 1366098900000, 1366099800000],
  ["40-64", 1366095000000, 1366099200000],
  ["25-3", 1366098300000],
  ["98-43", 1366090500000],
  ["49-113", 1366126200000, 1366129500000],
  ["111-22", 1366100700000, 1366101000000, 1366101300000, 1366101600000],
  ["98-48", 1366101300000],
  ["3-32", 1366098000000],
  ["27-12", 1366104900000, 1366107000000],
  ["16-67", 1366101000000, 1366112700000, 1366116300000],
  ["114-99", 1366103100000],
  ["98-12", 1366107900000],
  ["70-17", 1366116900000, 1366137000000],
  ["46-16", 1366133700000],
  ["41-33", 1366102200000],
  ["114-24", 1366106100000],
  ["57-49", 1366101900000],
  ["18-70", 1366100700000, 1366129200000, 1366131900000],
  ["99-62", 1366100100000],
  ["33-128", 1366101600000, 1366107900000],
  ["48-44", 1366121700000],
  ["41-10", 1366107600000, 1366109700000],
  ["44-72", 1366117200000],
  ["9-10", 1366102200000, 1366119600000, 1366127100000],
  ["141-72", 1366097700000],
  ["88-72", 1366099500000],
  ["99-96", 1366132800000],
  ["76-91", 1366103400000, 1366104600000, 1366154100000],
  ["111-98", 1366134000000, 1366149300000],
  ["111-24", 1366100700000],
  ["32-69", 1366117800000],
  ["99-21", 1366128300000],
  ["87-73", 1366102500000],
  ["22-16", 1366133400000, 1366141800000],
  ["16-80", 1366098000000, 1366098900000, 1366105500000],
  ["32-16", 1366072500000, 1366139400000],
  ["128-99", 1366105800000],
  ["111-44", 1366101000000],
  ["8-19", 1366150500000],
  ["6-128", 1366117200000],
  ["22-24", 1366098000000],
  ["89-29", 1366105800000, 1366108800000],
  ["68-49", 1366100400000],
  ["41-9", 1366109700000, 1366116300000, 1366121400000],
  ["111-64", 1366101300000],
  ["111-99", 1366101000000],
  ["24-43", 1366129500000],
  ["86-19", 1366099200000],
  ["113-53", 1366135800000],
  ["68-95", 1366140600000, 1366151400000],
  ["131-76", 1366137900000],
  ["99-16", 1366143000000],
  ["58-53", 1366151100000],
  ["73-87", 1366149600000],
  [
    "16-54",
    1366101900000,
    1366126500000,
    1366138800000,
    1366139100000,
    1366144200000,
  ],
  ["33-21", 1366109400000],
  ["76-73", 1366153500000],
  ["19-68", 1366116600000],
  ["95-80", 1366103700000],
  ["99-4", 1366134000000, 1366135200000],
  ["49-40", 1366134600000],
  ["10-9", 1366134000000],
  ["59-81", 1366131900000],
  ["6-16", 1366099500000, 1366116600000],
  ["99-128", 1366101600000],
  ["17-74", 1366119000000, 1366139700000],
  ["4-51", 1366116300000],
  ["59-7", 1366105200000],
  ["40-20", 1366099800000, 1366113000000, 1366120800000],
  ["15-74", 1366127700000],
  ["11-8", 1366144800000],
  ["22-59", 1366113900000],
  ["53-91", 1366114800000, 1366140900000],
  ["81-44", 1366117500000],
  ["16-33", 1366095300000, 1366116300000],
  ["73-76", 1366138500000],
  ["57-21", 1366129800000],
  ["48-84", 1366114200000],
  ["87-67", 1366113900000],
  ["9-33", 1366139100000, 1366140600000],
  ["24-114", 1366113600000, 1366134900000],
  ["84-48", 1366116300000],
  ["128-74", 1366132200000, 1366133400000],
  ["49-12", 1366127700000],
  ["99-94", 1366128000000],
  ["57-39", 1366126500000],
  ["8-33", 1366097700000],
  ["84-20", 1366124100000, 1366133700000],
  ["18-73", 1366141200000],
  ["12-32", 1366145100000],
  ["73-88", 1366134900000],
  ["32-33", 1366111200000],
  ["78-68", 1366126500000],
  ["91-67", 1366140600000],
  ["58-54", 1366114200000, 1366123800000],
  ["33-41", 1366092300000],
  ["54-53", 1366139700000],
  ["21-57", 1366124700000, 1366131000000],
  ["29-15", 1366128300000],
  ["14-21", 1366130100000],
  ["88-76", 1366099800000, 1366128000000],
  ["80-89", 1366141500000],
  ["31-26", 1366138500000],
  ["12-114", 1366128900000],
  ["62-12", 1366110600000],
  ["21-114", 1366119900000, 1366129500000],
  ["80-114", 1366114800000],
  ["58-52", 1366139100000],
  ["112-58", 1366113900000, 1366131300000, 1366135200000],
  ["84-22", 1366130700000, 1366133100000],
  ["65-22", 1366121400000, 1366122900000, 1366133700000, 1366134000000],
  ["62-69", 1366113000000, 1366130400000],
  ["43-39", 1366132200000],
  ["33-69", 1366099500000],
  ["26-12", 1366112100000],
  ["32-26", 1366130400000],
  ["39-57", 1366110900000, 1366139100000, 1366140000000],
  ["33-52", 1366108200000],
  [
    "22-111",
    1366103400000,
    1366130700000,
    1366131000000,
    1366132500000,
    1366133400000,
  ],
  ["42-41", 1366127400000],
  ["46-39", 1366101300000],
  ["42-22", 1366133400000],
  ["64-4", 1366132200000],
  ["64-98", 1366137000000],
  ["59-39", 1366133100000, 1366136700000, 1366141200000],
  ["68-78", 1366149300000],
  ["54-27", 1366129200000],
  ["80-128", 1366124400000],
  ["43-6", 1366130700000, 1366131000000, 1366146000000],
  ["131-32", 1366132800000],
  ["29-68", 1366114500000],
  ["67-95", 1366139100000],
  ["112-25", 1366140600000, 1366141500000],
  ["64-81", 1366131900000],
  ["6-43", 1366135800000, 1366144500000],
  ["112-20", 1366134300000, 1366135800000],
  ["113-98", 1366092300000],
  ["128-4", 1366132500000],
  ["7-54", 1366113600000],
  ["16-26", 1366131900000],
  ["80-111", 1366131600000],
  ["88-139", 1366102200000],
  ["44-111", 1366132500000],
  ["43-111", 1366131600000],
  ["81-58", 1366147800000],
  ["46-68", 1366136700000],
  ["81-49", 1366097100000, 1366115100000],
  ["22-53", 1366134000000],
  ["22-26", 1366133100000, 1366137300000, 1366138800000],
  ["67-99", 1366122300000],
  ["128-68", 1366128600000, 1366135500000],
  ["53-58", 1366138500000],
  ["20-16", 1366099200000, 1366130100000],
  ["113-11", 1366121100000],
  ["128-59", 1366134600000],
  ["33-10", 1366119600000, 1366143300000],
  ["52-67", 1366123500000],
  [
    "67-74",
    1366109100000,
    1366115100000,
    1366115700000,
    1366140300000,
    1366145100000,
  ],
  ["6-94", 1366111800000, 1366115400000],
  ["69-19", 1366092300000, 1366099500000],
  ["10-41", 1366122900000, 1366134900000, 1366137300000, 1366147500000],
  ["33-68", 1366133400000],
  ["12-26", 1366117200000],
  ["26-46", 1366119600000],
  ["89-74", 1366112400000, 1366139100000],
  ["33-80", 1366114500000, 1366140000000],
  ["21-52", 1366116900000],
  ["70-76", 1366140900000],
  ["80-33", 1366101600000, 1366142400000],
  ["74-17", 1366124100000, 1366146600000],
  ["73-67", 1366130100000],
  ["18-17", 1366123200000],
  ["16-39", 1366097100000, 1366100700000, 1366108200000],
  ["67-26", 1366149300000, 1366150200000],
  ["73-8", 1366130100000, 1366146900000],
  ["72-98", 1366120800000],
  ["128-53", 1366133700000],
  ["89-139", 1366131300000],
  ["113-46", 1366140600000],
  ["21-39", 1366117200000, 1366128900000, 1366134000000],
  ["68-17", 1366099500000],
  ["11-9", 1366102500000],
  ["10-131", 1366133100000, 1366140600000],
  ["52-113", 1366110600000, 1366118700000],
  ["52-58", 1366118400000, 1366138200000],
  ["74-68", 1366139700000],
  ["80-22", 1366134900000],
  ["40-98", 1366137000000, 1366139100000],
  ["46-26", 1366138500000],
  ["53-113", 1366094100000, 1366098900000],
  ["68-33", 1366102500000],
  ["67-91", 1366134600000, 1366140300000],
  ["33-32", 1366111200000],
  ["74-133", 1366109100000, 1366110900000],
  ["139-71", 1366147500000],
  ["114-21", 1366099200000],
  ["17-62", 1366095000000],
  ["16-128", 1366101000000],
  ["39-21", 1366113900000, 1366119000000],
  ["26-48", 1366101600000, 1366104900000],
  ["12-11", 1366089900000],
  ["114-42", 1366098000000],
  ["26-21", 1366098600000],
  ["8-11", 1366100700000],
  [
    "26-22",
    1366098300000,
    1366100400000,
    1366101000000,
    1366101600000,
    1366118700000,
    1366131600000,
  ],
  ["64-6", 1366132500000, 1366133100000],
  ["26-32", 1366133700000],
  ["114-12", 1366098300000],
  ["139-95", 1366103700000],
  ["114-26", 1366098900000],
  ["76-112", 1366096800000],
  ["52-33", 1366108800000, 1366118100000, 1366137000000, 1366143000000],
  ["53-22", 1366098300000],
  ["68-53", 1366120800000],
  ["43-112", 1366113000000, 1366132200000],
  ["26-112", 1366096500000, 1366100700000, 1366103400000],
  ["53-54", 1366097400000],
  ["39-42", 1366108500000, 1366132800000],
  ["111-88", 1366101600000],
  ["111-49", 1366100700000],
  ["25-43", 1366101600000],
  ["49-52", 1366095000000],
  ["58-48", 1366097700000, 1366101900000],
  ["86-99", 1366098000000, 1366105200000],
  ["16-52", 1366118400000, 1366143300000],
  ["69-67", 1366105200000],
  ["111-21", 1366102500000],
  ["39-16", 1366090800000, 1366101600000, 1366134600000],
  ["58-16", 1366153200000],
  ["6-14", 1366101600000],
  ["95-81", 1366101900000],
  ["39-14", 1366110300000],
  ["113-16", 1366137300000],
  ["69-74", 1366102500000],
  ["22-128", 1366130100000],
  ["4-64", 1366137600000],
  ["8-22", 1366098300000],
  ["52-21", 1366109100000, 1366114200000],
  ["42-52", 1366109700000, 1366141200000],
  ["86-84", 1366105500000],
  ["16-12", 1366131000000],
  ["54-49", 1366123200000, 1366123500000],
  ["21-32", 1366093500000],
  ["63-64", 1366100400000, 1366109100000],
  ["74-113", 1366131600000],
  ["84-44", 1366105200000, 1366109700000],
  ["98-99", 1366099800000, 1366130700000],
  ["33-54", 1366108800000, 1366131000000],
  ["21-9", 1366099800000, 1366105500000],
  ["99-80", 1366123500000],
  ["95-128", 1366113900000, 1366131300000],
  ["57-52", 1366102200000],
  ["48-64", 1366102200000],
  ["131-88", 1366141800000],
  ["62-14", 1366108200000],
  ["76-128", 1366101600000, 1366125000000],
  ["43-54", 1366113000000, 1366132200000],
  ["68-76", 1366121700000],
  ["54-33", 1366114200000],
  ["73-68", 1366109700000, 1366118100000],
  ["9-113", 1366139100000],
  ["49-54", 1366121100000],
  ["54-58", 1366104900000],
  ["76-53", 1366098000000, 1366135200000],
  ["113-33", 1366136700000],
  ["33-53", 1366136100000],
  ["99-58", 1366114800000, 1366115700000],
  ["99-53", 1366144200000],
  ["80-11", 1366110900000],
  ["52-22", 1366100700000],
  ["44-98", 1366114200000],
  ["48-25", 1366138500000],
  ["67-113", 1366154700000],
  ["54-99", 1366106700000],
  ["18-128", 1366101900000],
  ["39-3", 1366132500000],
  [
    "54-52",
    1366102500000,
    1366116300000,
    1366118100000,
    1366131000000,
    1366136100000,
    1366138200000,
  ],
  ["99-39", 1366136400000],
  ["80-53", 1366136400000],
  ["27-131", 1366110900000, 1366120500000],
  ["68-25", 1366139100000],
  ["6-113", 1366113300000],
  ["25-26", 1366117200000, 1366136100000],
  ["69-11", 1366118100000],
  ["6-20", 1366123200000],
  ["20-48", 1366107900000],
  ["72-128", 1366108800000, 1366117500000],
  ["44-42", 1366122000000],
  ["6-80", 1366099200000],
  ["98-113", 1366107300000, 1366108800000],
  ["113-10", 1366095900000, 1366099200000, 1366110300000],
  ["54-4", 1366140000000],
  ["25-52", 1366127100000, 1366147800000],
  ["58-17", 1366125600000],
  ["99-48", 1366107300000, 1366137600000],
  ["99-32", 1366124100000, 1366135200000],
  ["12-19", 1366101300000],
  ["44-114", 1366130100000],
  ["72-75", 1366138500000],
  ["31-12", 1366128900000],
  ["48-26", 1366116900000, 1366125300000],
  ["74-88", 1366142700000],
  ["72-16", 1366127400000, 1366130100000],
  ["51-22", 1366100100000],
  ["26-81", 1366115400000, 1366144200000],
  ["75-74", 1366115100000, 1366136100000, 1366144500000],
  ["54-42", 1366121100000, 1366138500000, 1366146600000],
  ["81-39", 1366146000000],
  ["113-87", 1366139400000],
  ["86-33", 1366097400000],
  ["42-14", 1366122900000],
  ["75-68", 1366121700000, 1366136700000, 1366146000000],
  ["46-21", 1366127700000, 1366133700000, 1366142100000],
  ["112-42", 1366121100000, 1366135800000],
  ["67-111", 1366131600000],
  ["31-58", 1366111500000],
  ["99-75", 1366128900000],
  ["80-19", 1366134600000],
  ["25-4", 1366136400000],
  ["42-98", 1366111500000],
  ["112-26", 1366132800000, 1366134000000],
  ["48-128", 1366096800000],
  ["91-114", 1366134300000],
  ["59-46", 1366140600000],
  ["31-40", 1366134000000, 1366143600000],
  ["3-14", 1366118700000, 1366134900000],
  ["64-63", 1366122600000],
  ["88-114", 1366130700000],
  ["111-20", 1366101600000, 1366124100000],
  ["90-16", 1366149900000],
  ["52-27", 1366103700000],
  ["44-6", 1366140300000],
  ["99-31", 1366104000000, 1366122600000, 1366133700000],
  ["91-22", 1366134600000],
  ["21-69", 1366113300000],
  ["11-46", 1366135800000],
  ["11-21", 1366140300000],
  ["9-114", 1366133700000],
  ["4-113", 1366108500000],
  ["67-57", 1366133400000, 1366134900000, 1366146600000],
  ["26-111", 1366131000000],
  ["51-27", 1366136100000],
  ["94-114", 1366131000000, 1366146000000],
  ["67-75", 1366113300000, 1366121100000],
  ["128-141", 1366135200000],
  ["68-139", 1366136100000],
  ["62-17", 1366136700000],
  ["22-113", 1366095600000, 1366130700000],
  ["64-44", 1366131900000],
  ["70-19", 1366104900000],
  ["10-52", 1366139400000],
  ["90-95", 1366137900000],
  ["33-113", 1366125300000],
  ["84-75", 1366136700000],
  ["53-46", 1366137600000],
  ["4-42", 1366137000000],
  ["41-69", 1366112700000],
  ["91-53", 1366142700000, 1366154700000],
  ["26-4", 1366151100000],
  ["128-139", 1366129200000],
  ["4-63", 1366133400000],
  ["14-4", 1366141800000],
  ["74-75", 1366120800000, 1366133100000],
  ["75-21", 1366102800000],
  ["132-76", 1366115700000, 1366137000000],
  ["40-94", 1366134300000],
  ["46-11", 1366102800000],
  ["113-111", 1366133400000],
  ["20-40", 1366136100000, 1366138200000],
  ["112-39", 1366130400000],
  ["84-64", 1366115400000],
  ["46-53", 1366124700000],
  ["46-74", 1366137900000],
  ["98-42", 1366118700000],
  ["10-69", 1366112700000, 1366153200000],
  ["41-53", 1366133100000],
  ["75-96", 1366107600000],
  ["32-19", 1366130100000, 1366141800000],
  ["10-87", 1366145700000],
  ["139-88", 1366122900000, 1366135500000],

// ...truncated 884 lines
<!doctype html>
<html>
  <head>
    <link rel="stylesheet" href="@ci/theme/mw/css/examples.css" />
  </head>
  <body>
    <div id="mw"></div>
    <script type="module" src="./code.jsx"></script>
  </body>
</html>

Terms of use

These terms do not alter or supersede any existing agreements between you (or your employer) and us.

By accessing or using any Content you agree to be bound by these Terms of Use. Please review these terms carefully before using the website.

The contents of this website, including but not limited to any text, code samples, API references, schemas, interactive tools, and other materials (collectively, the 'Content'), are made available for informational and internal evaluation purposes only. All intellectual property rights in the Content are reserved. No licence is granted to use the Content for any commercial purpose, or to copy, distribute, modify, reverse-engineer, or incorporate any part of the Content into any product or service, without our prior written consent.

This Content is provided “as is” and “as available,” without any representations, warranties, or guarantees of any kind, whether express or implied, including but not limited to implied warranties of merchantability, fitness for a particular purpose, non-infringement, or accuracy. To the fullest extent permitted by applicable law, we expressly exclude and disclaim all implied warranties, conditions, and other terms that might otherwise be implied.

We disclaim all liability for any loss or damage, whether direct, indirect, incidental, consequential, or otherwise, arising from any reliance placed on the Content or from your use of it, to the fullest extent permitted by applicable law. By continuing to access or use the Content, you acknowledge and agree to these terms.